/* General */
:root {
  --primary: #1e41b8;
  --light: #ffffff;
  --grey: #f2f2f2;
  --blue: #001634;
  --secondary: #618cc5;
  --selection: #4763c5;
  --third: #002b64;
  --secondGrey: #6c757d;
  --black: #212529;
  --green: rgba(0, 200, 81, 0.68);
  --bs-warning: rgba(255, 187, 51, 0.68);
  --bs-danger: #ca5268;
  --success: #52da89;
}

.spinner {
  display: block;
  position: relative;
  width: 36px;
  height: 6px;
  left: -24%;
}
.spinner div {
  transform-origin: 40px 40px;
  animation: spinner 1.2s linear infinite;
}
.spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #1e41b8;
}
.spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes move {
  from {transform: translateX(-50%) translateY(-100%);}
  to {transform: translateX(-50%) translateY(0);}
}

.size-spinner {
  transform: scale(0.4);
}

.loader {
  margin-right: 8px;
  width: 36px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
}

.selectableArea {
  -webkit-user-select: none; /* Chrome / Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE 10+ */
  user-select: none; /* Default */
}

.selection-area {
  background: rgba(46, 115, 252, 0.11);
  border: 2px solid rgba(98, 155, 255, 0.81);
  border-radius: 0.1em;
}

.itemSelected {
  filter: contrast(0.5);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236C757D' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}

.estado {
  width: 92px;
  height: 36px;
  border-radius: 2px;
}

.mini_estado {
  width: 100%;
  height: 32px;
  border-radius: 4px;
  margin-right: 8px;
}

.bg-danger {
  cursor: default;
  background-color: var(--bs-danger) !important;
}

.bg-warning {
  cursor: default;
  background-color: var(--bs-warning) !important;
}

.bg-success {
  cursor: default;
  background-color: var(--success) !important;
}

.skeleton-img {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: var(--grey) !important;
  color: transparent;
}
.skeleton-img::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer 1s infinite;
  content: "";
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
.transition {
  background-color: var(--dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: 0.5s ease-out;
}

.transition.active {
  transition: 0.5s ease-out;
  pointer-events: all;
  transform: translateY(0px);
  opacity: 1;
}

/* main.transition {
    transition: 500ms ease-out;
    opacity: 0;
    transform: translateY(40px);
} */

html {
  height: 100%;
}

body {
  font-family: "Roboto", serif;
  font-weight: 300;
  color: var(--blue);
  background-color: var(--grey);
  font-size: 18px;
  height: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  color: var(--blue);
}

.max-body {
  height: fit-content;
}

/* Let's get this party started */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.2);
}

div {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+, Edge */
}
/* Chrome, Safari, Opera */
div::-webkit-scrollbar-track {
  transition: transform 200ms ease-in-out;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: transparent;
}
div::-webkit-scrollbar {
  transition: transform 200ms ease-in-out;
  width: 0px !important;
  background-color: transparent;
}
div::-webkit-scrollbar-thumb {
  transition: transform 200ms ease-in-out;
  background-color: transparent;
}

div.scrolling {
  transition: transform 200ms ease-in-out;
  scrollbar-width: thin; /* Firefox */
  -ms-overflow-style: none; /* IE 10+, Edge */
}
/* Chrome, Safari, Opera */
div.scrolling::-webkit-scrollbar-track {
  transition: transform 200ms ease-in-out;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: transparent;
}
div.scrolling::-webkit-scrollbar {
  transition: transform 200ms ease-in-out;
  width: 3px !important;
  background-color: transparent;
}
div.scrolling::-webkit-scrollbar-thumb {
  transition: transform 200ms ease-in-out;
  background-color: transparent;
}

.space {
  margin-top: 30px;
}

.space-ov {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-anchor: inherit;
  margin-top: 30px;
  height: 88vh;
}

.space-ov-play {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-anchor: inherit;
  margin-top: 30px;
  height: 90vh;
}

.space-ov-div {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-anchor: inherit;
  margin-top: 30px;
  height: 70vh;
}

.space-ov-aud {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-anchor: inherit;
  height: 72vh;
}

.tooltip-psw {
  transform-origin: left top;
  /* transition: transform 300ms ease-in-out; */
  transform: scale(0);
}

.tooltip-psw.active {
  transition: transform 300ms ease-in-out;
  transform: scale(1);
}

.list-item {
  list-style-image: url("/static/jomar_platform/img/list-circle.svg");
  padding-inline-start: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 14px;
  letter-spacing: 0.004em;
}

.unchecked {
  transform: scale(0);
  transform-origin: center;
}

.isChecked {
  transform: scale(1);
  transition: 100ms;
}

.selectInactive {
  transform: scale(0);
  transform-origin: center left;
  transition: 200ms;
}

.selectActive {
  transform: scale(0.75);
  transition: transform 200ms ease-in-out;
}

.select-play {
  font-size: 14px;
  color: var(--secondGrey);
  background-color: transparent;
  border: none;
}

.bg-gray {
  background-color: var(--grey) !important;
}

