@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
body,
button,
input,
select,
optgroup,
textarea {
  color: #12345b;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  transition: all 0.6s ease;
}

p {
  font-size: 14px;
}

body {
  background-color: #eef2f9;
}

* {
  transition: all 0.6s ease;
}

.site {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.site-main {
  width: 95%;
  padding: 15px 0;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) {
  .site-main {
    width: 80%;
    margin-right: 30px;
    margin-left: 20%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

h2 {
  color: #12345b;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  color: #12345b;
  font-size: 40px;
  line-height: 40px;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 30px;
    line-height: 30px;
  }
}

/* Links
--------------------------------------------- */
a {
  color: #12345b;
}
a:hover, a:active, a:focus {
  outline: 0;
}
a:visited {
  color: #12345b;
}
a:hover, a:focus, a:active {
  color: #12345b;
}

.btn {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 11px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.6s ease;
  background-color: #fe6b00;
}
.btn:hover, .btn:focus, .btn:active {
  background-color: #12345b;
  color: #ffffff;
}
.btn:visited {
  color: #ffffff;
}
.btn.btn-icon {
  align-items: center;
  gap: 20px;
}
.btn.btn-icon i {
  display: flex;
  align-items: center;
}
.btn.btn-icon i svg {
  width: 23px;
  height: 23px;
}
.btn.btn-small {
  padding: 5px 20px;
}
.btn.btn-danger {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 11px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.6s ease;
  background-color: #dc1919;
  padding: 5px 15px;
}
.btn.btn-danger:hover, .btn.btn-danger:focus, .btn.btn-danger:active {
  background-color: #dc1919;
  color: #ffffff;
}
.btn.btn-danger:visited {
  color: #ffffff;
}
.btn.btn-border {
  background-color: transparent;
  border: 1px solid #fe6b00;
  color: #fe6b00;
}

button {
  border: 0;
  cursor: pointer;
}

.btn-default {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 11px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.6s ease;
  background-color: #dddddd;
}
.btn-default:hover, .btn-default:focus, .btn-default:active {
  background-color: #a8a8a8;
  color: #ffffff;
}
.btn-default:visited {
  color: #ffffff;
}

/* Forms
--------------------------------------------- */
input[type=button],
input[type=reset],
input[type=submit] {
  border: 0;
  border-radius: 15px;
  background: #fe6b00;
  color: #ffffff;
  line-height: 1;
  padding: 15px 30px;
  cursor: pointer;
}
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background: #12345b;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  color: #12345b;
  border: 1px solid #f3f4f9;
  height: 45px !important;
  border-radius: 0;
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  width: 100%;
  background-color: #eef2f9;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  color: #4f6487;
}

input[type=checkbox] {
  accent-color: #fe6b00;
}

textarea {
  height: 100px !important;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.mid {
  width: 49%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .mid {
    width: 100%;
  }
}

.full {
  width: 100%;
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  position: relative;
}

.label-input-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #f3f4f9;
  border-radius: 10px;
  padding: 5px 10px;
}
.label-input-icon input {
  border: 0;
  background: transparent;
}
.label-input-icon input:focus {
  outline: 0;
}
.label-input-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.label-input-icon i svg {
  width: 23px;
  height: 23px;
}
.label-input-icon i svg path {
  fill: #12345b;
}

.site-header {
  width: 40%;
  height: 100vh;
  background-color: #ffffff;
  border-right: 1px solid #f3f4f9;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  z-index: 10;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .site-header {
    left: -40%;
  }
}
@media only screen and (min-width: 992px) {
  .site-header {
    width: 18%;
  }
}
.site-header .logo {
  border-bottom: 1px solid #f3f4f9;
  margin: 20px;
  padding-bottom: 20px;
}
.site-header .main-navigation__subtitle {
  font-size: 14px;
  padding-bottom: 20px;
  display: block;
  margin-left: 10px;
}
.site-header .main-navigation ul.mega-menu > li {
  margin-bottom: 10px !important;
}
.site-header .main-navigation ul.mega-menu > li:last-child {
  margin-bottom: 0;
}
.site-header .main-navigation ul.mega-menu > li a {
  display: flex !important;
  align-items: center;
}
.site-header .main-navigation ul.mega-menu > li a:before {
  filter: grayscale(1);
}
.site-header .main-navigation ul.mega-menu > li ul.mega-sub-menu {
  position: relative !important;
  left: 0 !important;
  padding: 10px !important;
  margin-right: 20px !important;
  opacity: 1 !important;
  display: none !important;
  visibility: visible !important;
  margin-bottom: 20px;
  transform: translate(0, 0) !important;
}
.site-header .main-navigation ul.mega-menu > li ul.mega-sub-menu li a {
  background-color: transparent !important;
}
.site-header .main-navigation ul.mega-menu > li ul.mega-sub-menu li.mega-current_page_item a {
  font-weight: bold !important;
  color: #12345b !important;
}
.site-header .main-navigation ul.mega-menu > li.mega-current_page_item.mega-menu-item-has-children:not(#mega-menu-item-10) ul.mega-sub-menu {
  display: block !important;
}
.site-header .main-navigation ul.mega-menu > li.mega-current-menu-parent ul.mega-sub-menu {
  display: block !important;
}
.site-header .main-navigation ul.mega-menu > li.mega-current_page_item {
  position: relative;
}
.site-header .main-navigation ul.mega-menu > li.mega-current_page_item > a {
  font-weight: bold !important;
  background-color: #eef2f9 !important;
}
.site-header .main-navigation ul.mega-menu > li.mega-current_page_item > a:after {
  position: absolute;
  display: block !important;
  right: 0;
  top: 0;
  content: "";
  width: 7px;
  border-radius: 5px 0 0 5px;
  height: 100%;
  background-color: #fe6b00;
}
.site-header .main-navigation ul.mega-menu > li.mega-current_page_item > a:before {
  filter: grayscale(0);
}

