@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;700&display=swap");
@import "fontawesome/font-awesome.min.css";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ABP Colors */
  /*--color-pink-primary: #ff1895;*/
  --color-pink-primary: #808dff;
  --color-blue-primary: #2741AA;
  --color-button-primary: #2746c2;
  --color-blue-secondary: #009CFF;
  --color-blue-third: #E6E6E6;
  --color-black-primary: #202020;
  --color-black-secondary: #373737;
  --color-black-third: #414141;
  --color-red-primary: #dc3545;
  --color-red-secondary: #dc3545;
  --color-gray-primary: #c4c4c4;
  --color-gray-secondary: #eaeaea;
  --color-green-primary: #00b963;
  --color-pink-primary-opacity1: rgba(128, 141, 255, 0.1);
  --color-tab-disabled: #767d90;
  --bg-navbar: var(--color-blue-primary);
  --bg-arrow-buttons: var(--color-blue-third);
  --bg-question-success: var(--color-green-primary);
  --bg-buttons: var(--color-button-primary);
  --bg-buttons-danger: var(--color-red-secondary);
  --bg-little-vertical-bar: var(--color-pink-primary);
  --font-title: "Poppins", sans-serif;
  --font-text: "Lato", sans-serif;
  --font-awesome: "Font Awesome 5 Free";
}

/* subloader */
.subloader {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 10000;
  min-height: 250px;
  background-color: rgba(255, 255, 255, 0.582);
  box-shadow: 1px 2px 2px 2px rgb(51 51 51 / 5%);
  opacity: 0;
  visibility: hidden;
  transition: ease all 0.5s;
  filter: blur(30px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.subloader > div {
  width: 40px;
  height: 40px;
  position: relative;
  /* left: calc(50% - (50px + 50px));
    top: calc(50% - 20px); */
}
.subloader p {
  /* left: calc(50% - (50px));
    top: calc(50% - 50px); */
  font-family: var(--font-title);
  font-size: 1.4em;
  white-space: nowrap;
  position: relative;
  margin-left: 5px;
  text-align: center;
}
.subloader.active {
  opacity: 1;
  visibility: visible;
  filter: blur(0px);
}

.subloader > div::before,
.subloader > div::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue-primary);
  border-radius: 5px;
  transition: linear all 0.3s;
}
.subloader > div::after {
  display: none;
  right: 0;
  bottom: 0;
  transform: scale(0.5);
  transform-origin: right bottom;
}
.subloader > div::before {
  transform: scale(0.7);
  transform-origin: center;
}
.subloader.active > div {
  animation: rotating 2s ease-in-out infinite;
}
/* .subloader.active > div::before{
    animation: subloaderBefore 2s linear infinite;
  } */
@keyframes rotating {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes subloaderBefore {
  0%,
  100% {
    transform: scale(0.5);
  }
  20% {
    transform: scale(1, 0.5);
  }
  30% {
    transform: scale(0.5, 0.5) translateX(40px);
  }
  40% {
    transform: scale(0.5, 1) translateX(40px);
  }
  50% {
    transform: scale(0.5, 0.5) translateX(40px) translateY(40px);
  }
  60% {
    transform: scale(1, 0.5) translateX(0px) translateY(40px);
  }
  70% {
    transform: scale(0.5, 0.5) translateX(0px) translateY(40px);
  }
  80% {
    transform: scale(0.5, 1) translateX(0px) translateY(0px);
  }
}

@keyframes subloaderAfter {
  0%,
  100% {
    transform: scale(0.5);
  }
  20% {
    transform: scale(1, 0.5);
  }
  30% {
    transform: scale(0.5, 0.5) translateX(-40px);
  }
  40% {
    transform: scale(0.5, 1) translateX(-40px);
  }
  50% {
    transform: scale(0.5, 0.5) translateX(-40px) translateY(-40px);
  }
  60% {
    transform: scale(1, 0.5) translateX(0px) translateY(-40px);
  }
  70% {
    transform: scale(0.5, 0.5) translateX(0px) translateY(-40px);
  }
  80% {
    transform: scale(0.5, 1) translateX(0px) translateY(0px);
  }
}
/* end subloader */

/* Body */
body {
  font-family: var(--font-text);
  font-size: 12px;
  /* min-height: calc(100vh); */
}
/* End body */

/* Header */
header {
  background-color: var(--bg-navbar);
  position: fixed;
  height: 90px;
  padding: 0 80px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
header .logo {
  /* position: relative; */
  /* top: 20px; */
  /* border-radius: 5px; */
  background-color: #fff;
  display: flex;
  object-fit: cover;
  width: 239px;
  height: 100%;
  padding: 0px 15px;
}
header .logo img {
  width: 100%;
}
/* End header */

/* main */
main {
  /* margin-top: 70px; */
  width: 100%;
  min-height: calc(100vh - (70px + 40px));
  margin-bottom: 40px;
  /*position: fixed;*/
  z-index: 1000;
}
/* end main */

/* general */
a {
  text-decoration: none;
}
.title {
  text-align: center;
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5em;
  /* color: var(--color-blue-primary); */
  color: white;
  margin-bottom: 15px;
}
.btn {
  display: block;
  margin: 30px auto;
  padding: 17px 14px;
  font-family: var(--font-title);
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.3);
  width: 450px;
  text-align: center;
  color: var(--color-black-primary);
  font-size: 1.5em;
  position: relative;
  transition: ease all 0.3s;
  z-index: 1;
  font-weight: bold;
}
.btn:hover {
  color: var(--color-blue-primary);
  cursor: pointer;
  background-color: transparent;
}
.btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: ease all 0.3s;
  z-index: 0;
  border-radius: 45px;
}

