:root {
  /* Comunes a los 2 theme */
  --scrollBar: #888;
  --scrollBarBg: #f1f1f1;
  --scrollBarHover: #555;
  --error: red;
  --warningColor: #ffa726;
  --black05: rgba(0, 0, 0, 0.5);
  --grayf5: #f5f5f5;
  --gray117: rgb(117, 117, 117);
  --gray6f: #6f6f6f;
  --gray1f: #1f1f1f;
  --c9fb8ad: #9fb8ad;
  --c35120f: #35120f;
  --cf44336: #f44336;
  --cc1c3b4: #c1c3b4;
  --nineBoxGreat: #34C173;
  --nineBoxGood: #AEFE5D;
  --nineBoxMid: #FEFE33;
  --nineBoxBad: #FFCC33;
  --nineBoxWorst: #FF5A37;
  --starColor: #ffb300;
}


:root[data-theme="dark"] {
  --drawer: #484848;
  --loginBg: #424242;
  --modalBg: #333;
  --listAnnotation: #555;
  --contactButton: #595959;
  --headerBorder: #555;
  --divider: #888;
  --loginInputBorderColor: #e0e0e0;
  --loginIcon: #e0e0e0;
  --loginButtonBg: #595959;
  --hoverLoginBtnContactBtn: #7a7a7a;
  --icons: white;
  --listItemBorderBottom: #343434;
  --qrBorder: white;
  --containedIcon: white;
  --mainText: white;
  --mainBackgroundColor: #121212;
  --secondaryBackgroundColor: #484848;
  --tertiaryBackgroundColor: #595959;
  --bg555: #555;
  --bgc0c0b8: #c0c0b8;
  /* Check de ok, input de login, otros */
  --buttonAccept: #747474;
  --buttonCancel: transparent;
  --svgColor: #e5e5e5;
  --negativeText: black;
  --groupNode: #f2f2f2;
  --genreBackground: #747474;
  --modalBackgroundColor: #2a2a2a;
  --react-tel-highlight-color: #444;
  --react-tel-arrow-color: #ffffff;
  --react-tel-dial-code-color: #bfbfbf;
  --react-tel-country-list-color: #555;
  --screenSelectorButtonBorder: #1c1c1c;
  --screenSelectorBackgroundColor: #444;
  --medalTableHeader: #1f1f1f;
  --medalTableBorder: transparent;
  --progressLow: #c7463c;
  --progressMid: #db9a00;
  --progressHigh: #67ad34;
}

:root[data-theme="light"] {
  --drawer: #fafafa;
  --loginBg: white;
  --modalBg: #eaeaea;
  --listAnnotation: #cecece;
  --contactButton: white;
  --headerBorder: #cecece;
  --divider: rgba(0, 0, 0, 0.54);
  --loginInputBorderColor: #cfcfcf;
  --loginIcon: #cfcfcf;
  --loginButtonBg: #c4c4c4;
  --hoverLoginBtnContactBtn: #e2e2e2;
  --icons: rgba(0, 0, 0, 0.54);
  --listItemBorderBottom: #eee;
  --qrBorder: white;
  --containedIcon: white;
  --mainText: black;
  --mainBackgroundColor: #eee;
  --secondaryBackgroundColor: #fafafa;
  --tertiaryBackgroundColor: white;
  --bg555: white;
  --bgc0c0b8: #7c7c78;
  /* Check de ok, input de login, otros */
  --buttonAccept: #f5f5f5;
  --buttonCancel: #c4c4c4;
  --svgColor: #200f0f;
  --negativeText: white;
  --groupNode: #e0e0e0;
  --genreBackground: #e5e5e5;
  --modalBackgroundColor: #fff;
  --react-tel-highlight-color: #f1f1f1;
  --react-tel-arrow-color: #555;
  --react-tel-dial-code-color: #6b6b6b;
  --react-tel-country-list-color: white;
  --screenSelectorButtonBorder: #cecece;
  --screenSelectorBackgroundColor: white;
  --medalTableHeader: white;
  --medalTableBorder: #dddddd;
  --progressLow: #FF4040;
  --progressMid: #F5A506;
  --progressHigh: #00993D;
}

html,
body,
#root {
  height: 100%;
  width: 100%;
  margin: 0;
  background: var(--mainBackgroundColor);
}

/*ICONS*/
.check-icon {
  color: var(--bgc0c0b8);
}

.empty-icon {
  color: var(--loginIcon);
}

.empty-icon-login {
  color: var(--modalBg);
}

.warning-icon {
  color: var(--warningColor);
}