.info-user {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 20px;
}
.info-user__cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-user__cont-wrapper {
  display: flex;
}
.info-user__cont-wrapper img {
  width: 33px;
  height: 33px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 33px;
}
.info-user__cont-name p {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
}
.info-user__cont-name span {
  font-size: 13px;
}

.activadorheader {
  position: absolute;
  bottom: 5%;
  right: -40px;
  background-color: #fff;
  padding: 12px 10px;
  width: 40px;
  height: 40px;
  border-radius: 0px 10px 10px 0px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .activadorheader {
    display: flex;
  }
}
.activadorheader span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: #FE6B00;
}

.activoheader {
  left: 0% !important;
}

/* Estilos para el popup */
.popup {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: flex-end;
  justify-content: flex-end;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.popup.show {
  display: flex;
}

.popup-contenido {
  background-color: #ffffff;
  margin: 30px;
  padding: 40px;
  border: 1px solid #f3f4f9;
  width: 40%;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}
.popup-contenido h2 {
  margin-top: 0;
}
.popup-contenido input[type=submit],
.popup-contenido button[type=submit],
.popup-contenido button#next {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 11px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.6s ease;
  background-color: #fe6b00;
}
.popup-contenido input[type=submit]:hover, .popup-contenido input[type=submit]:focus, .popup-contenido input[type=submit]:active,
.popup-contenido button[type=submit]:hover,
.popup-contenido button[type=submit]:focus,
.popup-contenido button[type=submit]:active,
.popup-contenido button#next:hover,
.popup-contenido button#next:focus,
.popup-contenido button#next:active {
  background-color: #12345b;
  color: #ffffff;
}
.popup-contenido input[type=submit]:visited,
.popup-contenido button[type=submit]:visited,
.popup-contenido button#next:visited {
  color: #ffffff;
}
.popup-contenido button#cancel {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 11px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.6s ease;
  background-color: #dddddd;
}
.popup-contenido button#cancel:hover, .popup-contenido button#cancel:focus, .popup-contenido button#cancel:active {
  background-color: #a8a8a8;
  color: #ffffff;
}
.popup-contenido button#cancel:visited {
  color: #ffffff;
}

.cerrar-popup {
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: -5px;
  top: -5px;
  width: 30px;
  height: 30px;
  background-color: #4f6487;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 3px;
  color: #ffffff;
}

.cerrar-popup:hover,
.cerrar-popup:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

div#camposEditar {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
}
div#camposEditar .popup-item-form:last-child {
  grid-column: span 2;
}

.popup-item-form label {
  font-size: 14px;
}
.popup-item-form label::first-letter {
  text-transform: uppercase;
}

.popupConfirmacion .popup-contenido {
  padding: 20px 40px;
}

.popup-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.popup-info svg {
  width: 40px;
}
.popup-info h2 {
  margin-bottom: 0;
}