.fc-primary {
  color: var(--primary);
}

.mar-3 {
  margin-left: 3px;
}

.space-sm {
  margin-top: 10px;
}

hr {
  margin: 0;
}

.hr-bread {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 24px;
  margin-right: 24px;
}

a {
  text-decoration: none;
  color: var(--primary);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
  display: none;
}

.img-thumb-square {
  border-radius: 2px;
  object-fit: cover;
  overflow: hidden;
  height: 100px;
  width: 100px;
}

.skeleton-img-thumb {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 190px !important;
  width: 190px !important;
  background-color: var(--grey) !important;
  color: transparent;
}
.skeleton-img-thumb::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.2) 20%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer 1s infinite;
  content: "";
}

.img-thumbnail {
  border-radius: 0px;
  object-fit: cover;
  overflow: hidden;
  height: 190px;
  width: 190px;
  max-width: 190px;
  padding: 0rem;
  background-color: var(--grey);
  border: none;
}

.mini-gallery {
  height: 147px;
  width: 147px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.me--1 {
  margin-right: -1rem;
}

.ms-content {
  margin-left: -1.5rem;
}

.me-6 {
  margin-right: 4rem !important;
}

.ms-6 {
  margin-left: 4rem !important;
}

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

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

.p-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.p-24 {
  padding: 24px;
}

.f-18 {
  font-size: 12px;
}

.f-14 {
  font-size: 14px;
}

.f-12 {
  font-size: 12px;
  margin: 0;
}

.f-invisible {
  color: transparent !important;
}

.f-grey {
  color: var(--secondGrey) !important;
}

.mtitle {
  margin-top: 3vh;
  margin-bottom: 5vh;
}

.mx-24 {
  margin-left: 24px;
  margin-right: 24px;
}

.mp-24 {
  margin: 3vh 64px;
}

.ms-24 {
  margin-left: 24px;
}

.me-32 {
  margin-right: 32px;
}

.pe-60 {
  padding-right: 60px;
}

.my-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-26 {
  margin-bottom: 26px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-24 {
  margin-bottom: 24px;
}

.pt-30 {
  padding-top: 30px;
}

.mBread {
  margin-bottom: 4px;
}

.form-control {
  border: none;
  border-radius: 0px;
}

.form-control.log {
  width: 154px;
}

.form-control.menu {
  width: 285px;
  border: none;
  border-radius: 0px;
}

.form-control.only {
  width: 100%;
  border: none;
  border-radius: 0px;
}

.form-control:hover {
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

.form-select:focus {
  box-shadow: none;
}

.form-select:hover {
  box-shadow: none;
}

.form-select {
  padding-left: 0px;
}
/* Buttons */

.btn-primary {
  background-color: var(--primary) !important;
  color: var(--grey) !important;
  border-radius: 2px;
  font-size: 14px;
  font-style: normal;
  font-weight: 550;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.025em;
  height: 36px;
}

.btn-primary-icon {
  background-color: var(--primary) !important;
  color: var(--grey) !important;
  border-radius: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: bolder;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  height: 24px;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.btn-primary-icon.show {
  display: flex;
}

.btn-secondary {
  background-color: transparent !important;
  color: var(--primary) !important;
  border-radius: 2px;
  border-color: var(--primary) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 550;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.025em;
  height: 36px;
}

.btn-danger {
  background-color: transparent !important;
  color: var(--bs-danger) !important;
  border-radius: 2px;
  border-color: var(--bs-danger) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 550;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.025em;
  height: 36px;
}

.btn-mult {
  background-color: var(--grey);
  color: var(--blue);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.025em;
  height: 36px;
}

.btn-mult.active {
  background-color: rgba(0, 0, 0, 0.08);
}

.btn-mult:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.btn-audio {
  width: 118px;
}

.btn-cont {
  width: 138px;
}

#btn-icon {
  font-size: 1.5rem;
}

.btn.suc {
  padding: 0.375rem 0rem;
}

.btn-select {
  border-color: var(--secondGrey) !important;
  border: 1px solid;
  border-radius: 2px;
  font-family: "Roboto", serif;
  font-size: 16px;
  line-height: 21px;
  color: var(--secondGrey);
}

.btn-table {
  border: none;
  border-width: 0px;
  border-style: none;
  font-family: "Roboto", serif;
  font-size: 14px;
  line-height: 21px;
  color: var(--black);
  background-color: white;
}

.btn-erase {
  position: absolute;
  color: white;
}

.contextBtn {
  position: absolute;
  display: none;
}

.button-login {
  width: 100px;
  border-radius: 2px;
  bottom: -20%;
}

.btn-add-suc {
  width: 159px;
}

.btn-add-tag {
  width: 107px;
}

.btn-add-agen {
  width: 137px;
  margin-top: 6px;
}

.btn-chs-suc {
  width: 171px;
}

.btn-save {
  width: 102px;
  margin-top: 6vh;
}

.btn-saved {
  width: 102px;
  margin-top: 40px;
  margin-bottom: 24px;
  margin-right: 24px;
}

.btn-apply {
  width: 112px;
  margin-top: 40px;
  margin-bottom: 24px;
  margin-right: 24px;
}

.btn-create {
  width: 77px;
  margin-top: 40px;
  margin-bottom: 24px;
  margin-right: 24px;
}

.btn-filt {
  width: 112px;
  margin-top: 24px;
  margin-left: 24px;
  margin-bottom: 24px;
}

.btn-add-cont {
  width: 176px;
  margin: 24px;
}

.btn-clean {
  width: 98px;
  margin: 24px;
}

.btn-delete {
  width: 87px;
  margin-right: 24px;
  margin-bottom: 24px;
  margin-top: 40px;
}

.btn-close {
  color: #ffffff !important;
  opacity: 1;
}

.btn-close.sm {
  width: 30px;
  height: 30px;
  opacity: 0.5;
}

.close-sm {
  font-size: 10.5px;
}

.point:hover {
  cursor: pointer;
  color: var(--secondGrey);
  transition: 500ms;
}

.touch-trgt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}

/* Titles */

.title-img {
  font-size: 16px;
  margin-left: 24px;
  margin-bottom: 24px;
  margin-right: 24px;
  line-height: 19px;
}

.title-dark {
  font-size: 16px;
  color: var(--black);
  line-height: 19px;
  font-weight: 500;
}

.title-dark-big {
  font-size: 24px;
  color: var(--black);
  line-height: 28px;
  font-weight: 500;
}

.subtitle-blue {
  font-size: 14px;
  color: var(--blue);
  line-height: 16px;
  font-weight: 600;
}

.primary-title {
  font-size: 18px;
  color: var(--primary);
  line-height: 21px;
}

.danger-title {
  font-size: 18px;
  color: var(--bs-danger);
  line-height: 21px;
  font-weight: 500;
}

.grey-title {
  font-size: 18px;
  color: var(--secondGrey);
  line-height: 21px;
  font-weight: 500;
  margin: 0;
}

.primary-subtitle {
  font-size: 14px;
  color: var(--primary);
  line-height: 16px;
}

.subtitle {
  font-size: 12px;
  color: var(--secondGrey);
  letter-spacing: 0.004em;
}

.subtitle-14 {
  font-size: 14px;
  color: var(--secondGrey);
  letter-spacing: 0.004rem;
  margin: 0;
}

.subtitle-16 {
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.004rem;
  margin: 0;
}

.sub-info {
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.004em;
  margin-bottom: 16px;
}

.pages {
  height: 21px;
}

.subtitle-page {
  font-size: 14px;
  line-height: 16px;
  color: var(--secondGrey);
  letter-spacing: 0.004em;
}

.subtitle-pages {
  font-size: 14px;
  color: var(--secondGrey);
  letter-spacing: 0.004em;
  margin-top: 1px;
}

a.subtitle-page {
  font-size: 14px;
  color: var(--secondGrey);
  letter-spacing: 0.004em;
}

a.subtitle-page:hover {
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.004em;
}

a.title-sub {
  font-size: 18px;
  color: var(--secondGrey);
  letter-spacing: 0.004em;
}

a.title-sub:hover {
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 0.004em;
}

/* Borders */

.border-dark {
  border-color: var(--blue) !important;
}

.border-primary {
  border-color: var(--primary) !important;
  border: 1px solid;
  border-radius: 1px;
  padding: 5px;
  font-family: "Roboto", serif;
  font-size: 14px;
  line-height: 21px;
  color: var(--primary);
}

.border-grey {
  border-color: var(--secondGrey) !important;
  border: 1px solid;
  border-radius: 2px;
  padding: 5px;
  font-family: "Roboto", serif;
  font-size: 14px;
  line-height: 21px;
  color: var(--secondGrey);
  padding-left: 16px;
  padding-right: 30px;
}

.pad-table {
  padding: 2.5rem !important;
}

.select-table:focus {
  box-shadow: none !important;
}

.border-primary-search {
  border-color: var(--primary) !important;
  border: 1px solid;
  border-radius: 4px;
  font-family: "Roboto", serif;
  font-size: 14px;
  line-height: 21px;
  color: var(--primary);
  width: 263px;
  height: 36px;
  padding-left: 16px !important;
  margin-top: 6px;
}

.border-primary-search-lg {
  border-color: var(--primary) !important;
  border: 1px solid;
  border-radius: 4px;
  padding: 6px;
  font-family: "Roboto", serif;
  font-size: 18px;
  line-height: 24px;
  color: var(--primary);
  width: 263px;
  height: 49px;
  padding-left: 16px !important;
}

@-moz-document url-prefix() {
  .border-primary-search-lg {
    border-color: var(--primary) !important;
    border: 1px solid;
    border-radius: 4px;
    padding: 6px;
    font-family: "Roboto", serif;
    font-size: 18px;
    line-height: 24px;
    color: var(--primary);
    width: 263px;
    height: 49px;
    padding-left: 16px !important;
    padding-top: 11px !important;
    padding-bottom: 10px;
  }

  .border-primary-search {
    border-color: var(--primary) !important;
    border: 1px solid;
    border-radius: 4px;
    font-family: "Roboto", serif;
    font-size: 14px;
    line-height: 21px;
    color: var(--primary);
    width: 263px;
    height: 36px;
    padding-left: 16px !important;
    padding-top: 11px !important;
    padding-bottom: 6px;
    margin-top: 6px;
  }

  .searchbar-moz {
    padding-top: 6px !important;
  }

  .input_dates_moz {
    padding: 10px 16px !important;
  }
}

.border-primary-search::placeholder {
  font-family: "Roboto", serif;
  font-size: 14px;
  line-height: 21px;
  color: var(--secondGrey);
  display: flex;
  align-items: center;
}

.border-primary-search-lg::placeholder {
  font-family: "Roboto", serif;
  font-size: 18px;
  line-height: 24px;
  color: var(--secondGrey);
}

.logo {
  transition: 100ms ease-in-out;
  padding: 5% 0%;
  justify-content: center;
  align-items: center;
}

/* Login */
@media only screen and (max-height: 800px) {
  .logo {
    padding: 4% 0%;
  }
}
@media only screen and (max-height: 720px) {
  .logo {
    padding: 3% 0%;
  }
}
@media only screen and (max-height: 680px) {
  .logo {
    padding: 2% 0%;
  }
}
@media only screen and (max-height: 640px) {
  .logo {
    padding: 1% 0%;
  }
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.centered-pass {
  display: flex;
  justify-content: center;
  align-items: center;
}

.passInput {
  height: 40px;
}

.sizediv {
  background-color: white;
  width: 460px;
  height: 470px;
  padding: 40px;
}

.recover {
  background-color: white;
  width: 541px;
  height: 285px;
  margin-top: 52px;
  padding: 48px;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
}

.navbar-heigth {
  height: 58px;
}

.text-blue {
  color: var(--primary);
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 11px;
}

.fgt-pass p {
  margin-top: 40px;
  margin-bottom: 27px;
}

.fgt-pass a {
  text-decoration: underline;
}

.form-floating label {
  font-size: 14px;
  padding: 1rem 0rem;
}

.form-floating .form-control {
  padding: 0.375rem 0rem;
}

.form-floating .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0rem;
  padding-right: 0rem;
}

.opac-36 {
  opacity: 0.36;
}

.m-24 {
  margin: 24px;
}

input {
  outline: none;
  background: none;
  border: none;
  border-bottom: 1px solid #031633 !important;
}

input.is-invalid {
  border-bottom: 1px solid var(--bs-danger) !important;
}

input::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #031633;
  opacity: 1;
}

.input-f {
  padding-top: 12px;
  padding-bottom: 12px;
}

.bx-shadow {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.playTitle {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  align-items: center;
}

.title {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  color: #031633;
}

.icon-blue {
  font-size: 30px;
  height: 30px;
  margin-top: 20px;
  margin-right: 20px;
}

.icon-blue i.body {
  color: var(--primary);
}

.close-mod {
  margin-top: 12px;
  margin-bottom: 12px;
}

.close-mod i.body {
  color: var(--secondGrey);
  font-size: 28px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.icon-blue-f {
  font-size: 30px;
  height: 30px;
  margin-right: 15px;
  margin-top: 30px;
  margin-left: 5px;
}

.icon-blue-f i.body {
  color: var(--primary);
}

.flip-90 {
  transform: rotate(90deg);
}

.body-14 {
  font-size: 14px !important;
  color: #031633;
}

.body-16 {
  font-size: 16px !important;
  color: #031633;
}

.icon-20 {
  font-size: 20px;
}

.icon-18 {
  font-size: 18px;
}

.icon-26 {
  font-size: 26px;
}

.icon-55 {
  font-size: 55px;
}

.icon-32 i.body {
  font-size: 32px;
}

.fold-icon {
  margin-top: 18px;
}

.checkbox {
  width: 24px;
  height: 24px;
}

.icon-sidebar {
  font-size: 26px;
}

.icon-24 {
  font-size: 24px;
}

/* Dashboard */

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-third {
  background-color: var(--third) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.bg-black-tag {
  background-color: var(--black) !important;
  border-radius: 2px;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.rounded-1 {
  height: 36px;
  width: 92px;
}

.bg-body {
  height: 52px;
  padding: 6px 16px;
}

.pb-100 {
  height: 100vh;
}

.col-1-5 {
  width: 215px;
}

.text-v-c {
  vertical-align: middle;
  margin-left: 10px;
  font-size: 18px;
}

.ov-auto {
  overflow: auto;
}

.nav-link.active {
  background-color: var(--selection) !important;
}

.nav-link.hovdec:hover {
  background-color: var(--selection) !important;
}

#table {
  font-size: 14px;
}

#tagsBox {
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
}

.dropdown-menu.menu {
  padding-top: 0;
  padding-bottom: 0;
}

.dropdown-header {
  color: var(--blue);
}

.mult-drop .dropdown-item {
  padding: 0.5rem 1rem;
  align-items: center;
}

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

.dropdown-item i.body {
  font-size: 20px;
}

.modal-xsm {
  max-width: 200px;
}

.modal-m {
  width: 450px;
}

.modal-sm {
  width: 353px;
}

.modal-suc {
  width: 414px;
}

.maxh-modal {
  max-height: 50vh;
}

.drop-mod {
  width: 330px;
  padding-left: 10px;
  padding-right: 10px;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
}

.caption {
  align-content: center;
  color: var(--secondGrey);
  font-size: 14px;
  margin-top: 3px;
  margin-bottom: 0rem;
}

.card {
  height: 245px;
}

.card-top {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  height: 189px;
}

.card-icon-top {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  height: 189px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-body {
  align-items: center;
  height: 56px;
}

.card-img-top {
  object-fit: cover;
  overflow: hidden;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  max-width: 100%;
  height: 189px;
}

.search-18::placeholder {
  font-size: 18px !important;
}

.screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.screen-play {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

.advice {
  width: 520px;
  height: 100px;
  background-color: rgba(108, 117, 125, 0.16);
  position: absolute;
  border-radius: 4px;
  align-items: center;
}

.advice p {
  margin: 0;
  font-size: 16px;
  color: var(--secondGrey);
}

.advice i.body {
  color: var(--secondGrey);
}

/* Agenda */
.no_margin_left {
  margin-left: 0 !important;
}

.different_width {
  width: 80%;
}

.no_suc_sel {
  position: absolute;
  right: 0;
  top: 68px;
}

.color_no_disabled {
  background-color: transparent;
}

#datepicker_final::placeholder {
  color: var(--secondGrey);
  opacity: 1; /* Firefox */
}

#datepicker_final:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--secondGrey);
}

#datepicker_final::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--secondGrey);
}
.col-2 {
  width: 19%;
}

.aTableAgenda {
  height: 140px;
}

.positionToCenterIcon {
  position: relative;
  align-items: center;
  display: flex;
  width: 33%;
}

.changeOpacity {
  filter: contrast(0.5);
}

.icon_center {
  top: 50%;
  left: 50%;
  font-size: 40px !important;
  position: absolute;
  transform: translate(-295%, -50%);
  color: #f2f2f2;
}

/* input[type=date]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}
input[type=date]::-webkit-calendar-picker-indicator {
    -webkit-appearance: none;
    display: none;
} */

.div_nombre {
  width: 50%;
  margin-left: 20px;
}

.text-primary {
  color: var(--primary) !important;
  font-size: 14px;
}

.w-max {
  width: max-content;
  height: 32px;
  font-size: 16px;
  align-items: center;
}

.menu-suc {
  height: 36px;
  margin-top: 6px;
}

.text_regresar {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.0125em;
  color: #6c757d;
}

.text_regresar:hover {
  color: #6c757d;
}

option[data-suc-filter="false"] {
  display: none;
}
option[data-terr-filter="false"] {
  display: none;
}
option[data-zona-filter="false"] {
  display: none;
}
option[data-agenda-filter="false"] {
  display: none;
}

div[data-select="on"] {
  background-color: rgba(108, 117, 125, 0.16) !important;
  color: var(--secondGrey);
}

div[data-select-fold="on"] {
  background-color: rgba(108, 117, 125, 0.16) !important;
  color: var(--secondGrey);
}

[list]::-webkit-calendar-picker-indicator {
  display: none !important;
}

.arrowFilter {
  transform: rotate(270deg);
  height: 15px;
  width: 15px;
  transition: 500ms;
}

.arrowFilter.active {
  transform: rotate(90deg);
  height: 15px;
  width: 15px;
  transition: 500ms;
}

.arrowFilterSuc {
  transform: rotate(0deg);
  height: 24px;
  width: 24px;
  margin-left: 12px;
  transition: 500ms;
}

.arrowFilterSuc.active {
  transform: rotate(180deg);
  transition: 500ms;
}

.div_music {
  width: 100%;
  height: 140px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text_void_music {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  align-items: center;
  color: #6c757d;
  margin-left: 24px;
}

.text_instruccion_contenido {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  margin-top: 40px;
  color: #6c757d;
}

.div_content {
  width: 79%;
  height: 100%;
  left: 370px;
  top: 552px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.change_margin {
  margin: 0;
}

.different_size {
  width: 100%;
  height: 140px;
}

.div_void_content {
  align-items: center;
  display: flex;
}

.text_void_content {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  align-items: center;
  color: #6c757d;
  margin-left: 24px;
}

.label_agenda {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  letter-spacing: 0.0015em;
  color: #6c757d;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 16px 0px;
}

.input_dates {
  width: 215px;
  height: 36px;
  border: 1px solid #6c757d !important;
  box-sizing: border-box;
  border-radius: 2px;
  color: #6c757d;
  padding: 5px 16px;
}

.no_border {
  width: 135px;
  border: none !important;
  margin-top: 5px;
}

::-webkit-calendar-picker-indicator {
  filter: invert(50%);
}

.input_dates::placeholder {
  font-size: 16px;
}

.input_content_init::placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  letter-spacing: 0.0015em;
  color: #6c757d;
}

.input_content_init:disabled {
  background-color: transparent !important;
}

.input_content_fin::placeholder {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  letter-spacing: 0.0015em;
  color: #6c757d;
}

.input_content_fin:disabled {
  background-color: transparent !important;
}

.opacity_class {
  opacity: 0.5;
}

/* .form-select:disabled {
  background-color: transparent;
} */

.form-select.filter:disabled {
  background-color: var(--grey);
  filter: contrast(0.5);
}

.aTableAgenda .picker {
  left: 0;
  top: 30%;
  display: flex;
  justify-content: center;
}

.change_color_btn_calendar {
  font-weight: 500;
  color: #6c757d !important;
  border-color: #6c757d !important;
}

.btn-check-agenda {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.prioridad_agenda {
  width: 83%;
  padding-right: 0;
}

.name_agenda {
  margin-top: -24px;
  width: 218px;
}

.prioridad_label {
  position: absolute;
  margin-top: -12px;
  margin-left: 935px;
}

.audio_label {
  position: absolute;
  margin-top: -12px;
  margin-left: 770px;
}

.content_table {
  width: 79%;
  overflow: auto;
  height: 480px;
  padding-right: 0;
}

.controllers {
  width: 20%;
}

.hide {
  display: none;
}

.show {
  display: block;
}

/* Contenido */

.form-select.menu {
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid #031633 !important;
}

.inputText {
  width: 80%;
}

.input-select {
  font-size: 16px;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

.input-form input::placeholder {
  font-size: 16px;
  color: var(--black);
}

#input-file {
  display: none;
}

.gallery {
  max-width: 350px;
  max-height: 250px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
}

.figure-caption {
  background-color: var(--grey);
}

.thumb {
  height: 180px;
  border: 1px solid #000;
}

.px-180 {
  height: 180px;
}

.cont-ov {
  overflow-y: hidden;
  overflow-x: hidden;
  max-height: 90vh;
}

.aTable {
  height: 100px;
}

.img-row {
  height: 80px;
  /*border: 1px solid #000;*/
}

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

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

.w-90 {
  width: 90%;
}

#preview {
  max-width: 735px;
  height: 450px;
  padding: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0px;
}

.img-delete {
  max-width: 350px;
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
}

.folder {
  background-color: var(--light);
  border-radius: 4px;
  align-items: center;
  height: 114px;
}

.folder p {
  margin: 0;
}

.folder .left {
  width: 30%;
  display: flex;
  justify-content: center;
  margin-left: 7%;
  margin-right: 7%;
}

.folder .right {
  width: 50%;
  margin-right: 6%;
}

.folder .left-image {
  width: 50%;
  filter: contrast(1);
}

.folder .left-image {
  width: 50%;
  filter: contrast(1);
}

.folder .left-back {
  width: 50%;
  height: 100%;
  filter: contrast(1);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  border-radius: 4px 0px 0px 4px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.folder .left-image .img {
  width: 100%;
  height: 114px;
  border-radius: 4px 0px 0px 4px;
  z-index: -1;
  filter: contrast(0.5);
  object-fit: cover;
  overflow: hidden;
}

.folder .left-image .album {
  width: 100%;
  height: 114px;
  border-radius: 4px 0px 0px 4px;
  z-index: -1;
  object-fit: cover;
  overflow: hidden;
}

.folder .left-image .icon {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  z-index: 1;
}

.folder .right-image {
  width: 40%;
  margin-left: 7%;
  margin-right: 3%;
}

.btn-folder-sm {
  background-color: transparent;
  align-items: center;
  height: 56px;
  border: 1px dashed;
  border-color: var(--secondGrey);
  box-sizing: border-box;
}

.btn-folder-sm p {
  margin: 0;
}

.btn-folder-sm .left {
  width: 20%;
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
  margin-left: 5%;
  margin-right: 5%;
}

.btn-folder-sm .right {
  width: 65%;
  margin-right: 5%;
}

.folder-sm {
  background-color: var(--light);
  border-radius: 5px;
  align-items: center;
  height: 56px;
}

.folder-sm p {
  margin: 0;
}

.folder-sm .left {
  width: 20%;
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
  margin-left: 5%;
  margin-right: 5%;
}

.folder-sm .right {
  width: 65%;
  margin-right: 5%;
}

.folder-sm .left i.body {
  color: var(--secondGrey);
  font-size: 24px;
}

.right-menu {
  background-color: var(--light);
  border-radius: 5px;
  width: fit-content;
  transform: scale(0);
  transform-origin: top left;
  position: absolute;
}

.right-menu.active {
  transform: scale(1);
  transition: transform 200ms ease-in-out;
}

#error {
  z-index: 0;
  transform: scale(0);
  transform-origin: 100% 50% 0;
  transition: 500ms ease-out;
}

#error.active {
  z-index: 2500;
  transform: scale(1);
  transform-origin: 100% 50% 0;
  transition: 500ms ease-out;
}

#ok {
  z-index: 0;
  transform: scale(0);
  transform-origin: bottom;
  transition: 500ms ease-out;
}

#ok.active {
  z-index: 2000;
  transform: scale(1);
  transform-origin: bottom;
  transition: 500ms ease-out;
}