/* .btn:hover::before{
    transform: scaleX(1);
} */

.btn:disabled {
  background-color: var(--color-blue-secondary);
  color: #fffc;
}
.btn.primary {
  background-color: var(--color-button-primary);
  color: #fff;
}
.btn.primary:hover {
  background-color: var(--color-blue-secondary);
  color: #fff;
}
.btn.danger {
  background-color: var(--color-red-secondary);
  color: #fff;
}
label {
  font-family: var(--font-title);
  font-size: 1.4em;
  color: var(--color-blue-primary);
  margin: 7px 0;
}
label.alert {
  font-family: var(--font-title);
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin: 90px auto 35px;
  font-size: 2em;
  /* margin-bottom: 100px; */
}
input {
  padding: 17px 14px;
  min-width: 450px;
  border: 1px solid var(--color-blue-primary);
  font-size: 1.4em;
}

input,
textarea {
  transition: ease all 0.3s;
}

input:focus {
  outline: none;
}

.input {
  /* max-width: 190px; */
  width: 100%;
  height: 44px;
  background-color: #05060f0a;
  border-radius: .5rem;
  padding: 0 1rem;
  border: 2px solid transparent;
  font-size: 1rem;
  transition: border-color .3s cubic-bezier(.25,.01,.25,1) 0s, color .3s cubic-bezier(.25,.01,.25,1) 0s,background .2s cubic-bezier(.25,.01,.25,1) 0s;
}

.labelCategoria {
  display: block;
  margin-bottom: .3rem;
  font-size: .9rem;
  font-weight: bold;
  color: #05060f99;
  transition: color .3s cubic-bezier(.25,.01,.25,1) 0s;
}

.input:hover, .input:focus, .input-group:hover .input {
  outline: none;
  border-color: #05060f;
}

.input-group:hover .labelCategoria, .input:focus {
  color: #05060fc2;
}