.dialog-close-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--icons);
  cursor: pointer;
  margin: 20px 20px 0px 0px;
}

/********************************/

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--scrollBar);
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollBarHover);
}

/*********************************************/

.error-text {
  color: var(--error) !important;
  max-width: 270px;
}

.mount-animation {
  animation: appear 0.6s 1 linear;
}

@keyframes appear {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

/*LOGIN*/
#login-page #login-desktop-wallpaper {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  transition: background-image 1s;
}

#login-page #left-panel {
  text-align: center;
  background-color: var(--loginBg);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#login-page #left-panel .version-text {
  display: inline-block;
  font-size: 14px;
}

#login-page #left-panel .version-progress {
  vertical-align: middle;
  color: var(--bgc0c0b8);
}

#login-page #left-panel p {
  color: var(--gray6f);
  font-size: 16px;
}

#login-page #left-panel .translate-button {
  padding: 0px;
  margin: 5px 0;
  color: var(--mainText);
  background-color: var(--loginBg);
}

#login-page #left-panel .translate-button:hover {
  background-color: var(--hoverLoginBtnContactBtn);
}

#login-page #left-panel .login-button {
  width: 270px;
  max-width: 100%;
  margin: 5px 0;
  padding: 8px 16px;
  color: var(--mainText);
  background-color: var(--loginButtonBg);
  border-radius: 6px;
  border: 0;
}

#login-page #left-panel .login-button:hover {
  background-color: var(--hoverLoginBtnContactBtn);
  transform: scale(1.02);
  transition: transform 250ms;
}

#login-page #left-panel .recover-pin {
  color: var(--mainText);
  text-decoration: underline;
  padding: 10px;
  padding-bottom: 0px;
  cursor: pointer;
}

#login-page #left-panel .recover-pin:hover {
  color: var(--gray6f);
}

#login-page #left-panel .help-pin {
  color: var(--mainText);
  text-decoration: underline;
  cursor: pointer;
}

#login-page #left-panel .help-pin:hover {
  color: var(--gray6f);
}

/************************************************/

/* MENU Y HEADERS */
.main-header {
  height: 65px;
  z-index: 1200;
  background-color: var(--secondaryBackgroundColor);
  width: 100%;
}

.header-no-mobile {
  box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%),
    0px 1px 10px 0px rgb(0 0 0 / 12%);
  -webkit-box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%),
    0px 1px 10px 0px rgb(0 0 0 / 12%);
  -moz-box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%),
    0px 1px 10px 0px rgb(0 0 0 / 12%);
  margin-left: 60px;
  position: fixed;
  top: 0;
  left: 0px;
}

#menu-container {
  position: relative;
}

@media (max-width: 1279px) {

  /* para cuando este el header con appbar */
  #menu-container {
    padding-top: 65px;
  }
}

.drawer-divider {
  background-color: var(--divider);
  height: 1px;
}

#drawer-content {
  width: 310px;
  background-color: var(--drawer);
  overflow-x: hidden;
  overflow-y: hidden;

}

#drawer-content:hover {
  overflow-y: scroll;
}

#drawer-logo-container {
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

#drawer-logo-container #logo {
  max-width: 100%;
  max-height: 150px;
  margin: auto;
  cursor: pointer;
}

#drawer-content .icon {
  width: 20px;
  height: 20px;
  fill: var(--icons);
}

#drawer-content .item-label {
  min-width: 187px;
}

#drawer-content .item-label span {
  color: var(--mainText);
}

#drawer-content .item-header-label span {
  color: var(--mainText);
}

#drawer-content.autoHide {
  width: 60px;
  transition: width 0.25s linear;
}

#drawer-content.autoHide:hover {
  width: 310px;
}

#drawer-container #drawer {
  width: 310px;
  background-color: var(--drawer);
  top: 200px;
  z-index: 1250;
}

#drawer-container #drawer>div {
  background-color: var(--drawer);
}

#drawer-container.autoHide {
  display: flex;
}

#drawer-container.autoHide #drawer {
  width: 60px;
  transition: width 0.25s linear;
}

#drawer-container.autoHide .page {
  min-height: calc(100vh - 65px);
  /* el 65 es el header */
  padding: 0px 10px;
  flex-grow: 1;
  overflow: hidden;
  background-color: var(--mainBackgroundColor);
}

/********************************************************/

/*MAIN Y PANTALLAS CON CUERPO GRIS (como Datos Personales y Userpage de Mypeople)*/
#main-content,
.content-border {
  background-color: var(--secondaryBackgroundColor);
  border-color: var(--headerBorder);
  border-style: solid;
  border-width: 1px;
  margin-bottom: 10px;
}

