@charset "utf-8";
/* CSS Document */
.compromiso {
  border: 1px solid #4a4a4a;
  color: black;
  height: 70px;
  padding: 10px 15px;
  border-radius: 7px;
  margin-top: 5px;
  overflow-x: hidden;
  width: 400px;
}

.buttonAction {
  height: 38px;
  line-height: 14px;
  width: 153px;
  font-size: 10pt;
  font-weight: 100;
  padding: 5px;
  color: #b3b3b3;
  border-color: #dcdcdc;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #ffffff;
  border: solid 1px;
  margin-right: 20px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.buttonAction:hover {
  background: #f6f6f6;
  text-decoration: none;
}

.BUTTON_TQH {
  border-radius: 6px;
  height: 38px;
  line-height: 14px;
  color: #ffffff;
  width: 153px;
  font-size: 10pt;
  font-weight: 100;
  background-color: #dee0e3;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  border: none;
}

.BUTTON_TQH:hover {
  background: #cb0000;
  border: solid #ffffff 0;
  border-radius: 6px;
  text-decoration: none;
}

.fullHeight {
  height: 100vh;
  width: 100%;
  background: url("./../img/fondo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Global */

* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0px;
  padding: 0px;
}

body {
  font-size: 16px;
}

header {
  border-bottom: solid 1px red;
  height: 100px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 77%,
    rgba(240, 240, 240, 1) 100%
  );
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  align-content: center;
  align-items: stretch;
}

/* Components */

img.logo {
  width: 12.5rem;
}

section.logo {
  display: flex;
  justify-content: space-around;
}

nav.menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

section.logout {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-end;
  padding: 10px;
}

section.menu {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  justify-items: center;
}

.tituloon {
  color: #e60012;
  text-align: center;
}

.titulo {
  color: #3e3e3e;
  text-align: center;
}

.titulooff {
  color: #b3b3b3;
  padding-top: 35px;
  text-decoration: none;
}

.app-options-container {
  display: flex;
  justify-content: space-evenly;
}

.app-option {
  width: 220px;
  height: 220px;
}

.review-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "element element chat"
    "actions actions chat"
    "files . .";
}

section.element {
  grid-area: element;
}

section.actions {
  grid-area: actions;
}

section.element,
section.actions {
  display: grid;
  justify-content: space-around;
  align-items: center;
  justify-items: center;
}

section.chat {
  grid-area: chat;
  display: grid;
  grid-auto-columns: 1fr;
}

section.files {
  grid-area: files;
  display: grid;
}

div.chat {
  border: 1px solid #4a4a4a;
  color: black;
  height: 100px;
  padding: 10px 15px;
  border-radius: 0.5rem;
  margin-top: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 14px;
}

textarea.chat {
  height: 2rem;
  border-radius: 0.3rem;
}

.comment {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* The container */
.custom-checkbox,
.notification-checkbox {
  display: grid;
  justify-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input,
.notification-checkbox input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  display: block;
  height: 24px;
  width: 24px;
  background-image: url("../img/cross-circle.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* When the checkbox is checked */
.custom-checkbox input:checked ~ .checkmark {
  background-image: url("../img/check-circle.png");
}

/* Create a custom checkbox */
.subscribed {
  display: block;
  height: 32px;
  width: 32px;
  background-image: url("../img/bell-slash.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* When the checkbox is checked */
.notification-checkbox input:checked ~ .subscribed {
  background-image: url("../img/bell.png");
}

/* Create a custom checkbox */
.featured {
  display: block;
  height: 24px;
  width: 24px;
  background-image: url("../img/star.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* When the checkbox is checked */
.custom-checkbox input:checked ~ .featured {
  background-image: url("../img/star-on.png");
}

.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
}

.input {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid red;
  margin-top: 1px;
}

.content {
  background-color: white;
  box-shadow: 1px -4px 4px -2px rgba(0, 0, 0, 0.44);
  padding: 1.25rem;
  min-height: 82vh;
}

.display-data-table-header {
  border-bottom: 1px solid red;
}

.display-data-table-row {
  display: grid;
  justify-content: space-around;
  align-content: space-around;
  text-align: center;
}

.form-instructions {
  margin-top: 1.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.input-button {
  cursor: pointer;
  border-bottom: 1px solid red;

  width: 2.5rem;
  padding: 0.7rem 0.125rem;
  align-self: flex-end;
}

.input-checkbox {
  padding: 0.5rem;
  display: flex;
  gap: 10px;
}

select.custom-select {
  display: inline-block;
  cursor: pointer;
  padding: 5px 10px;
  outline: 0;
  background: #fafafa;
  font-size: 1em;
  color: #212121;
  border: none;
  border-radius: 7px;
  position: relative;
  transition: all 0.35s ease;
}

select.custom-select:hover {
  background: #fafafa;
}

.switch {
  position: relative;
  display: block;
  width: 30px;
  height: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: red;
}

input:focus + .slider {
  box-shadow: 0 0 1px red;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Utilities */

.text-red {
  color: #e60012;
}

.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.columns-2_3_2 {
  grid-template-columns: 2fr 3fr 2fr;
}

.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

nav.menu.margin {
  margin: 0 25rem;
}

table td,
table th {
  font-size: smaller;
  line-height: 1.4;
}

.display-data-table.scroll {
  align-content: baseline;
  max-height: 50vh;
  overflow: auto;
}

.display-data-table-row.margin {
  margin: 2rem 15rem;
}

.display-data-table-row.margin-y {
  margin: 2rem 0;
}

section.btn-group.margin {
  margin: 0 15rem;
}

.form.margin-md {
  margin: 0 20rem;
}

.form.margin-lg {
  margin: 0 25rem;
}

section.login.margin-sm {
  margin: 0 15rem;
}

section.login {
  align-self: center;
}

.center-text {
  text-align: center;
}

.margin-top-space {
  margin-top: 1.25rem;
}

.link-button {
  text-decoration: none;
}

.g-recaptcha {
  padding: 1rem 0;
  text-align: center;
  text-align: -webkit-center;
}

.font.sm {
  font-size: 0.7rem;
}

.font.bold {
  font-weight: 600;
}

@media print {
  .no-print {
    display: none;
  }
}