.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.none {
  display: none !important;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-start {
  display: flex;
  justify-content: start;
  align-items: center;
}
.flex-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.flex-see-column {
  flex-direction: column;
}
.error-detected {
  transition: ease all 0.3s;
  animation: shakingError linear 0.2s;
  border: 1px solid var(--color-red-primary);
  box-shadow: 0px 2px 4px 2px rgba(182, 82, 82, 0.144);
}
@keyframes shakingError {
  0%,
  100% {
    transform: rotateZ(0deg);
  }
  25% {
    transform: rotateZ(-5deg);
  }
  50% {
    transform: rotateZ(5deg);
  }
}
/* end general */

/* page container */
.page-container {
  padding-top: 20px;
}

.page-container .GenerateURLContainer {
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.page-container .GenerateURLContainer .GenerateURL {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 350px;
  height: 350px;
  transition: ease transform 0.3s;
}
.page-container .GenerateURLContainer .GenerateURL:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.page-container .GenerateURLContainer .GenerateURL:active {
  transform: scale(1);
}
.page-container .GenerateURLContainer .GenerateURL .wave {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: block;
  margin: auto;
  border-radius: 50%;
  pointer-events: none;
  border: 80px solid var(--color-pink-primary-opacity1);
  transition: ease all 0.5s;
  transform: scale(0);
}
.page-container .GenerateURLContainer .GenerateURL .wave:nth-of-type(1).active {
  /* transition-delay: .6s; */
  transform: scale(1);
}
.page-container
  .GenerateURLContainer
  .GenerateURL
  .wave:nth-of-type(1).active.animated {
  animation: wave1 linear 2s infinite;
}
.page-container .GenerateURLContainer .GenerateURL .wave:nth-of-type(2).active {
  /* transition-delay: .4s; */
  transform: scale(1.2);
}
.page-container
  .GenerateURLContainer
  .GenerateURL
  .wave:nth-of-type(2).active.animated {
  animation-delay: 4s;
  animation: wave1 linear 1.5s infinite;
}
.page-container .GenerateURLContainer .GenerateURL .wave:nth-of-type(3).active {
  /* transition-delay: .2s; */
  transform: scale(1.4);
}
.page-container
  .GenerateURLContainer
  .GenerateURL
  .wave:nth-of-type(2).active.animated {
  animation-delay: 6s;
  animation: wave1 linear 2.5s infinite;
}

.page-container .GenerateURLContainer .GenerateURL .icon {
  font-size: 10em;
  color: var(--color-blue-primary);
  position: relative;
  z-index: 1;
}
.page-container .GenerateURLContainer .GenerateURL .message {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.3);
  position: relative;
  font-size: 1.5em;
  font-family: var(--font-title);
  font-weight: bold;
  padding: 10px 0px;
  margin-top: 7px;
  position: absolute;
  width: 230px;
  bottom: -30px;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
}

.messageLink {
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    font-size: 1.5em;
    font-family: var(--font-title);
    font-weight: bold;
    padding: 10px 0px;
    margin-top: 7px;
    position: absolute;
    width: 230px;
    bottom: -10px;
    left: 0;
    right: 0;
    display: block;
    margin: auto;
}

.page-container .GenerateURLContainer .GenerateURL .message::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
}

.messageLink::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    display: block;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fff;
}

@keyframes wave1 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  90% {
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
  }
}

.page-container .url p {
  max-width: 50%;
  display: block;
  margin: 20px auto;
  text-align: center;
  font-size: 1.2em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.5em;
  font-style: italic;
}

/* end page contianer */

/* form */
.form-group {
  width: 100%;
  position: relative;
}
/* end form */

/* leftActions */

.leftActions {
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 20px;
  padding-bottom: 20px;
}

.leftActions button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  box-shadow: 1px 2px 2px 0px rgba(182, 82, 82, 0.3);
  color: #fff;
  margin: 7px 0;
  background-color: var(--color-blue-primary);
  transition: ease all 0.3s;
}
.leftActions button:hover {
  cursor: pointer;
  transform: scale(1.1);
}

/* end leftActions */

/* questions-container */
.questions-container {
  width: 70%;
  display: block;
  margin: auto;
  margin-top: 90px;
}
.questions-container .question {
  margin: 20px 0;
}
.questions-container .question:first-child {
  margin: 0;
}
.questions-container .question label {
  font-size: 1.8em;
  text-transform: uppercase;
  font-weight: bold;
}
.questions-container .question .description {
  border: 1px solid var(--color-gray-secondary);
  padding: 25px 30px;
  border-radius: 5px;
  margin-top: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
.questions-container .question .description .action {
  margin-left: 7px;
}
.questions-container .question .description p {
  width: calc(100%);
  font-size: 1.5em;
  border-right: 1px solid var(--color-gray-primary);
  padding-right: 20px;
}

.questions-container .question .description p.no-border {
  border: none;
  padding-right: 0px;
}
/* end questions */

/* tabs */
.TabsContainer {
  width: 98%;
  display: block;
  margin: 0 auto;
  position: relative;
  margin-top: 30px;
}
.TabsContainer .NavigationTabs ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
.TabsContainer .NavigationTabs ul li {
  padding: 12px 40px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: var(--color-tab-disabled);
  color: #fff;
  font-size: 1.3em;
  list-style-type: none;
  transition: ease all 0.3s;
  font-family: var(--font-title);
  font-weight: normal;
}
.TabsContainer .NavigationTabs ul li.active {
  background-color: var(--color-blue-primary);
}
.TabsContainer .NavigationTabs ul li:hover {
  background-color: var(--color-blue-secondary);
  cursor: pointer;
}
.TabsContainer .TabsContent {
  border: 1px solid var(--color-gray-primary);
  padding: 60px 0;
  position: relative;
  max-width: auto;
  overflow: auto;
}
.TabsContainer .TabsContent .Tab {
  transition: ease all 0.3s;
  opacity: 0;
  transform: translateX(50px);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
}
.TabsContainer .TabsContent .Tab.active {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateX(0);
  position: inherit;
  z-index: 100;
}

#brechaContenedor {
  padding-top: 0;
}
/* end tabs */

/* footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 30px;
}
/* end footer */

@media only screen and (max-width: 1280px) and (min-width: 720px) {
  /* General */
  label {
    font-size: 1.2em;
  }
  .title {
    font-size: 1.2em;
  }
  .btn {
    font-size: 1.2em;
    margin: 15px auto;
  }
  /* End general */

  /* Generar URL */
  .page-container .GenerateURLContainer {
    min-height: 45vh;
  }
  .page-container .GenerateURLContainer .GenerateURL {
    width: 250px;
    height: 250px;
  }
  .page-container .GenerateURLContainer .GenerateURL .icon {
    font-size: 4em;
  }
  .page-container .GenerateURLContainer .GenerateURL .wave {
    border: 60px solid var(--color-pink-primary-opacity1);
  }
  .page-container .GenerateURLContainer .GenerateURL .message {
    font-size: 1.2em;
  }

  .messageLink {
    font-size: 1.2em;
  }
  .page-container .url p {
    font-size: 1.2em;
  }

  /* END Generar URL */

  /* Preguntas abiertas */
  .questions-container .question label {
    font-size: 1.4em;
  }
  .questions-container .question .description p {
    font-size: 1.2em;
  }
  /* End preguntas abiertas */
}
.modalContainer {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: rgb(35 58 113 / 52%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.modalContainer.active {
  opacity: 1;
  visibility: visible;
}
.modalContainer .modalMessage {
  width: 50%;
  background-color: #fff;
  padding: 17px;
  border-radius: 15px;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.3);
  transition: ease all 0.3s;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}
.modalAgregarCategoria {
  width: 500px !important;
}
.modalContainer.active .modalMessage {
  transition-delay: 0.3s;
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.modalContainer .modalMessage .modalHeader p,
.modalContainer .modalMessage .modalHeader small {
  text-align: center;
  font-family: var(--font-title);
  color: var(--color-blue-primary);
  width: 100%;
  display: block;
  margin: 0;
}
.modalContainer .modalMessage .modalHeader p {
  font-weight: bold;
  font-size: 2em;
}
.modalContainer .modalMessage .modalHeader small {
  font-size: 1.3em;
}

.modalContainer .modalMessage .modalBody {
  font-size: 1.2em;
  text-align: justify;
  padding: 17px 0;
}
.modalContainer .modalMessage .modalBody p {
  margin-bottom: 12px;
}
@media only screen and (max-width: 1280px) and (min-width: 720px) {
  .modalContainer .modalMessage {
    width: 70%;
  }
}

label.label-select__preguntaBrecha {
  color: grey;
  font-size: 28px;
  font-weight: bold;
  text-transform: capitalize;
  text-align: start;
  margin: 10px;
  /* margin-bottom: 100px; */
}

.select-categorias {
  cursor: pointer;

  background: white;
  border: 2px solid grey;
  border-radius: 5px;

  font-size: 18px;
  text-align: start;

  min-width: 250px;
  min-height: 45px;

  padding: 15px 25px;
}

.contenedor-select {
  max-width: 80%;
  margin: 0 auto;
}

.contenedor-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 440px);
  justify-content: center;
  margin-top: 20px;
  gap: 10px;

  min-height: 270px;
  height: fit-content;
  max-height: 50vh;
  overflow-y: scroll;
}