#main-content {
  overflow-y: auto;
}

#main-page {
  height: 100%;
}

#main-page .main-content-swiper-container {
  margin: 0 55px;
  overflow: hidden;
  cursor: pointer !important;
}

@media screen and (max-width: 650px) {
  #main-page .main-content-swiper-container {
    margin: 0 35px;
  }
}

/**************************************************************/

/*SLIDERS Y SWIPPERS: noticias, encuestas, analisis de encuestas*/
.slider-container {
  padding: 0 10px;
  position: relative;
}

.slider-container .title {
  color: var(--mainText);
  font-weight: bold;
  font-size: 20px;
  padding-top: 10px;
}

.slider-container .items-slider-container {
  max-height: 100%;
  margin: 25px 0;
  overflow: hidden;
}

.encuestas.slider-container .items-slider-container {
  max-height: 100%;
  margin-top: 25px;
  margin-bottom: 0px;
}

.slider-container .items-slider-container .download-icon-container {
  display: inline-block;
  border: var(--black05);
  border-radius: 6px;
  height: 35px;
}

.slider-container .items-slider-container .download-icon-container .download-icon {
  color: var(--containedIcon);
  font-size: 34px;
}

.slider-container .items-slider-container .display-number-container .counter-number {
  font-weight: bold;
  font-size: 32px;
  color: var(--mainText);
}

.slider-container .item-container {
  width: 100%;
}

.slider-container .item-container .image-container {
  background-size: cover;
  background-position: center;
  margin: auto;
  background-repeat: no-repeat;
}

.slider-container .item-container .image-container.loading {
  background: linear-gradient(141deg, var(--c9fb8ad) 0%, var(--c35120f) 51%, var(--cf44336) 75%);
}

.slider-container .item-container .item-name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--mainText);
  margin-bottom: 10px;
}

.slider-container .item-container .item-text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--mainText);
  margin-bottom: 10px;
}

.skeleton {
  background: var(--cc1c3b4) linear-gradient(90deg, var(--cc1c3b4), var(--grayf5), var(--cc1c3b4)) no-repeat;
  background-size: 200px 100%;
  border-radius: 4px;
  display: inline-block;
  min-height: 20px;
  line-height: 1;
  margin: 5px 0 !important;
  min-width: 200px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    background-position: -350px 0;
  }

  100% {
    background-position: calc(350px + 100%) 0;
  }
}

.custom-swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
}

.custom-swiper-button-left {
  left: 0;
}

.custom-swiper-button-left-pollReview {
  left: 15px;
}

.custom-swiper-button-right {
  right: 0;
}

.custom-swiper-button .swiper-button-icon {
  width: 2em;
  height: 2em;
}

#main-page .custom-swiper-button.swiper-button-disabled svg {
  color: var(--gray6f) !important;
}

/***********************************************************/

.list-round-container {
  background-color: var(--secondaryBackgroundColor);
  border-color: var(--headerBorder);
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  padding: 0;
}

#kpi-body {
  background-color: var(--secondaryBackgroundColor);
  overflow-y: auto;
  border-color: var(--headerBorder);
  border-style: solid;
  border-width: 1px;
  border-radius: 6px 5px 0px 0px;
  padding: 0;
  margin-bottom: 10px;
}

/*************************************************************/
.center-input {
  margin: 10px 0;
}

.custom-input {
  width: 270px;
  max-width: 100%;
}

.custom-input div:focus::before,
.custom-input div:hover::before,
.custom-input div:active::before,
.custom-input div::before {
  border-bottom-width: 2px !important;
  border-bottom-style: solid !important;
  border-color: var(--loginInputBorderColor) !important;
}

.custom-input input,
.custom-input label {
  color: var(--bgc0c0b8) !important;
  font-size: 20px;
}

.custom-input.error-input label {
  color: var(--error) !important;
}

@media screen and (max-width: 600px) {
  .custom-input {
    margin: 3px 0;
  }
}

.custom-input :after {
  border-color: var(--bgc0c0b8) !important;
}

/**********************************************************/

.custom-input-full-width {
  width: 100% !important;
  max-width: 100%;
}

.custom-input-full-width.error-input label {
  color: var(--error) !important;
}

@media screen and (max-width: 600px) {
  .custom-input-full-width {
    margin: 3px 0;
  }
}

.custom-input-full-width :after {
  border-color: var(--bgc0c0b8) !important;
}

