/* ******************************************** */
/* question partial, user id:
      views/questions/_favorite.html.erb
*/
.flex-favorites {
  display: flex;
  align-items: center;
}
/* ******************************************** */
/* question partial, user id:
      views/questions/_form.html.erb

      --> The following classes are defines in authentication.css:
      .input-field
      --> The following classes are defines in home.css ln44:
      .new-question
*/
.line-height {
  line-height: 1.8;
}
/* Removing unused Trix Editor buttons. That class comes in ActionText::RichTecxt */

/*
.trix-button--icon-code { display: none !important; }
*/
.trix-button--icon-code { display: none; }
.trix-button--icon-link { display: none; }
.trix-button-group--file-tools { display: none !important; }

/* Give some format to the collectioin select */
.collection-sw{
  width: 370px;
}


/* ******************************************** */
/* question partial, user id:
      views/questions/_like.html.erb
*/
/* .likes-style {
  border: 1px  solid white;
  background-color: var(--lightgrey);
  border-radius: 35px;
  text-align: center;
  color: #303030;
} */
/* .likes-style:hover {
  background-color: yellow;
}
.likes-number {
  font-size: medium;
} */
/* ******************************************** */
/* question partial, user id:
      views/questions/_question_title.html.erb
*/
.fc-nowrap-v-center {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.user-avatar-show {
  width: 100%;
  max-width: 45px;
  border-radius: 50%;
}
.dropdown-link {
  position: relative;
  display: inline-block;
}
.dropbtn-link {
  color: black;
  font-size: 28px;
  padding: 3px;
}
.dropdown-content-link {
  display: none;
  position: absolute;
  background-color: var(--whitemate);
  min-width: 400px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content-link a, .other-title {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content-link a:hover, .other-title:hover {
  background-color: var(--white);
}
.dropdown-link:hover .dropdown-content-link {
  display: block;
  right: 0px;
}
.dropdown-link:hover .dropbtn-link {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
}
.btn-to-link {
  color: red;
  padding: 12px 16px;
  text-decoration: none;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 17px;
}
.btn-to-link:hover {background-color: var(--white);}

/* ******************************************** */
/* question partial, user id:
      views/questions/_question.html.erb
*/

.detalles {
  font-size: 110%;
}
.fcw-question-partial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* ******************************************** */
/* question partial, user id:
      views/questions/_show_side.html.erb

  NOTA: VACÍO POR EL MOMENTO
*/



/* ******************************************** */
/* question partial, user id:
      views/questions/edit.html.erb

      --> The following classes are defines in authentication.css:
      .form-title
*/
.question-container {
  width: 100%;
  margin: auto; 
  padding: 16px 24px;
  border: 2px solid black;
  border-radius: 15px;
}

a.back-link:link, a.back-link:visited {
  color: var(--info);
  text-decoration: none;
}

/* ******************************************** */
/* question partial, user id:
      views/questions/index.html.erb

  NOTA: VACÍO POR EL MOMENTO
*/



/* ******************************************** */
/* question partial, user id:
      views/questions/new.html.erb

      NOTA: The following classes are already defined:
      .question-container     --> in self.edit
      a.back-link:link        --> in self.edit
      a.back-link:visited     --> in self.edit
      .form-title             -->  authentication.css
*/


/* ******************************************** */
/* question partial, user id:
      views/questions/show.html.erb
*/

.fc-nowrap-top {
  display: flex;
  flex-wrap: nowrap;
}
.sect1 {
  width: 70px;
  flex-shrink: 0;
  flex-grow: 0;
}
.sect1-int {
  width: 90%;
  margin: auto;
}
.sect2 {
  width: 100%;
  flex-grow: 2;
  flex-shrink: 2;
}

a.user-to-answer:link, a.user-to-answer:visited {
  color: var(--secondary);
  text-decoration: none;
  display: inline-block;
}
a.user-to-answer:hover {
  color: var(--success);
}
.login-to-answer {
  font-size: large;
  font-weight: bold;
}

/* HASTA AQUÍ |^|___________________________|^| */
/************************************************/
/* NO USADOS  |v|___________________________|v| */
@keyframes question-highlight {
  0% {
    background: #2E8B57;
  }
  100% {
    background: none;
  }
}

.question-highlight {
  animation: question-highlight 5s;
}