.header-usuario {
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  border: 1px solid #f3f4f9;
  background-color: #ffffff;
  margin-bottom: 30px;
}
.header-usuario__top {
  background-color: #fe6b00;
  text-align: right;
  padding: 15px;
  background-image: url(https://people.marketeros.com.co/wp-content/uploads/2024/06/header-small.jpg);
  background-size: cover;
}
.header-usuario__top h1 {
  color: #4f6487;
  font-size: 27px;
  margin-bottom: 0;
}
.header-usuario__bottom {
  display: flex;
  justify-content: space-between;
  padding: 17px;
  margin-left: 30px;
}
.header-usuario__bottom-info {
  display: flex;
  gap: 30px;
}
.header-usuario__bottom-info img {
  width: 110px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 110px;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  margin-top: -50px;
}
.header-usuario__bottom-info h2 {
  margin: 0;
  font-size: 25px;
  font-weight: bold;
}
.header-usuario__bottom-info p {
  margin: 0;
  font-size: 17px;
}

.header-interna {
  border-radius: 20px;
  border: 1px solid #f3f4f9;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  min-height: 200px;
  background-image: url(https://cotizaciones.tinkko.com/wp-content/uploads/2024/08/header.jpg);
  background-size: cover;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .header-interna {
    padding: 15px;
  }
}
.header-interna__content {
  display: flex;
  align-items: flex-end;
}
.header-interna__content h1 {
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
}
.header-interna__forms {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.header-interna__forms label {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .header-interna__forms label {
    min-width: 400px;
  }
}

.dt-container input,
.dt-container select {
  width: auto !important;
}

.dt-empty-footer tbody > tr:last-child > * {
  border-bottom: 0 !important;
}

table thead tr th {
  text-align: left !important;
}

.table {
  background-color: #ffffff;
  font-size: 14px;
  border: 1px solid #f3f4f9;
  padding: 20px;
  border-radius: 20px;
  margin-top: 30px;
  width: 100% !important;
}
@media only screen and (max-width: 768px) {
  .table {
    margin-top: 15px;
  }
}
.table th.dt-type-numeric,
.table th.dt-type-date,
.table td.dt-type-numeric,
.table td.dt-type-date {
  text-align: left !important;
}
.table thead > tr > th,
.table thead > tr > td {
  padding: 10px;
  border-bottom: 1px solid #f3f4f9 !important;
  padding-top: 0 !important;
}
.table thead {
  text-align: left;
}
.table th {
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .table th {
    font-size: 14px;
  }
}
.table tbody tr:hover {
  background-color: #f3f4f9;
}
.table tbody tr td {
  padding: 10px 5px;
}

.user-selected-settings {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.white-box {
  background-color: #ffffff;
  border: 1px solid #f3f4f9;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.white-box__title {
  border-bottom: 1px solid #f3f4f9;
  margin-bottom: 20px;
}
.white-box__title h3 {
  margin: 0;
}
.white-box__content {
  font-size: 14px;
}

.header-user {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #f3f4f9;
  overflow: hidden;
  margin-bottom: 30px;
}
.header-user__data {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: #fe6b00;
  position: relative;
  padding-top: 70px;
  padding-left: 40px;
  padding-right: 40px;
}
.header-user__data::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #ffffff;
}
.header-user__title {
  width: 100%;
  padding: 40px;
  padding-top: 10px;
  padding-bottom: 30px;
}
.header-user__title h1 {
  margin: 0;
  font-size: 30px;
}
.header-user__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  position: relative;
}
.header-user__image {
  position: relative;
}
.header-user__image img {
  border-radius: 100%;
  border: 8px solid #ffffff;
  width: 170px;
  height: 170px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.flex-container {
  display: flex;
  gap: 30px;
  width: 100%;
}

.w-70 {
  width: 70%;
}

.w-30 {
  width: 30%;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.basic-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 18px;
  display: flex;
  flex-direction: column;
}
.basic-info ul li {
  padding-left: 30px;
  position: relative;
}
.basic-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
}

.call-incident {
  background-color: #eef2f9;
  border: 1px solid #f3f4f9;
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
}
.call-incident__wrapper {
  display: flex;
  align-items: center;
  display: inline-block;
}
.call-incident h3 {
  margin: 0;
}
.call-incident__info {
  display: inline-block;
}
.call-incident__button {
  background-color: #ffffff;
  border: 1px solid #f3f4f9;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  padding: 14px 20px;
  margin-left: 20px;
  padding-right: 80px;
  line-height: 22px;
  font-size: 14px;
}
.call-incident__button strong {
  color: #fe6b00;
  display: block;
}

.report-to .white-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-to__btn a {
  background-color: #eef2f9;
  border: 1px solid #f3f4f9;
  border-radius: 3px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-to__user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.report-to__user img {
  border-radius: 70px;
  border: 4px solid #ffffff;
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.report-to__user-name {
  font-weight: bold;
}
.report-to__user-name span {
  display: block;
  font-weight: 400;
  font-size: 13px;
}

.family__item {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 10px;
}
.family__item:last-child {
  margin-bottom: 0;
}
.family__item-name {
  width: 70%;
  font-weight: 500;
}
.family__item-types {
  width: 30%;
}

.salary .white-box__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  border-bottom: 0;
}
.salary .white-box__title span {
  text-align: right;
  font-size: 12px;
}
.salary .white-box__title span strong {
  display: block;
  font-size: 14px;
}
.salary__content {
  display: flex;
  align-items: center;
}
.salary .value {
  font-weight: bold;
  font-size: 50px;
  line-height: 50px;
}
.salary .symbol {
  font-size: 20px;
}
.salary .cents {
  font-size: 20px;
}
.salary__update {
  color: #bebebe;
}

form .white-box__content {
  display: flex;
  gap: 20px;
}

.form__item {
  margin-bottom: 10px;
  width: 100%;
}

.experiencia-box > div,
.educacion-box > div,
.salary-box {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 10px;
  align-items: center;
}
.experiencia-box > div button,
.educacion-box > div button,
.salary-box button {
  color: red;
  background: transparent;
  font-weight: bold;
  font-size: 13px;
  border: 1px solid transparent;
  transition: all 0.6s ease;
}
.experiencia-box > div button:hover,
.educacion-box > div button:hover,
.salary-box button:hover {
  border: 1px solid #dc1919;
}

#calendar {
  border: 0;
  margin-top: 40px;
}
#calendar table.fc-col-header {
  margin-bottom: 0;
}
#calendar .fc-toolbar-title {
  text-transform: uppercase;
}
#calendar td,
#calendar th {
  border: 0;
}
#calendar .fc-scroller.fc-scroller-liquid-absolute {
  position: relative !important;
}
#calendar .fc-scrollgrid {
  border: 0;
}
#calendar .fc-col-header-cell > div {
  text-align: left;
}
#calendar .fc-daygrid-day {
  padding: 10px !important;
}
#calendar .fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
#calendar .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
#calendar .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame .fc-daygrid-day-top a {
  background-color: #12345b;
  color: #ffffff;
}
#calendar .fc-daygrid-day.fc-day-other .fc-daygrid-day-frame {
  background-color: rgba(243, 244, 249, 0.2);
}
#calendar .fc-daygrid-day .fc-daygrid-day-frame {
  background-color: #ffffff;
  border-radius: 10px;
}
#calendar .fc-daygrid-day .fc-daygrid-day-top a {
  font-weight: bold;
  padding: 6px;
  line-height: 100%;
  margin: 5px;
  border-radius: 5px;
}
#calendar .fc-daygrid-day .fc-daygrid-day-events {
  padding: 0 10px;
}
#calendar .fc-daygrid-day .fc-event {
  padding: 0 3px;
}