.custom-input-full-width div:focus::before,
.custom-input-full-width div:hover::before,
.custom-input-full-width div:active::before,
.custom-input-full-width div::before {
  border-bottom-width: 2px !important;
  border-bottom-style: solid !important;
  border-color: inherit !important;
}

.custom-input-full-width input,
.custom-input-full-width label {
  color: var(--bgc0c0b8) !important;
  font-size: 20px;
}

.custom-input-full-width .error-input label {
  color: var(--error) !important;
}

@media screen and (max-width: 600px) {
  .custom-input-full-width {
    margin: 3px 0;
  }
}

/**********************************************************/

.custom-colored-input {
  width: 270px;
  max-width: 100%;
}

.custom-colored-input div:hover::before {
  border-color: inherit !important;
}

.custom-colored-input input,
.custom-colored-input label {
  color: var(--mainText) !important;
  font-size: 20px;
  font-weight: bold;
}

.custom-colored-input.error-input label {
  color: var(--error) !important;
}

@media screen and (max-width: 600px) {
  .custom-colored-input {
    margin: 3px 0;
  }
}

.custom-colored-input :after {
  border-color: inherit !important;
}

/********************************************************************/

/*LOGO*/
.peopleGateGo-logo {
  max-width: 100%;
}

.peopleGateGo-logo-Avatar {
  max-width: 100%;
  float: right;
}

/*************************************************/

/*Foto perfil*/
.photo-container>.employee-image {
  width: 100px;
  vertical-align: middle;
  height: 100px;
  border-radius: 50%;
}

.photo-container.small>.employee-image {
  width: 65px !important;
  height: 65px !important;
}

.photo-container.small>.employee-image-drawer {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  vertical-align: middle;
}

/**************************************************/

/*LOADER*/
.loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--black05);
  z-index: 1310;
}

.loader-container .loader-center-container {
  text-align: center;
  color: var(--bgc0c0b8);
}

/***********************************************/

/*My people page*/
#my-people-page {
  background-color: transparent;
  position: relative;
}

#my-people-page .loader-container {
  z-index: 1150;
}

#my-people-page #people-table-wrapper {
  overflow-x: auto;
}

#my-people-page #people-table-wrapper #toolbar-title {
  color: var(--mainText);
}

#my-people-page #people-table-wrapper .table-header-cell {
  font-weight: bold;
  font-size: 14px;
}

#my-people-page #people-table-wrapper .table-header-cell .table-header-text {
  color: var(--bgc0c0b8);
  font-weight: bolder;
}

#my-people-page #people-table-wrapper .table-header-cell .table-header-text:hover {
  color: inherit !important;
}

#my-people-page #people-table-wrapper .spacer-grow {
  flex-grow: 1;
}

#my-people-page #people-table-wrapper .table-row {
  cursor: pointer;
}

#my-people-page #people-table-wrapper .table-row:hover {
  background-color: var(--mainBackgroundColor);
}

#my-people-page #people-table-wrapper .table-cell {
  border-color: var(--bgc0c0b8);
  padding-right: 10px;
}

#my-people-page #table-key-filter-container {
  text-align: center;
}

#my-people-page #table-key-filter-container .search-label-field {
  font-size: 10px;
}

#my-people-page #table-key-filter-container .filter-button {
  padding: 0 12px;
  vertical-align: bottom;
}

/*****************************************************************/

#employee-dialog-content .employee-image {
  width: 120px;
  vertical-align: middle;
  height: 120px;
  margin-right: 25px;
  border-radius: 50%;
}

.employee-image {
  width: 100px;
  vertical-align: middle;
  height: 100px;
  margin-right: 25px;
  border-radius: 50%;
}

.modalPGO {
  padding: 0vh 2vh 3vh 2vh;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.imageModalPGO {
  max-height: 60vh;
  bottom: 45%;
  top: 55%;
  margin: auto;
  display: block;
  padding: 0em 0.5em;
  max-width: 90%;
}

.iconoModal {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  margin-right: auto;
  padding-left: 2px;
  padding-top: 2px;
  cursor: pointer;
  border: var(--black05);
  width: 40px;
  border-radius: 6px;
  background-color: var(--black05);
  height: 40px;
}

.iconoModal .download-icon {
  color: var(--containedIcon);
  font-size: 34px;
}

.swiper-wrapper {
  align-items: start;
}

.employeeCards .swiper-wrapper {
  align-items: flex-start;
}

.borderQRCode {
  border-style: solid;
  border-width: 2px;
  border-color: var(--qrBorder);
}

.subtitleAlert {
  color: var(--gray117);
}

#root {
  background: var(--mainBackgroundColor);
}