.contenedor-tags-grid2 {
  /* display: grid; */
  grid-template-columns: repeat(auto-fit, 440px);
  justify-content: center;
  /* margin-top: 20px;
  gap: 10px; */

  /* min-height: 270px; */
  height: 100%;
  /* max-height: 40vh; */
  overflow-y: scroll;
}

.contenedor-tags {
  flex-wrap: wrap;

  max-width: 80%;
  max-height: 500px;

  margin: 35px auto;

  overflow-y: scroll;
}

.tag-diseño {
  display: flex;
  justify-content: space-around;
  align-items: center;

  background-color: rgba(211, 211, 211, 0.288);
  border-radius: 15px;

  width: fit-content; /*Ancho crece conforme al contenido*/

  margin-top: 15px;
}

.tag-diseño p {
  margin: 5px 20px 5px 25px;

  color: black;

  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: start;
}

.tag-diseño button {
  background-color: grey;
  /* border: 1px solid gray; */
  color: white;
  border-radius: 25px;

  font-weight: bold;

  margin-right: 10px;

  width: 25px;
  height: 25px;

  cursor: pointer;
}

.tag-diseño button:hover {
  background-color: rgba(230, 230, 230, 0.856);
  color: black;
}

/* esto es el estilos css */
.respuestas {
  display: flex;
  align-items: center;
  
  border: #e9e9ed 1px solid;
  border-radius: 10px;
  background: #f8f8f8;
  color: black;
  
  width: fit-content;
  height: 45px;
}

.btn-guaradar {
  background-color: #3c6bd4;
  border: none;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  color: #fff;
  cursor: pointer;
  width: 50%;
  font-size: 16px;
}

.btn-cancelar {
  background-color: #e9e9ed;
  color: #000;
  cursor: pointer;
  border-radius: 10px;
  
  width: 50px;
  height: 50px;

  position: absolute;
  top: 0;
  right: 0;
}
.btn-cancelar2 {
  background-color: #e9e9ed;
  color: #000;
  border: none;
  height: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  width: 45%;
  height: 40px;
  margin-right: 10px;
  font-size: 16px;
}

.botonCancelarModal {
  padding: 0 !important;
  width: 40px !important;
  height: 40px !important;
}
/* .btn-cancelar {
  background-color: #e9e9ed;
  color: #000;
  border: none;
  height: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  width: 100%;
} */

.conte {
  padding-left: 10px;
  padding-right: 10px;
}
.conte p {
  margin: 8px;
}

.divBoton {
  height: 100%;
  width: 50px;
}

/* ////   modal ///////////// */

.btn-agregar {
  background-color: #3c6bd4;
  border: 1px solid #3c6bd4;
  border-radius: 25px;
  color: #fff;
  
  display: flex;
  align-items: center;
  gap: 10px;

  margin-left: 20px;
  padding: 5px 13px;
  cursor: pointer;

  height: fit-content;
}

.btn-agregar span {
    font-size: 18px;
    font-weight: 600;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.bt {
  padding: 10px;
  border-radius: 10px !important;
  padding-left: 25px;
  padding-right: 25px;
}

.fin-forcer {
  text-align: end;
}

.form-control {
  display: block;
  width: 95%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 15px;
}

#h1NombreCategoria {
  font-size: 36px;
}

.botonSiguiente{
  display: flex;
  justify-content: end;
}

.contentBtn {
  display: flex;
  justify-content: end;
  margin-top: 10px;
  margin-right: 15px;
}

.btnSiguiente {
  display: block;
  margin: 10px auto !important;
  padding: 5px 5px !important;
  font-family: var(--font-title);
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: var(--color-black-primary);
  font-size: 1em !important;
  position: relative;
  transition: ease all 0.3s;
  z-index: 1;
  font-weight: bold;
  width: 300px;
}

/* Diseño TARJETA */

.card {
  display: flex;
  justify-content: center;
  width: 440px;
  height: 100%;
}
.card p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20px;
  color: #666;
}