.trabajo-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -moz-columns: 2;
       columns: 2;
}
.trabajo-list li {
  display: flex;
  margin-bottom: 15px;
}
.trabajo-list li strong {
  width: 30%;
}

.h-edit {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #fe6b00;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}
.h-edit__title {
  position: relative;
}
.h-edit__title > img {
  border-radius: 100%;
  border: 8px solid #ffffff;
  width: 170px;
  height: 170px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}
.h-edit h1 {
  margin-bottom: 0;
  color: #ffffff;
}
.h-edit .subir-foto-perfl {
  position: absolute;
  cursor: pointer;
  bottom: 0;
  left: 0;
}
.h-edit .subir-foto-perfl input {
  display: none;
}

.equipo-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-container {
  display: flex;
  overflow: hidden; /* Oculta la barra de desplazamiento predeterminada */
  position: relative;
}

.scroll-content {
  display: flex;
  overflow: auto; /* Permite el desplazamiento interno */
  scrollbar-width: thin; /* Ajusta el ancho de la barra de desplazamiento */
  scrollbar-color: #888 #eee; /* Colores de la barra de desplazamiento (para Firefox) */
}

.scroll-content::-webkit-scrollbar {
  height: 12px; /* Altura de la barra de desplazamiento (para WebKit) */
}

.scroll-content::-webkit-scrollbar-track {
  background: #eee; /* Fondo de la barra de desplazamiento */
}

.scroll-content::-webkit-scrollbar-thumb {
  background-color: #888; /* Color del "thumb" de la barra de desplazamiento */
  border-radius: 6px; /* Redondea los bordes del "thumb" */
}

.equipo-cont {
  flex: 0 0 300px;
}
.equipo-cont-general {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  flex-direction: row;
  width: 100%;
}
.equipo-cont__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.equipo-cont__header span {
  background-color: #f3f4f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 5px;
}
.equipo-cont__item {
  background-color: #ffffff;
  border: 1px solid #f3f4f9;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 10px;
}
.equipo-cont__item img {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #ffffff;
}
.equipo-cont__item-desc {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
.equipo-cont__item-desc p {
  font-size: 14px;
  margin: 0;
  font-weight: bold;
  display: block;
}
.equipo-cont__item-desc span {
  font-size: 12px;
}

.agregar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.agregar-item button {
  background: transparent;
  font-size: 13px;
  font-weight: bold;
}
.agregar-item button span {
  color: #fe6b00;
}

.salario-boxes {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}
.salario-boxes__box {
  background-color: #ffffff;
  border: 1px solid #f3f4f9;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.salario-boxes__box:nth-child(1), .salario-boxes__box:nth-child(2) {
  width: 30%;
}
.salario-boxes__box:nth-child(3), .salario-boxes__box:nth-child(4) {
  width: 20%;
}
.salario-boxes__box-title h3 {
  font-size: 14px;
  margin: 0;
}
.salario-boxes__box-content .symbol,
.salario-boxes__box-content .cents {
  font-size: 20px;
}
.salario-boxes__box-content .value {
  font-weight: bold;
  font-size: 50px;
  line-height: 50px;
}
.salario-boxes__box-content .salario-diario {
  font-size: 12px;
}
.salario-boxes__box-content .salario-diario .symbol,
.salario-boxes__box-content .salario-diario .cents {
  font-size: 10px;
}
.salario-boxes__box-content .salario-diario .value {
  font-weight: bold;
  font-size: 19px;
  line-height: 19px;
}
.salario-boxes__box-content .salario-descripcion {
  font-size: 12px;
  color: #bebebe;
}

.editar-btn-subform,
.borrar-btn-subform,
.editar-btn,
.ver-btn {
  background-color: transparent;
  filter: grayscale(1);
  transition: all 0.6s ease;
}
.editar-btn-subform:hover,
.borrar-btn-subform:hover,
.editar-btn:hover,
.ver-btn:hover {
  filter: grayscale(0);
  opacity: 1;
}

.borrar-btn-subform {
  opacity: 0.4;
}

td[data-subformname=Descripci_n_de_funciones] {
  max-width: 300px;
}

.login-page {
  display: flex;
  height: 100vh;
  padding: 20px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .login-page {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}
.login-page .login-form {
  background-color: #eef2f9;
  padding: 0 10%;
  display: flex;
  justify-content: center;
  width: 50%;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .login-page .login-form {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
}
.login-page .login-form h1 {
  margin-bottom: 0;
}
.login-page .login-form .subtitle {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
}
.login-page .login-form .wppb-user-forms {
  flex-direction: column;
}
.login-page .login-form .wppb-user-forms .wppb-username-email {
  display: flex;
  flex-direction: column;
}
.login-page .login-form .wppb-user-forms .wppb-username-email .text-input {
  width: 100%;
}
.login-page .login-form #wppb-loginform {
  flex-direction: column;
}
.login-page .login-form #wppb-loginform p {
  flex-direction: column;
  display: flex;
}
.login-page .login-form #wppb-loginform p label {
  width: 100%;
  float: none;
}
.login-page .login-form #wppb-loginform p input {
  width: 100%;
}
.login-page .login-form #wppb-loginform .login-remember {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row !important;
}
.login-page .login-form #wppb-loginform .login-remember input {
  width: auto !important;
}
.login-page .login-image {
  width: 50%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .login-page .login-image {
    width: 100%;
    height: 150px;
  }
}
.login-page .login-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cargo-header .white-box__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