.actionsAlerts {
  position: absolute;
  right: 0;
  bottom: 0;
}

.selectedIcon {
  background-color: var(--gray1f);
}

.verticalButtonGroup * {
  border-radius: 6px !important;
}

.dialog-manager-title {
  font-size: 1.23rem;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  padding-left: 10px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0em;
}

/*# sourceMappingURL=dark.css.map */
.chart-wrapper {
  padding: 0 2%;
  display: inline-block;
}

.principal.chart-wrapper {
  width: 100%;
}

.sub.chart-wrapper {
  width: 29%;
  height: 300px;
}

/* Simple responsivenss example */
@media (max-width: 700px) {
  .sub.chart-wrapper {
    width: 96%;
  }
}

/***************************************/
.custom-input-full-width-my-data {
  margin-top: 0px !important;
  width: 90% !important;
}

.custom-input-full-width-my-data.error-input label {
  color: var(--error) !important;
}

@media screen and (max-width: 600px) {
  .custom-input-full-width-my-data {
    margin: 3px 0;
  }
}

.custom-input-full-width-my-data :after {
  border-color: var(--bgc0c0b8) !important;
}

.custom-input-90-width-my-data {
  width: 90% !important;
}

.custom-input-95-width-my-data {
  width: 95% !important;
}

.custom-input-97-width-my-data {
  width: 97% !important;
}

.custom-input-full-width-my-data div:focus::before,
.custom-input-full-width-my-data div:hover::before,
.custom-input-full-width-my-data div:active::before,
.custom-input-full-width-my-data div::before {
  border-bottom-width: 2px !important;
  border-bottom-style: solid !important;
  border-color: inherit !important;
}

.custom-input-full-width-my-data input,
.custom-input-full-width-my-data label {
  color: var(--bgc0c0b8) !important;
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .custom-input-full-width-my-data {
    margin: 3px 0;
  }
}

/**************************************************/

.whiteText {
  color: var(--mainText) !important;
}

.backgroundSecondary {
  background-color: var(--secondaryBackgroundColor);
}

.listItemBorderBottom {
  border-bottom: 1px solid var(--listItemBorderBottom);
}

.icon-container-kpi {
  display: flex;
  justify-content: center;
  padding-bottom: 15px;
  max-height: 8vh;
}

.errorColor {
  color: var(--error) !important;
}

.listAnnotations {
  border: 1px solid var(--listAnnotation);
  margin-top: 10px;
  border-radius: 6px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 9999s;
  transition-delay: 9999s;
}

#generalFooter {
  background-color: var(--secondaryBackgroundColor);
  z-index: 1201;
  position: fixed;
  bottom: 0px;
  width: 100%;
  min-height: 50px;
  max-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px -2px 4px -1px rgb(0 0 0 / 20%), 0px -4px 5px 0px rgb(0 0 0 / 14%),
    0px -1px 10px 0px rgb(0 0 0 / 12%);
  -webkit-box-shadow: 0px -2px 4px -1px rgb(0 0 0 / 20%), 0px -4px 5px 0px rgb(0 0 0 / 14%),
    0px -1px 10px 0px rgb(0 0 0 / 12%);
  -moz-box-shadow: 0px -2px 4px -1px rgb(0 0 0 / 20%), 0px -4px 5px 0px rgb(0 0 0 / 14%),
    0px -1px 10px 0px rgb(0 0 0 / 12%);
}

.contactItem {
  display: flex;
  margin: 15px 0;
  flex-direction: row;
  text-decoration: none;
  align-items: center;
}

.personal-data-form {
  margin-top: 50px;
}

.personal-data-form .field .value {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--mainText);
}

.value a {
  color: var(--mainText);
}

.personal-data-form .field .label,
.editable-field-label {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: var(--mainText);
}

.border-solid {
  border-style: solid;
}

.border-b-1 {
  border-bottom-width: 1px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: -webkit-box;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: inline-flex;
}

.table {
  display: table;
}