.card p.small {
  font-size: 14px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 48px;
  height: 48px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: #2741AA;
  border-radius: 0 4px 0 32px;
  cursor: pointer;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card1 {
  /* display: block; */
  position: relative;
  background-color: #f2f8f9;
  border-radius: 4px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  margin: 12px;
  padding: 32px 24px;
  padding-right: 50px;
  width: 440px;
  min-height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #2741AA;
  height: 70px;
  width: 70px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.card1:hover:before {
  transform: scale(21);
}

.card1:hover p {
  transition: all 0.3s ease-out;
  color: white;
}

.card1:hover h3 {
  transition: all 0.3s ease-out;
  color: #fff;
}

.card2 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.card2:hover {
  transition: all 0.2s ease-out;
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  top: -4px;
  border: 1px solid #ccc;
  background-color: white;
}

.card2:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #00838d;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(2);
  transform-origin: 50% 50%;
  transition: transform 0.15s ease-out;
}

.card2:hover:before {
  transform: scale(2.15);
}

.card3 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #f2f8f9;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #f2f8f9;
}

.card3 .go-corner {
  opacity: 0.7;
}

.card3:hover {
  border: 1px solid #00838d;
  box-shadow: 0px 0px 999px 999px rgba(255, 255, 255, 0.5);
  z-index: 500;
}

.card3:hover p {
  color: #00838d;
}

.card3:hover .go-corner {
  transition: opactiy 0.3s linear;
  opacity: 1;
}

.card4 {
  display: block;
  top: 0px;
  position: relative;
  max-width: 262px;
  background-color: #fff;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #ccc;
}