#camposAgregar {
  width: 100%;
}

.ccargo-form {
  flex-direction: column;
}

.ver-btn {
  border: 1px solid #ccc;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.6s ease;
}
.ver-btn:hover {
  border: 1px solid #fe6b00;
  background-color: #ffffff;
}

.acciones-div {
  align-items: center;
  display: flex;
  gap: 20px;
}

.dropdown .dropbtn {
  background-color: #ffffff;
  color: #12345b;
  height: 40px;
  border-radius: 10px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.6s ease;
  border: 1px solid transparent;
}
.dropdown:hover .dropdown-content {
  display: flex;
}
.dropdown:hover .dropbtn {
  background-color: #eef2f9;
  border: 1px solid #f3f4f9;
}
.dropdown .dropdown-content {
  position: absolute;
  right: 0;
  display: none;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px #ccc;
  overflow: hidden;
}
.dropdown .dropdown-content button {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  transition: all 0.6s ease;
  text-align: left;
}
.dropdown .dropdown-content button:hover {
  background-color: #eef2f9;
}
.dropdown .dropdown-content button:last-child {
  border-bottom: 0;
}

.filepond--root {
  width: 100%;
  height: 76px !important;
}

.filepond--root .filepond--list-scroller {
  height: 76px !important;
}

.filepond--browser.filepond--browser {
  height: 100%;
  z-index: 999;
}

.permiso {
  background-color: #ffffff;
  border: 1px solid #f3f4f9;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  position: relative;
}
.permiso h3 {
  margin: 0;
  line-height: 100%;
}
.permiso-info {
  margin-left: 20px;
}
.permiso p {
  margin: 0;
  font-size: 14px;
  color: #7c7c7c;
}
.permiso span {
  width: 15px;
  height: 15px;
  border-radius: 2px;
}
.permiso a {
  color: transparent;
}
.permiso .permiso-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.permiso .permiso-actions img {
  filter: grayscale(1);
  transition: all 0.6s ease;
}
.permiso .permiso-actions a.delete-icon img {
  opacity: 0.5;
}
.permiso .permiso-actions a:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.tipo-permiso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.tipo-permiso-wrapper {
  display: flex;
  gap: 20px;
  flex-flow: wrap;
}
.tipo-permiso-wrapper .option {
  flex: 1;
  cursor: pointer;
  border: 1px solid #f3f4f9;
  border-radius: 20px;
  transition: all 0.6s ease;
  padding: 20px;
}
.tipo-permiso-wrapper .option:hover {
  background-color: #eef2f9;
  border: 1px solid #fe6b00;
}
.tipo-permiso-wrapper .option label {
  cursor: pointer;
  font-size: 14px;
}
.tipo-permiso-wrapper .option label strong {
  font-size: 16px;
}
.tipo-permiso-wrapper .option.selected {
  background-color: #eef2f9;
  border: 1px solid #12345b;
}
.tipo-permiso-wrapper .buttons {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.color {
  flex: 1;
}
.color input[type=color] {
  background: none;
  border: 0;
  padding: 0;
}
.color input[type=color]::-webkit-color-swatch {
  border-radius: 5px;
  border: 1px solid #f3f4f9;
}

.permiso-basico-wrapper {
  flex-flow: wrap;
}
.permiso-basico-wrapper .w-50 {
  flex: 1;
}

.w-90 {
  width: 90%;
}

.form__item.aplicable-radio {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.form__item.aplicable-radio > label {
  width: 100%;
}

.time-inputs {
  display: flex;
  gap: 10px;
}
.time-inputs > div {
  flex: 1;
}
.time-inputs > div label {
  font-size: 13px;
  font-weight: bold;
}

.permiso-vigencia {
  display: flex;
  gap: 10px;
  align-items: center;
}
.permiso-vigencia input {
  width: auto;
}
.permiso-vigencia input[type=number] {
  width: 80px;
}
.permiso-vigencia select {
  width: auto;
}

@media only screen and (max-width: 576px) {
  .content-gentable {
    overflow-x: scroll;
  }
}
.timeline-novedades {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: relative;
  margin-left: 20px;
}
.timeline-novedades li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 25px;
}
.timeline-novedades li p {
  margin: 0;
}
.timeline-novedades li h3 {
  margin-top: 0;
}
.timeline-novedades li h3 strong {
  font-size: 14px;
  font-weight: 300;
  display: block;
  margin-top: 10px;
  opacity: 0.6;
  line-height: 13px;
}
.timeline-novedades li .info-timeline {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #f3f4f9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.timeline-novedades li span {
  background-color: #eef2f9;
  border: 1px solid #f3f4f9;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 13px;
}
.timeline-novedades li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 3px;
  width: 20px;
  height: 20px;
  background-color: #12345b;
  border-radius: 10px;
  z-index: 1;
  border: 1px solid #f3f4f9;
}
.timeline-novedades li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: 120%;
  background-color: #12345b;
  opacity: 0.3;
}