.table-cell {
  display: table-cell;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

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

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

.justify-center {
  -webkit-box-pack: center;
  justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.flex-1 {
  -webkit-box-flex: 1;
  flex: 1 1 0%;
}

.flex-grow {
  -webkit-box-flex: 1;
  flex-grow: 1;
}

.text-11 {
  font-size: 0.9rem;
}

.text-20 {
  font-size: 2rem;
}

.mt-8 {
  margin-top: 0.8rem;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.-mb-24 {
  margin-bottom: -2.4rem;
}

.max-w-512 {
  max-width: 51.2rem;
}

.overflow-hidden {
  overflow: hidden;
}

.p-0 {
  padding: 0;
}

.p-5 {
  padding: 1.25rem;
}

.p-16 {
  padding: 1.6rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-8 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.px-12 {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.py-16 {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.pl-8 {
  padding-left: 0.8rem;
}

.pl-24 {
  padding-left: 2.4rem;
}

.pl-40 {
  padding-left: 4rem;
}

.pl-56 {
  padding-left: 5.6rem;
}

.pl-72 {
  padding-left: 7.2rem;
}

.pl-80 {
  padding-left: 8rem;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.resize {
  resize: both;
}

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

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.visible {
  visibility: visible;
}

.whitespace-no-wrap {
  white-space: nowrap;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.w-full {
  width: 100%;
}

.transform {
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  -webkit-transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.transition {
  -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity,
    box-shadow, -webkit-transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow,
    -webkit-transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow,
    transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow,
    transform, -webkit-transform;
}

.ease-out {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

@media (min-width: 600px) {
  .sm\:p-5 {
    padding: 1.25rem;
  }

  .sm\:p-24 {
    padding: 2.4rem;
  }

  .sm\:px-8 {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .sm\:pr-8 {
    padding-right: 0.8rem;
  }
}

.whiteText-border {
  border-color: var(--mainText) !important;
}

.br-6 {
  border-radius: 6px;
}

.mt-4 {
  margin-top: 0.4rem !important;
}

.mr-4 {
  margin-right: 0.4rem !important;
}

.label-width {
  width: auto;
  max-width: 100%;
}

.totem-list-containter {
  display: block;
  justify-content: unset;
}

.totem-list {
  width: initial;
}

@media (min-width: 1700px) {
  .totem-list {
    width: 50%;
  }

  .totem-list-containter {
    display: flex;
    justify-content: center;
  }
}

.rag-blue {
  color: rgba(148, 44, 30, 0);
  background-color: rgba(148, 44, 30, 0.54);
}

.rag-amber {
  color: rgba(212, 9, 9, 0);
  background-color: rgba(212, 9, 9, 0.74);
}

.rag-member {
  color: red;
  font-weight: bold;
}

.rag-blue-whiteText {
  color: var(--mainText) !important;
  background-color: rgba(148, 44, 30, 0.54);
}

.sigCanvas {
  /* height: 100vh;  */
  width: 100%;
  display: block;
}

.annotationsPadding {
  padding-left: 10px;
}

@media (max-width: 959px) {
  .annotationsPadding {
    padding-left: 0px;
  }
}

.secondFieldPadding {
  padding-left: 15px;
}

@media (max-width: 599px) {
  .secondFieldPadding {
    padding-left: 0px;
  }
}

.tabTextSize {
  font-size: 18px;
}

@media (max-width: 599px) {
  .tabTextSize {
    font-size: 14px;
  }
}

.tabContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 35px;
  cursor: pointer;
}

.pageMenuContainer {
  width: 100%;
  /*sacar para que baje a nueva linea recien cuando no entre por el titulo*/
  display: flex;
  align-items: center;
  overflow-x: auto;
}

.pageMenuContainer::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.div-percent-value {
  padding-left: 4px;
  font-weight: 700;
}

.div-percent-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.div-percent-bar-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 100%;
}

.div-outer-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.firstLetterUpperCase {
  display: block;
}

.firstLetterUpperCase:first-letter {
  text-transform: uppercase;
}

.newsTitleContainer {
  width: 55%;
  position: absolute;
  top: 40px;
  left: 0px;
}

.newsTitle {
  font-size: 36px;
  line-height: 42px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .newsTitleContainer {
    width: 80%;
    left: 25px;
  }

  .newsTitle {
    font-size: 28px;
    line-height: 32px;
    font-weight: 500;
  }
}

@media (max-width: 600px) {
  .newsTitleContainer {
    width: 80%;
    left: 25px;
    max-width: 300px;
  }

  .newsTitle {
    font-size: 22px;
    line-height: 25px;
    font-weight: 500;
  }
}

.negativeText {
  color: var(--negativeText);
}

.node.group>text {
  fill: black;
  font-weight: 500;
}

.node>line {
  stroke: var(--corporate-color);
}

.node.group>rect {
  fill: var(--groupNode);
  stroke-width: 0.5;
  stroke: var(--icons);
}

.edit-photo>img:first-of-type {
  display: none;
}

.edit-tags {
  display: none;
}

audio {
  width: 100%;
}

.node.vacancy rect {
  fill: #ed6262;
}

.node.potential rect {
  fill: #990480;
}

.node.highlight rect {
  fill: #0f9000;
}

.node.vacancy-highlight rect {
  fill: #ed6262;
  stroke-width: 5;
  stroke: #0f9000;
}

.node.competenceGroup rect {
  fill: #6b1de9;
}

.node.evaluationGroup rect {
  fill: #01c57a;
}

.node.vacancy-highlight>g>rect {
  stroke-width: 0;
}

.boc-light {
  background-color: transparent !important;
}

.node.Cliente line,
.node.Gerencia line,
.node.Departamento line,
.node.Seccion line {
  stroke: #aeaeae;
  stroke-width: 1;
}

.node.Gerencia rect {
  fill: #ff0000;
}

.node.Departamento rect {
  fill: #f57c00;
}

.node.Seccion rect {
  fill: #00771a;
}

.node.Cliente rect {
  fill: #0300b6;
}

.vertical-timeline::before {
  width: 2px !important;
}

.vertical-timeline-element-icon {
  width: 26px !important;
  height: 26px !important;
  margin-left: 6.5px !important;
  box-shadow: none;
}

@media (min-width: 1170px) {
  .vertical-timeline-element-icon {
    width: 26px !important;
    height: 26px !important;
    margin-left: -13px !important;
  }
}

.vertical-timeline-element-date {
  color: var(--mainText);
  padding: 0;
}

.dashboardConcepts {
  color: white !important;
}

.dashboardConcepts:hover {
  color: white !important;
}

.dx-toolbar-items-container {
  background-color: var(--mainBackgroundColor);
}

body>div.dx-dialog.dx-overlay.dx-popup.dx-widget.dx-visibility-change-handler>div>div>div.dx-toolbar.dx-widget.dx-visibility-change-handler.dx-collection.dx-popup-bottom.dx-dialog-buttons>div {
  background-color: var(--modalBackgroundColor);
}

.quill {
  height: 400px;
  width: 100%;
  position: relative;
  top: -30px;
}

.ql-snow {
  background-color: #fafafa;
}

.react-tel-input .country-list {
  background-color: var(--react-tel-country-list-color);
  color: var(--mainText);
}

.react-tel-input .country-list .country.highlight,
.react-tel-input .country-list .country:hover {
  background-color: var(--react-tel-highlight-color);
}

.react-tel-input .country-list .country .dial-code {
  color: var(--react-tel-dial-code-color);
}

.react-tel-input .selected-flag .arrow.up {
  border-bottom: 4px solid var(--react-tel-arrow-color);
}

.react-tel-input .selected-flag .arrow {
  border-top: 4px solid var(--react-tel-arrow-color);
}

.color1 {
  background-color: #cccccc;
  color: black;
}

.color2 {
  background-color: #ffff00;
  color: black;
}

.color3 {
  background-color: #ffc000;
  color: black;
}

.color4 {
  background-color: #ffe699;
  color: black;
}

.color45 {
  background-color: rgb(205, 219, 172);
  color: black;
}

.color5 {
  background-color: #ddebf7;
  color: black;
}

.color6 {
  background-color: #9bc2e6;
  color: black;
}

.color7 {
  background-color: #c6e0b4;
  color: black;
}

.color8 {
  background-color: #a9d08e;
  color: black;
}

.color9 {
  background-color: #bfbfbf;
  color: black;
}

.color10 {
  background-color: #5b9bd5;
  color: black;
}

.color11 {
  background-color: #aeaaaa;
  color: black;
}

.color12 {
  background-color: #b864de;
  color: black;
}

.color13 {
  background-color: #1be55e;
  color: black;
}

.color14 {
  background-color: #ffff00;
  color: black;
}

.node.process-name rect {
  fill: #050095;
}

.node.process-concept-family rect {
  fill: #950000;
}

.node.process-sub-concept-family rect {
  fill: #510095;
}

.node.selected rect {
  fill: #00957c;
}

.menuSearchContainer {
  width: 75%;
  padding: 5px;
  padding-bottom: 0px;
  margin-left: 10px;
  margin-bottom: 5px;
}

.screenSelectorCounter {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: grey;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenSelectorButton {
  border: 1px solid var(--screenSelectorButtonBorder);
  background-color: var(--screenSelectorBackgroundColor);
  color: var(--mainText);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

/* my desktop */
.myDesktopShadow {
  box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
  -webkit-box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
  -moz-box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}

.myDesktopHeader {
  background: var(--secondaryBackgroundColor);
  border-radius: 14px;
  min-height: 124px;
  padding: 20px;
}

.easyAccessItem:hover {
  transform: scale(1.06);
  transition: transform 250ms;
}

.myDesktopEmployeeName {
  font-size: 20px;
}

.myDesktopManagerName {
  font-size: 16px;
  font-weight: 700;
}

.myDesktopClockText {
  font-size: 18px;
  font-weight: 500;
}

.myDesktopClockTextAlt {
  font-weight: 300;
  padding-right: 10px;
}

.myDesktopUserDataContainer {
  display: flex;
  flex-direction: column;
}

.myDesktopUserDataTextContainer {
  display: flex;
  justify-Content: space-between;
  flex-direction: column;
  padding-top: 20px;
}

.myDesktopUserDataContainerPhoto {
  margin: 0 auto;
}

@media (min-width: 600px) {
  .myDesktopUserDataContainer {
    flex-direction: row;
  }

  .myDesktopUserDataTextContainer {
    padding-top: 0px;
  }

  .myDesktopUserDataContainerPhoto {
    margin: 0px;
  }
}


.myDesktopLikeContainer {
  background: #e5e5e5;
  border-radius: 39px;
  width: 75px;
  height: 35px;
  position: absolute;
  top: 75px;
  left: 55px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.myDesktopTimeTitle {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 30px;
}

.myDesktopTimeData {
  font-size: 16px;
  font-weight: 500;
}

.myDesktopHeaderAssistanceContainer {
  padding-top: 20px;

}

@media (min-width: 960px) {
  .myDesktopHeaderAssistanceContainer {
    padding-top: 0px;
  }
}

@media (max-width: 599px) {
  .myDesktopHeaderAssistanceContainer {
    padding-top: 0px;
  }
}

.fc-daygrid-day.fc-day-today {
  background-color: #D5000040 !important;
  /* el HOY del calendario */
}

.node.Pais line,
.node.Region line,
.node.Provincia line,
.node.Comuna line {
  stroke: #aeaeae;
  stroke-width: 1;
}

.node.Region rect {
  fill: #ff0000;
}

.node.Provincia rect {
  fill: #f57c00;
}

.node.Comuna rect {
  fill: #00771a;
}

.node.Pais rect {
  fill: #0300b6;
}

.employee-shifts-day {
  font-size: 14px;
  font-weight: 600;
  opacity: .6;
}

.employee-shifts-popup .mbsc-popup .mbsc-popup-header {
  padding-top: 8px;
  padding-bottom: 8px;
}

.employee-shifts-cont {
  position: relative;
  padding-left: 42px;
  max-height: 40px;
}

.employee-shifts-avatar {
  position: absolute;
  max-height: 40px;
  max-width: 40px;
  top: 18px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 20px;
}

.employee-shifts-name {
  font-size: 12px;
}

.employee-shifts-title {
  font-size: 12px;
}

.md-employee-shifts {
  border-radius: 8px;
  border: 1px solid var(--loginIcon);
}

.md-employee-shifts .mbsc-timeline-resource,
.md-employee-shifts .mbsc-timeline-resource-col {
  width: 200px;
  align-items: center;
  display: flex;
}

.md-employee-shifts .mbsc-schedule-event {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.mbsc-popup-button-primary {
  color: black !important;
}

.mbsc-popup-button {
  color: black !important;
}

.mbsc-schedule-event-inner {
  color: white !important;
}

.mbsc-calendar-label-inner {
  color: white !important;
}

.easyAccessCounter {
  position: absolute;
  right: 6px;
  top: 6px;
  background-color: var(--svgColor);
  border-radius: 50%;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node.management rect {
  fill: #640000;
}

.node.workplace rect {
  fill: #000574;
}

.node.management-workplace rect {
  fill: #640000;
  stroke-width: 3;
  stroke: #000574;
}

.node.management-workplace>g>rect {
  stroke-width: 0;
}

.public-DraftEditor-content {
  max-height: 265px;
  overflow: auto;
}

.firstLetterUppercase::first-letter {
  text-transform: uppercase;
}

.grid-3-3,
.ninebox-high-performance {
  background-color: var(--nineBoxGreat);
}

.grid-2-3,
.grid-3-2 {
  background-color: var(--nineBoxGood);
}

.grid-1-3,
.grid-2-2,
.grid-3-1 {
  background-color: var(--nineBoxMid);
}

.grid-1-2,
.grid-2-1,
.ninebox-medium-performance {
  background-color: var(--nineBoxBad);
}

.grid-1-1,
.ninebox-low-performance {
  background-color: var(--nineBoxWorst);
}