.contentInfo {
  background-color: var(--light);
  max-width: 335px;
  max-height: 246px;
  border-radius: 2px;
  width: fit-content;
  transform: scale(0);
  transform-origin: top left;
  position: absolute;
  padding: 12px;
  overflow-x: hidden;
  overflow-y: auto;
}

#contentInfo.active {
  transform: scale(1);
  transition: transform 200ms ease-in-out;
}

.openAr {
  transform: scale(1) rotate(100grad);
  transition: transform 200ms;
}

.closeAr {
  transform: rotate(0grad);
  transition: transform 200ms;
}

.close {
  transform: scale(0);
  position: absolute;
}

.open {
  transform: scale(1);
  transition: transform 200ms ease-in-out;
}

#thumbDel img {
  max-height: 600px;
}

.view {
  border-radius: 5px;
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.view audio {
  border-radius: 100px;
  width: 100%;
}

.view img {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  max-width: 100%;
  height: 50vh;
}

.view video {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  max-width: 100%;
  max-height: 80vh;
}

.hover {
  color: var(--secondGrey);
  cursor: pointer;
  border-radius: 2px;
}

.hover:hover {
  background-color: rgba(108, 117, 125, 0.16) !important;
  color: var(--secondGrey);
}

.selected {
  background-color: var(--secondGrey);
  color: var(--light);
}

.selected:hover {
  background-color: var(--secondGrey);
  color: var(--light);
}

/* CALENDARIO */

.tui-view-8 {
  background-color: var(--grey) !important;
  border: 1px solid rgba(108, 117, 125, 0.16);
}

/* Reset Password */

.center_icon {
  display: flex;
  align-items: center;
}

.div_button {
  width: 100%;
  text-align: end;
}

.btn_reset_pwd {
  margin-top: 40px;
  color: white;
  background: #215aac;
  outline: none;
  border: 1px solid #215aac;
  width: 135px;
  padding: 5px;
  font-size: 14px;
}

.rst-psw-inst {
  height: 407px;
  width: 480px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.25);
}