.title-permiso {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.title-permiso h2 {
  margin: 0;
}

.btn-primary {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 11px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.6s ease;
  background-color: #fe6b00;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #12345b;
  color: #ffffff;
}
.btn-primary:visited {
  color: #ffffff;
}

.btn-cancel {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 11px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.6s ease;
  background-color: #dc1919;
}
.btn-cancel:hover, .btn-cancel:focus, .btn-cancel:active {
  background-color: #dc1919;
  color: #ffffff;
}
.btn-cancel:visited {
  color: #ffffff;
}

.info-permiso {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.info-permiso p {
  margin-bottom: 0;
}
.info-permiso strong {
  display: block;
}
.info-permiso form {
  width: 100%;
  justify-content: flex-end;
  gap: 20px;
}

#dynamic-fields {
  display: flex;
  width: 100%;
  gap: 20px;
}
#dynamic-fields > div {
  border-radius: 20px;
  border: 1px solid #f3f4f9;
  padding: 20px;
}
#dynamic-fields > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
#dynamic-fields > div:nth-child(1) img {
  width: 35px;
}
#dynamic-fields > div:nth-child(1) p {
  margin-bottom: 0;
}

.drp-buttons {
  display: flex !important;
  align-items: center;
}

.permiso_item {
  width: 100%;
}

.preliquidacion-filtros {
  background-color: #ffffff;
  border-radius: 20px;
  border: #f3f4f9;
  padding: 20px;
}
.preliquidacion-filtros__form {
  display: flex;
  align-items: center;
  flex-flow: row;
  gap: 20px;
}
.preliquidacion-filtros__form input,
.preliquidacion-filtros__form select {
  width: auto;
}
.preliquidacion-filtros__form p {
  margin: 0;
  font-weight: bold;
}
.preliquidacion-filtros__form-submit {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.preliquidacion-start {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}
.preliquidacion-start__content {
  max-width: 50%;
  margin: 0 auto;
}
.preliquidacion-start h3 {
  font-weight: 300;
  font-size: 30px;
  line-height: 37px;
}
.preliquidacion-start h3 strong {
  font-weight: bold;
}

.arbol {
  inline-size: 100%;
  block-size: 98%;
  white-space: nowrap;
}
.arbol-column {
  position: relative;
  inline-size: 120px;
  block-size: 100%;
  display: inline-block;
  margin-inline-start: -1px;
}
.arbol-column.extended {
  inline-size: 340px;
}
.arbol-column.extended:first-child {
  inline-size: 320px;
}
.arbol-column.extended:first-child ul li {
  padding-inline-start: 1px;
  border-inline-start: 0;
}
.arbol-column.extended:first-child ul li .contra .lin {
  inline-size: 45px;
}
.arbol-column.extended:first-child ul li.has-items .contra .lin {
  inline-size: 300px;
}
.arbol-column.extended:first-child ul li.has-items.active .contra .lin {
  inline-size: 320px;
}
.arbol-column.extended ul {
  margin: 0px;
  padding: 0px;
  inline-size: 100%;
  block-size: 100%;
  float: left;
  list-style-type: none;
}
.arbol-column.extended ul li {
  inline-size: 100%;
  block-size: 68px;
  padding: 10px 0 10px 20px;
  position: relative;
  float: left;
}
.arbol-column.extended ul li.has-items .contra .lin {
  inline-size: 300px;
}
.arbol-column.extended ul li.has-items.active .contra .lin {
  inline-size: 320px;
}
.arbol-column.extended ul li .contra {
  overflow: hidden;
  padding: 3px;
  border-radius: 10px;
  inline-size: 260px;
  block-size: 48px;
  border: 1px solid #f3f4f9;
  border-radius: 10px;
  background-color: #ffffff;
  transition: all 0.6s ease;
}
.arbol-column.extended ul li .contra:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}
.arbol-column.extended ul li .contra img {
  inline-size: 40px;
  block-size: 40px;
  border: 0;
  float: left;
  position: relative;
  border-radius: 10px;
  padding: 2px;
  background-color: #eef2f9;
  cursor: pointer;
}
.arbol-column.extended ul li .contra .det {
  inline-size: 190px;
  margin: 0 10px 0 8px;
  float: right;
  line-height: 20px;
  display: block;
  cursor: pointer;
}
.arbol-column.extended ul li .contra .det b {
  inline-size: 190px;
  float: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: clip !important;
  font-weight: 500;
  font-size: 15px;
}
.arbol-column.extended ul li .contra .det span {
  inline-size: 100%;
  color: #888;
  float: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: clip !important;
  font-size: 12px;
}
.arbol-column.extended ul li .contra .lin {
  block-size: 1px;
  inline-size: 22px;
  border-block-end: 1px solid #dcdcdc;
  position: absolute;
  inset-block-start: 33px;
  inset-inline-start: -1px;
  z-index: -1;
  inline-size: 45px;
}
.arbol-column.extended ul li .contra .ecount {
  min-inline-size: 30px;
  block-size: 20px;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
  font-size: 12px;
  padding: 4px;
  text-align: center;
  position: absolute;
  inset-block-start: 23px;
  inset-inline-end: 10px;
  z-index: 100;
  cursor: pointer;
  line-height: 11px;
}

