@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Roboto Condensed", sans-serif, Helvetica, Arial !important;
  overflow-x: hidden;
}

hr {
  height: 2px;
  border: none;
  background: #FFC668;
  margin: 3px 0;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ffffff;
  outline: none;
}

textarea {
  resize: none;
}

.colorLight {
  color: #ccc;
}

.colorRed {
  color: #ff0000;
}

.size18 {
  font-size: 18px;
}

.size24 {
  font-size: 24px;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.wauto {
  width: auto;
}

.minheight100 {
  min-height: 100vh;
}

.flex-col {
  flex-direction: column;
}

.container-wrap {
  display: flex;
  flex-wrap: wrap;
}

.container-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.space-around {
  justify-content: space-around;
}

.space-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

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

.justify-center {
  justify-content: center;
}

.center {
  width: 90%;
  max-width: 1254px;
  margin: auto;
}

.al-ct {
  text-align: center;
}

.al-lf {
  text-align: left;
}

.al-rg {
  text-align: right;
}

.mg-auto {
  margin: 0 auto;
}

.mg-bt10 {
  margin-bottom: 10px;
}

.mg-bt20 {
  margin-bottom: 20px;
}

.mg-bt80 {
  margin-bottom: 80px;
}

.my-lg {
  margin: 16px 0;
}

.bold {
  font-weight: 700;
}

.hidden {
  display: none;
}

.mostrar {
  display: flex;
}

.overHidden {
  overflow-y: hidden;
}

.btn {
  padding: 16px 32px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  border-radius: 4px;
  color: #424242;
  transition: all 0.5s ease;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
}
.btn:hover {
  background: #F0EEEE;
}
.btn:focus {
  background: #DEDCDC;
}
.btn img {
  width: 24px;
  margin-left: 36px;
}

.btn2 {
  padding: 8px 14px;
  background-color: #ffffff;
  border-radius: 4px;
  color: #424242;
  transition: all 0.5s ease;
  cursor: pointer;
  font-size: 16px;
  margin: 4px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
.btn2:hover {
  background: #F0EEEE;
}
.btn2:focus {
  background: #DEDCDC;
}
.btn2 img {
  width: 24px;
  margin-right: 8px;
}

.btn-verde {
  color: #424242;
  background-color: #01E88A;
  border: 1px solid #01E88A;
}
.btn-verde:hover {
  color: #01E88A;
}

.btn-verde2 {
  color: #424242;
  background-color: #ffffff;
  border: 1px solid #01E88A;
}

.btn-naranja {
  color: #ffffff;
  background-color: #FFC668;
  border: 1px solid #FFC668;
  margin: 0 8px;
}
.btn-naranja:hover {
  color: #FFC668;
  background-color: #ffffff;
}

.ir-arriba {
  position: fixed;
  bottom: 5px;
  right: 5px;
  background-color: #FFC668;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
}
.ir-arriba:hover {
  box-shadow: 0px 0px 3px #181818;
}
.ir-arriba:hover .fa-chevron-up {
  font-weight: bold;
}

.rotar10 {
  transform: rotate(10deg);
  transition: all 1s ease;
}

.rotar180 {
  transform: rotate(180deg);
  transition: all 1s ease;
}

.rotar360 {
  transform: rotate(360deg);
  transition: all 1s ease;
}

.btnWhatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 20;
  color: #ffffff;
}
.btnWhatsapp img {
  width: 34px;
}
.btnWhatsapp .ico-whatsapp {
  background-color: #0dc143;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 1s ease;
}
.btnWhatsapp .popup-what {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 320px;
  margin-bottom: 15px;
  border-radius: 5px 15px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
.btnWhatsapp .popup-what .box1 {
  background: #0dc143;
  margin: 0 auto;
  padding: 20px 30px;
}
.btnWhatsapp .popup-what .box1 img {
  width: 24px;
}
.btnWhatsapp .popup-what .box1 .box-text {
  padding-left: 10px;
}
.btnWhatsapp .popup-what .box1 .box-text span {
  font-size: 18px;
  line-height: 26px;
  display: block;
}
.btnWhatsapp .popup-what .box1 .box-text p {
  font-size: 12px;
  line-height: 20px;
}
.btnWhatsapp .popup-what .box2 {
  background: #ffffff;
  color: #0dc143;
  padding: 20px 30px;
}
.btnWhatsapp .popup-what .box2 a {
  border-left: 3px solid #0dc143;
  display: block;
  padding-left: 5px;
}
.btnWhatsapp .popup-what .box2 a .gris {
  color: #424242;
  font-size: 12px;
}
.btnWhatsapp .popup-what .box2 a .fa-whatsapp {
  font-size: 28px;
  color: #0dc143;
}

.modal {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .body-modal {
  width: 586px;
  background-color: #ffffff;
  color: #0F0F0F;
  z-index: 200;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  position: relative;
  padding: 40px;
}
.modal .body-modal .btn-closed {
  position: absolute;
  right: 20px;
  top: 20px;
}
.modal .body-modal .box-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #01E88A;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.modal .body-modal .box-image img {
  width: 24px;
}
.modal .body-modal .box-content {
  margin-bottom: 16px;
}
.modal .body-modal .box-content h3 {
  margin-bottom: 16px;
  line-height: 19px;
}
.modal .body-modal hr {
  background-color: #FFC668;
  height: 2px;
}
.modal .body-modal .box-icons {
  margin-top: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
}
.modal .body-modal .box-icons .items-icon {
  display: flex;
  align-items: center;
  height: 32px;
  width: 48%;
  margin-bottom: 8px;
}
.modal .body-modal .box-icons .items-icon img {
  width: 20px;
  margin-right: 10px;
}
.modal .body-modal .box-footer {
  display: flex;
  flex-wrap: wrap;
}
.modal .body-modal .box-footer .btn {
  display: block;
}
.modal .body-modal .box-footer .btn {
  width: calc(50% - 20px);
  margin: 10px;
  text-align: center;
}
.modal .body-modal .box-footer .btn:last-child {
  width: 100%;
}
@media (max-width: 550px) {
  .modal .container-modal {
    padding: 30px 40px;
    width: 96%;
  }
  .modal .container-modal .box-icons .items-icon {
    width: 100%;
  }
}

.alert {
  width: 100%;
  height: auto;
}

.alert-success {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 10px 20px;
  border-radius: 4px;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}
.alert-success img {
  width: 16px;
}

.alert-danger {
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 10px 20px;
  border-radius: 4px;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}
.alert-danger img {
  width: 16px;
}

.navbarSlider {
  position: relative;
}
.navbarSlider .header {
  color: #ffffff;
  position: absolute;
  width: 100%;
  z-index: 100;
}
.navbarSlider .header .navbar {
  transition: all 0.5s ease;
  width: 90%;
  max-width: 1412px;
}
.navbarSlider .header .navbar .box-navbar {
  width: 100%;
  border: 1px solid #ffffff;
  border-top: none;
  display: flex;
  justify-content: center;
}
.navbarSlider .header .navbar .box-navbar .box-logo {
  transition: all 0.5s ease;
  width: 82px;
  padding: 16px;
  display: flex;
  align-items: flex-end;
}
.navbarSlider .header .navbar .box-navbar .box-logo .img-logo {
  width: 49.5px;
}
.navbarSlider .header .navbar .box-navbar .box-content {
  display: flex;
  flex-direction: column;
  width: calc(100% - 82px);
  max-width: 1332px;
  border-left: 1px solid #ffffff;
}
.navbarSlider .header .navbar .box-navbar .box-content .box-content-top .box-empty {
  border: 1px solid #ffffff;
  border-top: none;
  border-left: none;
  width: calc(100% - 110px);
  height: 46px;
}
.navbarSlider .header .navbar .box-navbar .box-content .box-content-top .box-redes {
  width: 110px;
  border-bottom: 1px solid #ffffff;
  padding: 15px;
  justify-content: space-around;
}
.navbarSlider .header .navbar .box-navbar .box-content .box-content-top .box-redes .icon-redes {
  width: 14px;
  margin-right: 12px;
}
.navbarSlider .header .navbar .box-navbar .box-content .navbar-list {
  padding: 16px 32px;
}
.navbarSlider .header .navbar .box-navbar .box-content .navbar-list .nav-link {
  padding: 10px;
  transition: all 1s ease;
  font-size: 12px;
  position: relative;
  color: #ffffff;
  letter-spacing: 4px;
  margin-right: 32px;
}
.navbarSlider .header .navbar .box-navbar .box-content .navbar-list .nav-link:after {
  content: " ";
  position: absolute;
  width: 0%;
  left: 50%;
  bottom: 0;
  height: 3px;
  background-color: #ffffff;
  transition: all 1s ease;
}
.navbarSlider .header .navbar .box-navbar .box-content .navbar-list .nav-link:hover:after {
  width: 100%;
  left: 0%;
}
.navbarSlider .header .navbar-small {
  display: none;
  transition: all 0.5s ease;
  align-items: center;
  background-color: #181818;
  color: #ffffff;
  padding: 12px 28px;
}
.navbarSlider .header .navbar-small .box-logo {
  width: 50px;
  margin-bottom: 12px;
}
.navbarSlider .header .navbar-small .box-logo .img-logo {
  width: 100%;
}
.navbarSlider .header .navbar-small .navbar-list {
  padding: 12px 0;
  gap: 10px;
  border-bottom: 1px solid #ffffff;
}
.navbarSlider .header .navbar-small .navbar-list .nav-link {
  padding: 10px;
  position: relative;
}
.navbarSlider .header .navbar-small .navbar-list .nav-link:after {
  content: " ";
  position: absolute;
  width: 0%;
  left: 50%;
  bottom: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 1s ease;
}
.navbarSlider .header .navbar-small .navbar-list .nav-link:hover:after {
  width: 100%;
  left: 0%;
}
@media (max-width: 769px) {
  .navbarSlider .header .navbar .navbar-list .nav-link {
    margin-right: 10px;
  }
}
@media (max-width: 650px) {
  .navbarSlider .header .navbar {
    display: none;
    transition: all 0.5s ease;
  }
  .navbarSlider .header .navbar-small {
    display: flex;
    transition: all 0.5s ease;
  }
}
.navbarSlider .slider {
  width: 100%;
  height: 100vh;
  outline: none;
  top: 0;
  overflow: hidden;
  position: relative;
  font-family: "Roboto Condensed";
  display: flex;
  flex-direction: column;
  background: url("../images/background-header.webp");
  justify-content: center;
  align-items: center;
}
.navbarSlider .slider .box-texto {
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbarSlider .slider .box-texto .text-banner-header {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 46px;
}
.navbarSlider .slider .box-texto .box-text-header {
  border-bottom: 1px solid #ffffff;
  margin-bottom: 16px;
}
.navbarSlider .slider .box-texto .text {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 18px;
}
.navbarSlider .slider .box-texto .btn {
  margin-top: 32px;
  display: inline-flex;
  width: 187px;
}
.navbarSlider .slider .box-texto .btn img {
  display: inline-flex !important;
}
@media (max-width: 650px) {
  .navbarSlider .slider {
    background: url("../images/background-header-sm.webp");
    background-size: cover;
    transition: all 0.5s ease;
  }
  .navbarSlider .slider .box-texto {
    margin-top: 20%;
    transition: all 0.5s ease;
  }
  .navbarSlider .slider .box-texto .text-banner-header {
    font-size: 22px;
    transition: all 0.5s ease;
  }
}

.nosotros_area {
  position: relative;
  background-color: #0F0F0F;
  color: #ffffff;
  padding-bottom: 40px;
}
.nosotros_area .box-left {
  position: absolute;
  top: -174px;
  left: 0;
}
.nosotros_area .box-right {
  position: absolute;
  right: 0;
  top: -150px;
}
.nosotros_area .box-center {
  position: absolute;
  top: -75px;
  left: 50%;
  transition: all 0.5s ease;
  display: flex;
  gap: 40px;
  transform: translateX(-50%);
}
.nosotros_area .box-center .card-nosotros {
  width: 281px;
  height: 153px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #1E1E1E;
  border-radius: 22px;
  padding: 16px;
}
.nosotros_area .box-center .card-nosotros .img-card {
  margin-bottom: 18px;
}
.nosotros_area .box-center .card-nosotros .text {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
}
.nosotros_area .box-container-nosotros {
  padding-top: 140px;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  transition: all 0.5s ease;
}
.nosotros_area .box-container-nosotros .box-text-nosotros {
  width: 100%;
  margin-right: 62px;
}
.nosotros_area .box-container-nosotros .box-text-nosotros .box-title {
  margin-bottom: 40px;
}
.nosotros_area .box-container-nosotros .box-text-nosotros .box-title .title {
  color: #FFC668;
  font-size: 28px;
  margin-top: 26px;
}
.nosotros_area .box-container-nosotros .box-text-nosotros .box-text {
  font-weight: 400;
}
.nosotros_area .box-container-nosotros .box-text-nosotros .box-text p {
  line-height: 16px;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: justify;
}
.nosotros_area .box-container-nosotros .box-text-nosotros .box-number {
  gap: 24px;
}
.nosotros_area .box-container-nosotros .box-text-nosotros .box-number p {
  display: flex;
  flex-direction: column;
}
.nosotros_area .box-container-nosotros .box-text-nosotros .box-number p span {
  font-size: 40px;
}
.nosotros_area .box-container-nosotros .box-images-nosotros {
  position: relative;
  width: calc(100% - 578px);
  transition: all 0.5s ease;
}
.nosotros_area .box-container-nosotros .box-images-nosotros .box-images {
  display: flex;
  justify-content: flex-end;
  transition: all 0.5s ease;
}
.nosotros_area .box-container-nosotros .box-images-nosotros .box-images .img-back {
  width: 508px;
}
.nosotros_area .box-container-nosotros .box-images-nosotros .box-images .img-float {
  position: absolute;
  left: -34px;
  top: 33px;
  width: 471px;
  height: 677px;
  transition: all 0.5s ease;
}
@media (max-width: 1450px) {
  .nosotros_area .box-center .card-nosotros {
    width: 200px;
  }
}
@media (min-width: 1201px) {
  .nosotros_area .box-container-nosotros .box-text-nosotros {
    max-width: 516px;
    width: auto;
    transition: all 0.5s ease;
  }
}
@media (max-width: 1200px) {
  .nosotros_area .box-center {
    transition: all 0.5s ease;
  }
  .nosotros_area .box-center .card-nosotros {
    width: 182px;
    padding: 12px 24px;
  }
  .nosotros_area .box-center .card-nosotros .text {
    font-size: 16px;
    line-height: 17px;
  }
  .nosotros_area .box-container-nosotros .box-text-nosotros {
    margin-right: 0;
  }
  .nosotros_area .box-container-nosotros .box-images-nosotros, .nosotros_area .box-container-nosotros .box-text-nosotros {
    width: 100%;
    padding-top: 30px;
  }
  .nosotros_area .box-container-nosotros .box-images-nosotros {
    width: 70%;
    margin: auto;
  }
}
@media (max-width: 900px) {
  .nosotros_area .box-center {
    gap: 10px;
    transition: all 0.5s ease;
  }
  .nosotros_area .box-container-nosotros .box-images-nosotros {
    width: 100%;
    transition: all 0.5s ease;
  }
}
@media (max-width: 830px) {
  .nosotros_area {
    padding: 24px;
  }
  .nosotros_area .box-center {
    position: relative;
    gap: 10px;
    top: 0;
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    transition: all 0.5s ease;
  }
  .nosotros_area .box-container-nosotros {
    padding-top: 24px;
  }
}
@media (max-width: 700px) {
  .nosotros_area .box-center {
    width: 80%;
  }
  .nosotros_area .box-container-nosotros .box-images-nosotros .box-images .img-back {
    width: 100%;
  }
  .nosotros_area .box-container-nosotros .box-images-nosotros .box-images .img-float {
    width: 80%;
    height: auto;
    left: 10%;
  }
}
@media (max-width: 550px) {
  .nosotros_area .box-left, .nosotros_area .box-right {
    display: none;
  }
  .nosotros_area .box-center {
    width: 100%;
  }
  .nosotros_area .box-center .card-nosotros {
    width: 160px;
    padding: 12px 24px;
  }
  .nosotros_area .box-center .card-nosotros .text {
    font-size: 14px;
    line-height: 17px;
  }
}
.nosotros_area .box-container-expertos .box-title {
  margin-bottom: 40px;
  width: 240px;
}
.nosotros_area .box-container-expertos .box-title .title {
  color: #FFC668;
  font-size: 28px;
  margin-bottom: 24px;
}
.nosotros_area .box-container-expertos .box-text-expertos {
  gap: 229px;
}
.nosotros_area .box-container-expertos .box-text-expertos .item-expertos {
  width: 260px;
  height: 430px;
  display: flex;
  transition: all 0.5s ease;
  flex-direction: column;
  justify-content: space-around;
  gap: 24px;
}
.nosotros_area .box-container-expertos .box-text-expertos .item-expertos .text {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  margin-bottom: 24px;
}
.nosotros_area .box-container-expertos .box-text-expertos .item-expertos .box-image {
  display: flex;
  justify-content: center;
}
.nosotros_area .box-container-expertos .box-text-expertos .item-expertos .box-image img {
  width: 206px;
}
.nosotros_area .box-container-expertos .box-text-expertos .item-expertos .text-footer {
  text-align: center;
}
@media (max-width: 1400px) {
  .nosotros_area .box-container-expertos .box-text-expertos {
    gap: 40px;
    justify-content: space-around;
  }
  .nosotros_area .box-container-expertos .box-text-expertos .item-expertos {
    width: 30%;
  }
}
@media (max-width: 1100px) {
  .nosotros_area .box-container-expertos .box-text-expertos .item-expertos {
    width: 40%;
  }
}
@media (max-width: 630px) {
  .nosotros_area .box-container-expertos .box-text-expertos {
    gap: 24px;
  }
  .nosotros_area .box-container-expertos .box-text-expertos .item-expertos {
    width: 100%;
    height: auto;
  }
}

.carta_area {
  background-color: #181818;
  color: #ffffff;
  padding: 80px;
}
.carta_area .box-title {
  margin-bottom: 40px;
  width: 240px;
}
.carta_area .box-title .title {
  color: #FFC668;
  font-size: 28px;
  margin-top: 26px;
}
.carta_area .text {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 40px;
}
.carta_area .box-container-carta .item-carta {
  transition: all 0.5s ease;
}
.carta_area .box-container-carta .item-carta .box-title {
  width: 100%;
}
.carta_area .box-container-carta .item-carta .text {
  margin-bottom: 24px;
}
.carta_area .box-container-carta .colum-left {
  display: flex;
  transition: all 0.5s ease;
}
.carta_area .box-container-carta .colum-right {
  padding: 45px 100px;
  padding-right: 0px;
  transition: all 0.5s ease;
}
@media (max-width: 1400px) {
  .carta_area .box-container-carta .colum-right {
    padding: 0 0 0 100px;
  }
}
@media (max-width: 1200px) {
  .carta_area .box-container-carta .colum-right {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 800px) {
  .carta_area {
    padding: 80px 0;
  }
  .carta_area .box-container-carta .item-carta {
    width: 100%;
  }
  .carta_area .box-container-carta .colum-right {
    padding-top: 40px;
  }
}
@media (max-width: 550px) {
  .carta_area .box-container-carta .item-carta {
    width: 100%;
    transition: all 0.5s ease;
  }
  .carta_area .box-container-carta .colum-left img {
    width: 100%;
    transition: all 0.5s ease;
  }
  .carta_area .box-container-carta .colum-left img:first-child {
    display: none;
    transition: all 0.5s ease;
  }
  .carta_area .box-container-carta .colum-right {
    padding: 24px 0 0 0;
    display: flex;
    justify-content: center;
    transition: all 0.5s ease;
  }
  .carta_area .box-container-carta .colum-right .box-title, .carta_area .box-container-carta .colum-right .text {
    display: none;
  }
}

.carta_area_banner .box-carta {
  width: 25%;
  background: rgba(0, 0, 0, 0.95);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.carta_area_banner .box-carta .box-img-social {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.carta_area_banner .box-carta .box-img-social img {
  opacity: 1;
  transition: opacity 0.35s;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.carta_area_banner .box-carta .box-img-social .box-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carta_area_banner .box-carta .box-img-social .box-hover h2, .carta_area_banner .box-carta .box-img-social .box-hover img {
  margin: 0 0 5px;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
.carta_area_banner .box-carta .box-img-social .box-hover h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 32px;
  line-height: 37.5px;
  transform: translate3d(0%, 50%, 0);
  transition-delay: 0.3s;
}
.carta_area_banner .box-carta .box-img-social .box-hover a {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.carta_area_banner .box-carta .box-img-social .box-hover a img {
  width: 24px;
}
.carta_area_banner .box-carta .box-img-social .box-hover:before {
  position: absolute;
  top: 50%;
  right: 30px;
  bottom: 50%;
  left: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  opacity: 0;
  transition: all 0.4s;
  transition-delay: 0.6s;
}
.carta_area_banner .box-carta .box-img-social:hover img {
  opacity: 0.15;
  transition: all 0.3s linear;
  transform: scale(1.15);
}
.carta_area_banner .box-carta .box-img-social:hover .box-hover h2, .carta_area_banner .box-carta img {
  opacity: 1;
  transform: translate3d(0%, 0%, 0);
  transition-delay: 0.3s;
}
.carta_area_banner .box-carta .box-img-social:hover .box-hover a img {
  opacity: 0.9;
  transition-delay: 0.6s;
}
@media (max-width: 800px) {
  .carta_area_banner .box-carta {
    width: 50%;
  }
}

.reservas_area {
  background-color: #0F0F0F;
  color: #ffffff;
  padding: 80px 0;
}
.reservas_area .box-title {
  margin-bottom: 40px;
}
.reservas_area .box-title .title {
  color: #FFC668;
  font-size: 28px;
  margin-top: 26px;
}
.reservas_area .box-title .title-2, .reservas_area .box-title .text {
  display: none;
}
.reservas_area .box-container-reservas .img-reserva {
  width: 600px;
  transition: all 0.5s ease;
}
.reservas_area .box-container-reservas .box-text .box-container-text {
  padding-left: 100px;
  width: 516px;
  transition: all 0.5s ease;
}
.reservas_area .box-container-reservas .box-text .box-container-text .text {
  margin-bottom: 40px;
}
@media (max-width: 1290px) {
  .reservas_area .box-container-reservas .img-reserva, .reservas_area .box-container-reservas .box-text {
    width: 50%;
  }
  .reservas_area .box-container-reservas .box-text .box-container-text {
    padding-left: 20px;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .reservas_area .box-container-reservas .img-reserva, .reservas_area .box-container-reservas .box-text {
    width: 100%;
  }
  .reservas_area .box-container-reservas .box-text .box-container-text {
    padding-left: 0px;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .reservas_area .box-title .title {
    display: none;
  }
  .reservas_area .box-title .title-2 {
    display: block;
    color: #FFC668;
    margin-bottom: 24px;
  }
  .reservas_area .box-title .text {
    display: block;
  }
  .reservas_area .box-title .w10 {
    width: 30%;
  }
  .reservas_area .box-container-reservas .box-text .text {
    display: none;
  }
  .reservas_area .box-container-reservas .box-text .box-container-text {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
}

.reservas_banner {
  color: #ffffff;
  padding: 80px 0;
  background: url("../images/bookings-banner.webp");
}
.reservas_banner .box-container-text {
  width: 635px;
}
.reservas_banner .box-container-text .text {
  font-size: 56px;
  line-height: 65px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .reservas_banner {
    display: none;
  }
}

.reserva_section {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  padding-top: 165px;
  padding-bottom: 50px;
  background: url("../images/background-header.webp");
}
.reserva_section .box-reserva-form {
  background-color: #181818;
  color: #ffffff;
  padding: 60px;
}
.reserva_section .box-reserva-form .title {
  font-size: 40px;
  line-height: 47px;
  margin-bottom: 25px;
}
.reserva_section .box-reserva-form .form-reserva {
  display: flex;
  gap: 25px;
}
.reserva_section .box-reserva-form .form-reserva .colum-left {
  width: 570px;
  padding: 60px;
  background-color: #222222;
  transition: all 0.5s ease;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container {
  width: 450px;
  transition: all 0.2s linear;
  margin: auto;
  text-align: center;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  padding: 0 10px;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .calendar-header .title-month {
  letter-spacing: 4px;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .calendar {
  width: 100%;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .calendar th {
  color: white;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .calendar td {
  cursor: pointer;
  font-weight: 700;
  position: relative;
  font-size: 18px;
  transition: all 0.5s ease;
  height: 40px;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .calendar td:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #0F0F0F;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .bg-info {
  color: #FFC668;
  font-weight: 900 !important;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .seleccionada {
  background-color: #f0f0f0;
  color: #0F0F0F;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .blocked {
  color: #686868;
  cursor: not-allowed;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .blocked::before {
  content: "¡Hoy estamos llenos!, comunícate con nosotros por WhatsApp para añadirte a la lista de espera.";
  position: absolute;
  top: 0px;
  background-color: transparent;
  padding: 8px 8px 16px 12px;
  display: none;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  min-width: 248px;
  width: auto;
  text-align: left;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .blocked::after {
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(138deg);
  background: transparent;
  position: absolute;
  top: -5px;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .blocked:hover::before {
  display: block;
  top: -90px;
  transition: all 0.5s ease;
  background-color: #01E88A;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .blocked:hover::after {
  display: block;
  top: -10px;
  transition: all 0.5s ease;
  left: 10px;
  background-color: #01E88A;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .closed {
  color: #686868;
  cursor: not-allowed;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .closed::before {
  content: "¡Hoy no atendemos!";
  transition: all 0.5s ease;
  display: none;
  position: absolute;
  top: 0px;
  background-color: #01E88A;
  padding: 8px 8px 16px 12px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  width: 120px;
  z-index: 2;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .closed::after {
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(138deg);
  background: transparent;
  position: absolute;
  top: -5px;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .closed:hover::before {
  display: block;
  top: -50px;
  transition: all 0.5s ease;
}
.reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container .closed:hover::after {
  display: block;
  top: -10px;
  transition: all 0.5s ease;
  left: 10px;
  background-color: #01E88A;
}
.reserva_section .box-reserva-form .form-reserva .colum-right {
  gap: 24px;
  padding-left: 51px;
  transition: all 0.5s ease;
  transition-delay: 0.1s;
}
.reserva_section .box-reserva-form .form-reserva .colum-right .box-field {
  width: 47%;
  transition: all 0.5s ease;
}
.reserva_section .box-reserva-form .form-reserva .colum-right .box-desc {
  width: 100%;
}
.reserva_section .box-reserva-form .form-reserva .colum-right .box-desc label {
  display: block;
  padding: 10px 0;
}
@media (max-width: 1320px) {
  .reserva_section .box-reserva-form .form-reserva .colum-left {
    padding: 20px;
  }
  .reserva_section .box-reserva-form .form-reserva .colum-right {
    padding-left: 20px;
  }
}
@media (max-width: 1190px) {
  .reserva_section .box-reserva-form .form-reserva .colum-right .box-field {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .reserva_section .box-reserva-form .form-reserva .colum-left {
    width: 50%;
  }
  .reserva_section .box-reserva-form .form-reserva .colum-left .calendar-container {
    width: 100%;
    min-width: 300px;
  }
}
@media (max-width: 900px) {
  .reserva_section {
    background: url("../images/background-header-sm.webp");
    background-size: cover;
  }
  .reserva_section .box-reserva-form .form-reserva {
    flex-wrap: wrap;
  }
  .reserva_section .box-reserva-form .form-reserva .colum-left, .reserva_section .box-reserva-form .form-reserva .colum-right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .reserva_section .box-reserva-form {
    padding: 10px;
    transition: all 0.5s ease;
  }
  .reserva_section .box-reserva-form .form-reserva {
    flex-wrap: wrap;
  }
  .reserva_section .box-reserva-form .form-reserva .colum-left, .reserva_section .box-reserva-form .form-reserva .colum-right {
    width: 100%;
  }
  .reserva_section .box-reserva-form .form-reserva .colum-right {
    padding-left: 0;
  }
}

.vale_section {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  padding-top: 165px;
  padding-bottom: 50px;
  background: url("../images/background-header.webp");
}
.vale_section .box-vale {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.5s ease;
  background-color: rgba(255, 255, 255, 0.6);
  color: #181818;
  padding: 60px;
  border-radius: 8px;
}
.vale_section .box-vale .title {
  color: #FFC668;
  font-size: 28px;
}
.vale_section .box-vale .item1 {
  width: 400px;
}
.vale_section .box-vale .img-qr-code {
  width: 260px;
}
.vale_section .box-vale .item {
  margin-bottom: 24px;
}
.vale_section .box-vale .item .text {
  line-height: 16px;
  margin-bottom: 8px;
}
.vale_section .box-vale .item .list {
  list-style: disc;
  margin-left: 20px;
}
.vale_section .box-vale .item .list .list-item {
  line-height: 16px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .vale_section .box-vale {
    flex-wrap: wrap;
    gap: 20px;
  }
  .vale_section .box-vale .item1 {
    width: 300px;
    transition: all 0.5s ease;
  }
}
@media (max-width: 700px) {
  .vale_section .box-vale {
    flex-wrap: wrap;
    gap: 20px;
  }
  .vale_section .box-vale .img-qr-code, .vale_section .box-vale .item1 {
    width: 100%;
    transition: all 0.5s ease;
  }
}
@media (max-width: 500px) {
  .vale_section .box-vale {
    padding: 30px 20px;
    transition: all 0.5s ease;
  }
}

.footer_area {
  background-color: #181818;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 100px 150px;
}
.footer_area .container-footer {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  transition: all 0.5s ease;
}
.footer_area .container-footer .item-footer {
  transition: all 0.5s ease;
}
.footer_area .container-footer .item-footer h2 {
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 28px;
}
.footer_area .container-footer .item-footer .list-footer li {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 18px;
}
.footer_area .container-footer .item-footer .list-footer li a {
  display: flex;
}
.footer_area .container-footer .item-footer .list-footer li img {
  width: 20px;
  margin-right: 8px;
  color: #ffffff;
}
.footer_area .container-footer .footer-form {
  display: flex;
  margin-bottom: 26px;
  width: calc(100% - 229px);
}
.footer_area .container-footer .footer-form input {
  padding: 12px;
  border-radius: 4px 0 0 4px;
  font-size: 12px;
  line-height: 14px;
  width: 100%;
}
.footer_area .container-footer .footer-form .btn {
  padding: 10px 35px;
  border-radius: 0 4px 4px 0;
}
.footer_area .container-footer .box-redes {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.footer_area .container-footer .box-redes .item-redes {
  display: block;
  background-color: #ffffff;
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.footer_area .container-footer .box-redes .item-redes img {
  width: 24px;
}
@media (max-width: 1550px) {
  .footer_area .container-footer {
    gap: 40px;
    transition: all 0.5s ease;
  }
}
@media (max-width: 1200px) {
  .footer_area .container-footer {
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.5s ease;
  }
  .footer_area .container-footer .item-footer {
    width: 48%;
    transition: all 0.5s ease;
  }
}
@media (max-width: 820px) {
  .footer_area {
    padding: 100px 50px;
    transition: all 0.5s ease;
  }
}
@media (max-width: 620px) {
  .footer_area .container-footer .item-footer {
    width: 100%;
    transition: all 0.5s ease;
    order: 2;
  }
  .footer_area .container-footer .footer-form {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .footer_area .container-footer:last-child {
    order: 1;
    margin-bottom: 36px;
  }
  .footer_area .container-footer:first-child {
    order: 2;
    margin-bottom: 0;
  }
}
.login {
  background-color: #0F0F0F;
  color: #ffffff;
}
.login .img-logo {
  width: 160px;
  margin-bottom: 30px;
}
.login .img-loading {
  width: 40px;
}
.login .box-login {
  flex-direction: column;
}
.login .box-formulario-login .form {
  transition: 0.5s all linear;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
}
.login .box-formulario-login .form .form.invalido .inputEmail .input {
  border: 1px solid #ff0000;
}
.login .box-formulario-login .form .form.valido .inputEmail .input {
  border: 1px solid #45590F;
}
.login .box-formulario-login .form .inputEmail {
  margin-bottom: 24px;
}
.login .box-formulario-login .form .inputEmail .erroremail {
  font-style: italic;
  width: 100%;
  display: block;
  text-align: center;
}
.login .box-formulario-login .form .inputEmail #span1 {
  color: #45590F;
}
.login .box-formulario-login .form .inputEmail #span2 {
  color: #ff0000;
}
.login .box-formulario-login .form .inputBox {
  position: relative;
  color: lightgrey;
  height: 50px;
  margin-bottom: 24px;
}
.login .box-formulario-login .form .inputBox img {
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  display: flex;
  font-size: 24px;
  align-items: center;
  color: #0F0F0F;
}
.login .box-formulario-login .form .inputBox .active {
  display: flex;
}
.login .box-formulario-login .form .inputBox .none {
  display: none;
}
@media (max-width: 900px) {
  .login .w30 {
    width: 50%;
    transition: all 0.5s ease;
  }
}
@media (max-width: 600px) {
  .login .w30 {
    width: 90%;
    transition: all 0.5s ease;
  }
}

.portal-main {
  height: 100vh;
}
.portal-main .box-header {
  background-color: #0F0F0F;
  color: #ffffff;
  padding: 20px 50px;
}
.portal-main .box-header .name-user {
  font-weight: 400;
  font-size: 18px;
  color: #FFC668;
}
.portal-main .box-header .img-logo {
  width: 60px;
  margin-right: 20px;
}
.portal-main .main_back {
  height: 100%;
}
.portal-main .main_back .aside {
  display: flex;
  flex-direction: column;
  background-color: #181818;
  color: #ffffff;
}
.portal-main .main_back .aside .btn-aside {
  padding: 20px 10px;
  border-top: 1px solid #F0EEEE;
}
.portal-main .main_back .aside .btn-aside:hover {
  background-color: #F0EEEE;
  color: #181818;
  transition: all 0.5s ease;
  padding-left: 20px;
}
.portal-main .main_back .aside .active {
  background-color: #ffffff;
  color: #181818;
  border-left: 8px solid #FFC668;
  transition: all 0.5s ease;
  padding-left: 20px;
  position: relative;
}
.portal-main .main_back .container-portal {
  padding: 40px 0;
}
.portal-main .main_back .container-portal .box-title {
  margin-bottom: 30px;
  font-size: 30px;
  color: #FFC668;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin {
  width: 100%;
  background-color: #F0EEEE;
  padding: 25px 30px 30px;
  border-radius: 10px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin .tabs-nav {
  width: 100%;
  margin: auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  border-radius: 4px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin .tabs-nav label {
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #181818;
  background-color: #ffffff;
  border: 1px solid #181818;
  transition: all 0.2s linear;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin input[type=radio] {
  display: none;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin #sanisidro:checked ~ .tabs-nav label.sanisidro,
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin #miraflores:checked ~ .tabs-nav label.miraflores,
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin #sanborja:checked ~ .tabs-nav label.sanborja {
  color: #ffffff;
  transition: all 0.2s linear;
  background-color: #181818;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content {
  display: none;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin #sanisidro:checked ~ section .content-1,
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin #miraflores:checked ~ section .content-2,
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin #sanborja:checked ~ section .content-3 {
  display: block;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container {
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  padding: 20px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container input[type=radio] {
  display: block;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container input[type=searchs] {
  width: 100%;
  padding: 10px 12px;
  margin-right: 10px;
  height: 52px;
  border-radius: 4px;
  border: 1px solid #F0EEEE;
  outline: none;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items {
  display: grid;
  grid-template-columns: 30% 15% 30% 12% 13%;
  background-color: #F0EEEE;
  padding: 10px 16px;
  border-radius: 8px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items .item {
  padding: 0 6px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items .item p {
  line-height: 24px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items .item .comentario {
  text-align: justify;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items.success {
  background-color: #d4edda;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items.cancel {
  color: #dfd4d4;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-week {
  background-color: #F0EEEE;
  border-radius: 8px;
  padding: 50px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-week .title {
  margin-bottom: 14px;
  font-size: 18px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-week p {
  margin-bottom: 40px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-week .box-field {
  text-align: center;
  margin-left: 20px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-blockedDays {
  background-color: #F0EEEE;
  border-radius: 8px;
  padding: 50px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-blockedDays .title {
  margin-bottom: 14px;
  font-size: 18px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-blockedDays .text {
  margin-bottom: 40px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-blockedDays .box-container-days {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-blockedDays .box-container-days .colum-left {
  padding-right: 30px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-blockedDays .box-container-days .box-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 10px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .form-searchs {
  margin: 12px 0;
  display: flex;
  align-items: center;
  width: 650px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .form-searchs label {
  width: 200px;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-paginacion {
  margin: 10px 0;
  display: flex;
  justify-content: flex-end;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-paginacion .paginacion {
  border-radius: 8px;
  background-color: #F0EEEE;
  display: flex;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-paginacion .paginacion .item-page {
  padding: 10px 20px;
  color: #0F0F0F;
}
.portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-paginacion .paginacion .active {
  background-color: #0F0F0F;
  color: #ffffff;
}
@media (max-width: 980px) {
  .portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items .item {
    margin-bottom: 12px;
  }
  .portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items .al-ct {
    text-align: left;
  }
  .portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items .justify-end {
    justify-content: flex-start;
  }
  .portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .form-searchs {
    flex-wrap: wrap;
    width: 100%;
  }
  .portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .form-searchs input {
    margin: 8px 0;
  }
}
@media (max-width: 650px) {
  .portal-main .main_back .container-portal .box-content-admin .tabs-content-admin section .content .box-container .box-items {
    grid-template-columns: 1fr;
  }
}
.portal-main .main_back .container-portal .box-content-admin label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 8px;
  display: block;
}
.portal-main .main_back .container-portal .box-content-admin input, .portal-main .main_back .container-portal .box-content-admin select, .portal-main .main_back .container-portal .box-content-admin textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #424242;
  outline: none;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #F0EEEE;
  padding: 20px;
  border-radius: 8px;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .form-searchs {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .form-searchs input {
  width: 300px;
  margin-right: 12px;
  border: 1px solid #F0EEEE;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .form-searchs label {
  width: auto;
  margin-right: 20px;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .box-items {
  display: flex;
  background-color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .box-items .item {
  width: 20%;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .box-items .item2 {
  width: 33%;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .box-items p {
  line-height: 24px;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .box-items .img-qr-code {
  width: 180px;
  cursor: pointer;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .box-items.inactive {
  background-color: #dfd4d4;
  font-size: 14px;
  transition: all 0.5s ease;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .box-items.inactive .img-qr-code {
  filter: grayscale(100%);
  opacity: 0.5;
  cursor: not-allowed;
  width: 100px;
  transition: all 0.5s ease;
}
.portal-main .main_back .container-portal .box-content-admin .box-listado-vales .box-items.inactive .item2 .btn-verde {
  pointer-events: none;
  background-color: #F0EEEE;
  transition: all 0.5s ease;
  cursor: not-allowed;
  padding: 10px;
}/*# sourceMappingURL=dtinto.css.map */