.circle-psw-email {
  border: 3px solid var(--secondary);
  border-radius: 100%;
  width: 92px;
  height: 92px;
}

.card_form_new_pwd {
  width: 349px;
  height: 342px;
}

.form-floating label {
  padding-bottom: 0;
  display: block;
}

.input_form_pwd {
  width: 100%;
  padding-right: 38px;
}

.icon_form_pwd {
  position: absolute;
  margin-left: -30px;
  color: #6c757d;
  cursor: pointer;
}

.form-control.only::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #6c757d;
  opacity: 1; /* Firefox */
}

.form-control.only:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #6c757d;
}

.form-control.only::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #6c757d;
}

.noOptions {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursor {
  cursor: pointer !important;
}
/*Agenda responsive */

@media (max-width: 1400px) {
  .name_agenda {
    width: 25%;
  }
  .prioridad_agenda {
    width: 75%;
  }
  .prioridad_label {
    margin-left: 696px;
  }
  .audio_label {
    margin-left: 530px;
  }
  .icon_center {
    transform: translate(-235%, -50%);
  }
}

@media (max-width: 1200px) {
  .prioridad_label {
    margin-left: 560px;
  }
  .audio_label {
    margin-left: 395px;
  }
  .controllers {
    width: 25%;
  }
  .content_table {
    width: 75%;
  }
  .icon_center {
    transform: translate(-190%, -50%);
  }
}

@media (max-width: 1000px) {
  .container {
    max-width: 100%;
  }
  .audio_label {
    margin-left: 41.5%;
  }
  .prioridad_label {
    margin-left: 58.5%;
  }
}

.playBox {
  height: 138px;
  max-width: 236px;
  margin-bottom: 28px;
  background-color: white;
  border-radius: 0px 0px 4px 4px;
  padding: 22px 28px;
  align-items: center;
  color: var(--selection);
}

.playBox.active {
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2), 0px 5px 8px rgba(0, 0, 0, 0.14),
    0px 1px 14px rgba(0, 0, 0, 0.12);
  background-color: var(--selection);
  color: var(--light);
}