.formulario {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
}
.formulario-header {
  background-image: url(https://cotizaciones.tinkko.com/wp-content/uploads/2024/08/formulario-header.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  padding: 15px;
  color: #ffffff;
  min-height: 200px;
}
@media only screen and (min-width: 768px) {
  .formulario-header {
    padding: 30px;
  }
}
.formulario-header img {
  width: 32px;
}
.formulario-header h2 {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .formulario-header h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.formulario-header p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
}
@media only screen and (min-width: 768px) {
  .formulario-header p {
    font-size: 20px;
    line-height: 20px;
  }
}
.formulario-content {
  padding: 15px;
  font-size: 14px;
  color: #12345b;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .formulario-content {
    padding: 30px;
  }
}
.formulario-content h3 {
  margin: 0;
  font-size: 18px;
  margin: 0;
}
.formulario-content p {
  margin-top: 0;
}
.formulario-content > div {
  display: none;
}
.formulario-content > div.active {
  display: block;
}
.formulario-content .plane-radio input[type=radio]:checked + .plane-radio__content {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  border: 1px solid #fe6b00;
  transform: translateY(-10px);
}
.formulario-content .plane-radio input[type=radio]:checked + .plane-radio__content img {
  filter: grayscale(0);
}
.formulario-content .plane-radio input {
  opacity: 0;
  width: 1px;
  height: 1px;
  display: none;
}
.formulario-content .plane-radio__photo img {
  width: 100% !important;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.formulario-content .plane-radio__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #bcc6d3;
  border-radius: 10px;
  padding: 14px;
  min-height: 120px;
  cursor: pointer;
  transition: all 0.6s ease;
  background-color: #ffffff;
  transform: translateY(0);
  min-height: 240px;
}
.formulario-content .plane-radio__content:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  border: 1px solid #fe6b00;
}
.formulario-content .plane-radio__content:hover img {
  filter: grayscale(0);
}
.formulario-content .plane-radio__content img {
  width: 13px;
  filter: grayscale(1);
}
.formulario-content .plane-radio__content h4 {
  font-size: 14px;
  margin: 0;
}
.formulario-content .plane-radio__content p {
  margin: 0;
  font-size: 10px;
}
.formulario-content__first-inputs {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
@media only screen and (min-width: 992px) {
  .formulario-content__first-inputs {
    grid-template-columns: 1fr 1fr;
  }
}
.formulario-content__second-inputs {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media only screen and (min-width: 992px) {
  .formulario-content__second-inputs {
    grid-template-columns: repeat(3, 1fr);
  }
}
.formulario-content__third-inputs {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media only screen and (min-width: 992px) {
  .formulario-content__third-inputs {
    grid-template-columns: repeat(3, 1fr);
  }
}
.formulario-content__third h3 {
  margin-bottom: 20px;
}
.formulario-content__fourth-inputs {
  display: block;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media only screen and (min-width: 992px) {
  .formulario-content__fourth-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.formulario-content__fourth-title {
  grid-column: span 3;
}
.formulario-content__fourth h3 {
  color: #fe6b00;
}
.formulario-content__five-inputs {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media only screen and (min-width: 992px) {
  .formulario-content__five-inputs {
    grid-template-columns: repeat(3, 1fr);
  }
}
.formulario-content__sixth-inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 15px;
  flex-flow: wrap;
}
.formulario-content__sixth-inputs label {
  font-weight: bold;
  width: 100%;
}
.formulario-content__sixth-inputs .plane-radio-personalizado {
  width: auto;
}
.formulario-content__sixth-inputs .plane-radio-personalizado .plane-radio__content {
  min-height: auto;
}
.formulario-content__sixth-inputs .tiempos {
  display: flex;
  gap: 7px;
}
@media only screen and (max-width: 768px) {
  .formulario-content__sixth-inputs .tiempos {
    width: 100%;
    flex-flow: wrap;
  }
}
.formulario-content__sixth-inputs .tiempos span {
  height: 60px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bcc6d3;
  border-radius: 10px;
  padding: 20px;
  transform: translateY(0);
  transition: all 0.6s ease;
  cursor: pointer;
  min-width: 106px;
}
@media only screen and (max-width: 768px) {
  .formulario-content__sixth-inputs .tiempos span {
    flex: 1;
  }
}
.formulario-content__sixth-inputs .tiempos span:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  border: 1px solid #fe6b00;
}
.formulario-content__sixth-inputs .tiempos input {
  display: none;
}
.formulario-content__sixth-inputs .tiempos input[type=radio]:checked + span {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  border: 1px solid #fe6b00;
  transform: translateY(-10px);
}
.formulario-content__sixth ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 80%;
}
.formulario-content__sixth ul li {
  margin-bottom: 3px;
}
.formulario-content__sixth h3 {
  color: #fe6b00;
}
.formulario-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
.formulario-buttons span,
.formulario-buttons button {
  padding: 10px 25px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}
.formulario-buttons .volver {
  background-color: #f3f4f9;
  color: #a6acb4;
}
.formulario-buttons .continuar,
.formulario-buttons .enviar {
  background-color: #fe6b00;
  color: #ffffff;
}

.formulario-content__intro,
.sala-reuniones-coins {
  padding: 20px;
  background-color: rgba(238, 242, 249, 0.3);
  border-radius: 10px;
}

.sala-reuniones-coins h4 {
  margin: 0;
}

.lista-cifras,
.lista-ciudades {
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
}
@media only screen and (max-width: 768px) {
  .lista-cifras,
  .lista-ciudades {
    flex-flow: wrap;
  }
}
.lista-cifras li,
.lista-ciudades li {
  flex: 1;
  font-size: 12px;
  border-left: 2px solid #fe6b00;
  padding-left: 20px;
}
.lista-cifras li strong,
.lista-ciudades li strong {
  display: block;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
}

div#gif-enviando {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #fff;
  flex-direction: column;
}

div#gif-exitoso {
  position: absolute;
  width: 100%;
  background-color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20%;
  text-align: center;
}
div#gif-exitoso p {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  div#gif-exitoso {
    padding: 10%;
  }
}