.card4 .go-corner {
  background-color: #00838d;
  height: 100%;
  width: 16px;
  padding-right: 9px;
  border-radius: 0;
  transform: skew(6deg);
  margin-right: -36px;
  align-items: start;
  background-image: linear-gradient(-45deg, #8f479a 1%, #dc2a74 100%);
}

.card4 .go-arrow {
  transform: skew(-6deg);
  margin-left: -2px;
  margin-top: 9px;
  opacity: 0;
}

.card4:hover {
  border: 1px solid #cd3d73;
}

.card4 h3 {
  margin-top: 8px;
}

.card4:hover .go-corner {
  margin-right: -12px;
}

.card4:hover .go-arrow {
  opacity: 1;
}

/* Estilos para el botón del dropdown */
.dropbtn {
  background-color: #767d90;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-bottom-right-radius: 15px;
  width: 50px;
}

/* Estilos para el contenedor del dropdown */
.dropdown {
  position: relative;
  display: inline-block;
  position: absolute;
  left: 11px;
  top: 14px;
}

/* .dropdown2 {
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute !important;
  overflow:hidden !important;
  display: inline-block;

  width: 48px;
  height: 48px;
  
  border-radius: 32px 4px 0 0;
} */

/* Estilos para el contenido del dropdown */
.contenedorRelative {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 366px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  max-height: 200px;
  overflow-y: scroll;
}

/* Estilos para las opciones del dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

/* Cambia el color del texto al pasar el mouse sobre las opciones */
.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Muestra el contenido del dropdown cuando el botón es clickeado */
.dropdown:hover .dropdown-content {
  display: block;
}

.contendedorTarjetas {
  position: relative;
  height: fit-content;
}

.lastChild-respSinCate:last-child {
  margin-bottom: 120px;
}
.tituloCategoria {
  display: flex;
  justify-content: center;
}

.marginBotonTitulo {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.opciones {
  background-color: rgb(243, 243, 243);
  padding: 25px;
  width: 50%;
  border-radius: 25px;
  text-align: center;
}
.opciones2 {
  display: flex;
  justify-content: center;
}

.opciones h1 {
  margin-bottom: 20px;
}

.margin-bottom-h1 {
  margin-bottom: 10px;
}

.alturaBoton_mostrar {
  height: 47px;
}

.titulo_mostrar {
  display: block;
}

.titulocat {
  color: transparent;
}

.progress {
  margin: 0 auto;
  height: 30px;
  width: 70%;
  border: 1px solid #428bca;
  border-radius: 15px;
  background-color: #e6f3fa;
  margin-bottom: 15px;
  margin-top: 15px;
}

.progress-bar {
  height: 100%;
  background: #2741AA;
  display: flex;
  align-items: center;
  transition: width 0.25s;
  border-radius: 15px;
}

.progress-bar-text {
  margin-left: 10px;
  font-weight: bold;
  color: #cce7f5;
}

/* FLIP CARD titulos categorias */

.flip-card {
  background-color: transparent;
  width: 60%;
  height: 54px;
  perspective: 1000px;
  font-family: sans-serif;
  margin: 0 auto;
}

.title {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateX(180deg);
}

.flip-card-front, .flip-card-back {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1rem;
}

.flip-card-back-heigth {
  min-height: 100%;
  height: auto !important;
}

.flip-card-front {
  background: linear-gradient(132deg, rgba(62,89,194,1) 31%, rgba(60,107,212,1) 38%, rgba(58,163,228,1) 60%);
  color: white;
}

.flip-card-back {
  background: linear-gradient(132deg, rgba(62,89,194,1) 31%, rgba(60,107,212,1) 38%, rgba(58,163,228,1) 60%);
  color: white;
  transform: rotateX(180deg);
  
  display: flex;
}


/* Wrapper to provide context */
.custom-select-wrapper {
    display: inline-block;
    position: relative;
}

/* Custom select styles */
.custom-select {
    display: block;
    width: 100%;
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    appearance: none; /* Hide default dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23343a40' d='M10 12L4 6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 8px 10px;
    margin-left: 10px;
}

/* Focus styles */
.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Disabled styles */
.custom-select:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}

/* IE10+ compatibility */
.custom-select::-ms-expand {
    display: none;
}

/* Container to show the dropdown arrow */
.custom-select-wrapper::after {
    content: '';
    pointer-events: none;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #343a40 transparent transparent transparent;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}


.scroll-container {
    height: 400px; /* Ajusta la altura como necesites */
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9; /* Fondo opcional */
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    height: 100%;
}


/* Clase para la fila */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Clase para las columnas que ocupan el 100% del ancho */
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Clase para columnas que ocupan el 50% del ancho en pantallas pequeñas y superiores */
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Estilos generales para la tabla */
.custom-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 18px;
text-align: left;
}

/* Estilos para los encabezados de la tabla */
.custom-table th {
    background-color: #cbd5e1; /* Color de fondo */
    color: #1e293b; /* Color del texto */
    padding: 12px 15px;
}

/* Estilos para las celdas de la tabla */
.custom-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dddddd;
}

/* Efecto hover para las filas */
.custom-table tbody tr:hover {
    background-color: #f5f5f5; /* Color de fondo cuando se hace hover */
}

/* Opcional: alternar el color de las filas */
.custom-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Estilo general del botón */
.btn-primary-custom {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #007bff;
    border: 1px solid #007bff;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}

/* Efecto hover */
.btn-primary-custom:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Efecto de enfoque (focus) */
.btn-primary-custom:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

/* Efecto activo (cuando se hace clic en el botón) */
.btn-primary-custom:active {
    background-color: #004085;
    border-color: #002752;
}

.modal-content {
    background-color: #fff;
    border-radius: 5px;
    /*box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);*/
    border: 1px solid #d1d5db;
    width: 500px;
    max-width: 100%;
    padding: 1rem;
    position: relative;
    margin: 8px 0;
}

.modal-body {
    margin-bottom: 0;
    font-size:medium;
}

.conte {
    display: flex;
    display: flex;
    flex-wrap: wrap;
    margin-right: 15px;
    margin-left: 15px;
    gap: 25px;
    justify-content: center;
}

.checksCategorias{
    display:flex;
    margin: 15px 0 0 15px;
    /*justify-content: space-between;*/
    gap: normal;
}

.inputCatBrecha{
    min-width:20px;
    margin:0 10px;
}

.screen-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff; /* Fondo azul claro */
}

/* Contenedor del mensaje del administrador */
.admin-message-container {
  text-align: center;
  padding: 30px;
  background-color: #ffffff; /* Fondo blanco */
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15); /* Sombra */
  max-width: 600px;
}

/* Título del mensaje */
.admin-message-title {
  color: #2741AA; /* Azul oscuro */
  font-size: 2.2em;
  margin-bottom: 15px;
}

/* Subtítulo del mensaje */
.admin-message-subtitle {
  color: #01579b; /* Azul más oscuro */
  font-size: 1.7em;
}

.tituloEtapas {
    text-align: center;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5em;
    /* color: var(--color-blue-primary); */
    color: white;
    /*margin-bottom: 15px;*/
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    z-index: 1001;
}

.botonesFinalizarEtapa{
    display:flex;
    gap:10px;
}