.rotated {
  animation-name: rotation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.box-active {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: #F2F2F2;
  background: #52DA89;
  border-radius: 4px;
  width: 92px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  cursor: default;
}

.box-conection {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: #F2F2F2;
  background: #FFBB33;
  border-radius: 4px;
  width: 92px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  cursor: default;
}

.box-inactive {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: #F2F2F2;
  background: #B00020;
  border-radius: 4px;
  width: 92px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  cursor: default;
}

.box-active-dev {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #F2F2F2;
  background: #52DA89;
  border-radius: 4px;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  cursor: default;
}

.box-conection-dev {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #F2F2F2;
  background: #FFBB33;
  border-radius: 4px;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  cursor: default;
}

.box-inactive-dev {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #F2F2F2;
  background: #B00020;
  border-radius: 4px;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  cursor: default;
}

.box-ter {
  background: #ffffff;
  padding: 28px 16px;
  border-radius: 0px 0px 4px 4px; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  /* height: 100%; */
  width: 240px !important;
  min-width: 240px;
  /* width: 20%; */
  margin-right: 8px;
  border-radius: 4px;
}

.box-marg {
  margin-bottom: 4px;
  margin-top: 4px;
}

.box-reg {
  background: #ffffff;
  padding: 18px 12px;
  border-radius: 0px 0px 4px 4px; 
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 56px; */
  /* width: 12%; */
  width: 160px !important;
  min-width: 160px;
  margin: 8px 8px 8px 0px;
  border-radius: 4px;
}

.box-dialog {
  width: 92px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 16px;
}

.box-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: var(--selection);
  margin: 0;
  text-align: center;
}