.tabla-sala-reuniones h3 {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .tabla-sala-reuniones h3 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .tabla-sala-reuniones thead {
    display: none;
  }
  .tabla-sala-reuniones tbody tr {
    display: flex;
    flex-direction: column;
  }
}

.foto-sede {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.foto-sede .form-label {
  font-size: 16px;
  font-weight: 600;
}
.foto-sede label {
  position: relative;
}
.foto-sede label .icon-camera {
  position: absolute;
  bottom: 0;
  right: 0;
}

.form__item .form-label {
  font-size: 16px;
  font-weight: 600;
}

.dnone {
  display: none;
}

.sec-flex {
  padding: 15px 0px;
}
.sec-flex label {
  margin: 0px 15px 0px 0px;
}

.mgbottom {
  margin-bottom: 25px;
}

#plan-table {
  background-color: #ffffff;
  border: 1px solid #f3f4f9;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.flex-list {
  padding: 15px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-list div {
  margin-right: 35px;
}

fieldset {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding: 1em 2em 2em;
  border-radius: 15px;
  border: 3px solid #eef2f9;
  margin-bottom: 35px;
}
fieldset label {
  margin-right: 15px;
}
fieldset legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0px 10px;
  white-space: normal;
  font-size: 16px !important;
  font-weight: 600;
}

.upload-foto-label {
  border: 1px solid #f3f4f9;
  height: 45px !important;
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  background-color: #eef2f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
.upload-foto-label input {
  display: none;
}

.image-preview-container {
  position: absolute;
  width: 400px;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
  pointer-events: none;
}
.image-preview-container .cropper-container {
  pointer-events: all;
}

.btn-secondary {
  float: right;
  margin-top: 25px;
}

.checkbox-options-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.checkbox-options-container label {
  font-size: 14px;
  margin: 10px 20px 10px 5px;
}

.header-ver-cotizacion {
  padding-bottom: 20px;
  margin-top: 20px;
}
.header-ver-cotizacion h2 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
}
.header-ver-cotizacion span {
  font-size: 16px;
  font-weight: 400;
}

.ver-titulo-tabla {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.table-ver {
  width: 100%;
  border-collapse: collapse;
  font-weight: 400;
}
.table-ver tr .table-ver__title {
  width: 20%;
  color: #9c9c9c;
}/*# sourceMappingURL=people-analytics.css.map */