.mt-over {
  overflow-x: hidden;
  overflow-y: auto;
}

.sticky-div {
  position: sticky;
  top: 0px;
  background-color: var(--grey);
  z-index: 100;
}

.grid_bot {
  margin-bottom: 0px;
}

@media only screen and (max-width: 1024px) {
  .logo {
    padding: 44px 0px !important;
  }

  #menu_bar {
    display: none;
  }

  #nav_box {
    background-color: var(--blue) !important;
  }

  .navbar-brand {
    padding-top: 0rem;
    margin-right: 0rem;
  }

  .nav-link {
    padding: 0rem 1rem;
  }

  #logout_box {
    margin-right: 1rem !important;
  }

  #status_box {
    padding: 0.75rem 1rem;
    margin: 0 !important;
    /* margin-top: 8px;
    margin-right: 1rem!important;
    margin-left: 1rem!important; */
  }

  #date_monitor {
    display: none !important;
  }

  #date_mobile {
    display: block !important;
  }

  #status_container {
    margin: 0 !important;
    padding: 0 !important;
  }

  .title-dark-big {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 0.5rem !important;
  }

  .grid_bot {
    margin-bottom: 8px;
  }

  #porc_bars {
    display: block !important;
    margin: .5rem 0rem !important;
  }

  .subtitle-14 {
    font-size: 12px;
  }

  .box-dialog {
    width: 72px;
    height: 32px;
  }

  .box-active {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    width: 68px;
    height: 32px;
  }

  .box-conection {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    width: 68px;
    height: 32px;
  }

  .box-inactive {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    width: 68px;
    height: 32px;
  }

  .box-active-dev {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    width: 92px;
    height: 32px;
  }

  .box-conection-dev {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    width: 92px;
    height: 32px;
  }

  .box-inactive-dev {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    width: 92px;
    height: 32px;
  }

  #row_bars {
    display: grid !important;
    grid-template-columns: 1fr 1fr
  }

  .box-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
  }

  .box-ter {
    padding: 16px 12px;
    width: 96px !important;
    min-width: 96px;
  }

  .box-reg {
    padding: 12px 8px;
    width: 88px !important;
    min-width: 88px;
  }
}

@media only screen and (max-width: 384px) {
  .logo {
    padding: 44px 0px !important;
  }

  .title-dark-big {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0.5rem !important;
  }

  .subtitle-14 {
    font-size: 11px;
  }

  .box-dialog {
    width: 64px;
    height: 28px;
  }

  .box-active {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    width: 60px;
    height: 28px;
  }

  .box-conection {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    width: 60px;
    height: 28px;
  }

  .box-inactive {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    width: 60px;
    height: 28px;
  }

  #row_bars {
    display: grid !important;
    grid-template-columns: 1fr 1fr
  }

  .box-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
  }

  .box-ter {
    padding: 12px 8px;
    width: 84px !important;
    min-width: 84px;
  }

  .box-reg {
    padding: 8px 6px;
    width: 76px !important;
    min-width: 76px;
  }
}

/* Login */
@media (max-height: 680px) and (max-width: 1024px) {
  .logo {
    padding: 36px 0px !important;
  }
  .sizediv {
    padding: 36px 40px;
    height: 458px;
  }
}
@media (max-height: 640px) and (max-width: 1024px) {
  .logo {
    padding: 30px 0px !important;
  }
  .sizediv {
    padding: 32px 40px;
    height: 446px;
  }
}
@media (max-height: 600px) and (max-width: 1024px) {
  .logo {
    padding: 24px 0px !important;
  }
  .sizediv {
    padding: 28px 40px;
    height: 434px;
  }
}
@media (max-height: 560px) and (max-width: 1024px) {
  .logo {
    padding: 18px 0px !important;
  }
  .sizediv {
    padding: 24px 40px;
    height: 422px;
  }
}
@media (max-height: 520px) and (max-width: 1024px) {
  .logo {
    padding: 12px 0px !important;
  }
  .sizediv {
    padding: 20px 40px;
    height: 410px;
  }
}