@charset "UTF-8";
/* Reset.scss */
/* Jóvenes Proyectos || Reset
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

blockquote {
  quotes: none;
}
blockquote:before, blockquote:after {
  content: "";
  content: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
}

/* Gloabl.scss */
/* Jóvenes Proyectos || Global Parameters
-------------------------------------------------------------- */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url(../img/main-back.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: lighter;
  font-size: 16px;
  line-height: 1.8;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #d8d8d8;
}

h1,
h2,
h3,
h4,
h5,
h6,
.ff--rc {
  line-height: 1;
  font-weight: 300;
  font-family: "Roboto Condensed", sans-serif;
}

.ff--m {
  line-height: 1;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

h3 {
  font-size: 24px;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
  color: #cc307f !important;
}
a:focus {
  text-decoration: none;
  color: #cc307f !important;
}
a.super-button:focus {
  text-decoration: none;
  color: #fff !important;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

ul.list {
  list-style-position: inside;
  padding-left: 20px;
}
ul.list li::before {
  content: "•";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #cc307f;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}

.trans {
  transition: all 0.3s ease;
}

.ver-perfil-usuario {
  margin-left: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #7af040;
  border-radius: 50%;
  position: absolute;
  right: 0;
  z-index: 997;
}

@-webkit-keyframes blinker {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.blink {
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
}

.cursor-p {
  cursor: pointer;
}

.contenedor {
  max-width: 1600px;
}

.contenedor.contenedor-min {
  max-width: 1100px;
}

.bk--p {
  background-color: #fdf8fb;
}

.bk--bk {
  background-color: #000;
}

.bk--w {
  background-color: #fff;
}

.bottom-angle-svg {
  position: relative;
  display: block;
  width: 100vw;
  height: 15vw;
}

.bottom-angle-svg .angle__svg.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bottom-angle-svg .angle__svg {
  fill: #fff;
  width: 100%;
  height: 100%;
}

.bottom-angle-svg .angle__svg .white {
  fill: #ffffff;
}

.bottom-angle-svg .angle__svg .grey {
  fill: #eeeeee;
}

.p0 {
  padding: 0 !important;
}

.pt100 {
  padding-top: 100px;
}

.pt80 {
  padding-top: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.pt70 {
  padding-top: 70px;
}

.pt60 {
  padding-top: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.pt50 {
  padding-top: 50px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb10 {
  padding-bottom: 10px;
}

.m0 {
  margin: 0;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb75 {
  margin-bottom: 75px;
}

.mt80 {
  margin-top: 80px;
}

.ml0 {
  margin-left: 0px !important;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.w100 {
  width: 100%;
}

.d-fr {
  display: flow-root;
}

.df-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.df-s {
  display: flex;
  justify-content: start;
  align-items: center;
}

.df-e {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.df-ee {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.df-sb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.df-se {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.df-ss {
  display: flex;
  justify-content: start;
  align-items: start;
}

.dg-je {
  display: grid;
  justify-content: end;
  align-items: end;
}

.h80 {
  height: 80px;
  overflow: hidden;
}

.h90 {
  height: 90px;
  overflow: hidden;
}

.h100 {
  height: 100px;
  overflow: hidden;
}

.h110 {
  height: 110px;
  overflow: hidden;
}

.minh110 {
  min-height: 110px;
  overflow: hidden;
}

.h120 {
  height: 120px;
  overflow: hidden;
}

.h160 {
  height: 160px;
  overflow: hidden;
}

.minh160 {
  min-height: 160px;
  overflow: hidden;
}

.fs--90 {
  font-size: 90px;
}

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

.fs--16 {
  font-size: 16px;
}

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

.info-text {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  color: #cc307f;
  padding-right: 20px;
}

.info-text.d-block {
  padding-right: 0;
}

.title {
  font-family: "Roboto Condensed", sans-serif;
  color: #403f3f;
  font-size: 20px;
}

.subtitle {
  color: #484848;
  font-size: 14px;
  line-height: 1.5;
}

.super-title {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  position: relative;
}

.update {
  font-weight: 400;
  transition: all 0.3s;
}

.con-cambios {
  color: #68c335 !important;
  transition: all 0.3s;
}

.inactive {
  opacity: 0.4;
}

/* Para usar con URLs, no queremos que añada guiones al partir la palabra */
.word-break-all {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
}

.word-break-hyphens {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

body.page-dashboard {
  max-height: 100%;
  min-height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  body.page-dashboard {
    overflow: auto;
  }
  body.page-dashboard #wrapper.dashboard {
    overflow: auto;
  }
}

#wrapper.dashboard {
  padding: 0;
  height: auto;
  overflow: hidden;
}
#wrapper.dashboard.dashboard--two-panels .dahshboard-main-panel {
  overflow-y: scroll;
  height: 100%;
}
#wrapper.dashboard.dashboard--one-panel {
  overflow: auto;
}
#wrapper.dashboard.dashboard--one-panel .dahshboard-main-panel {
  overflow-y: auto;
  height: auto;
}

.container--dashboard {
  padding-top: 0px;
}
.container--dashboard .container--collaborations {
  margin: 0 -15px 0;
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  .container--dashboard .container--collaborations {
    height: auto;
  }
}

/* Jóvenes Proyectos || Component · Fancybox
-------------------------------------------------------------- */
.animated-modal {
  max-width: 600px;
  border-radius: 4px;
  overflow: hidden;
  transform: translateY(-50px);
  transition: all 0.7s;
}

.animated-modal h2,
.animated-modal p,
.animated-modal > img,
.animated-modal > div,
.animated-modal label,
.animated-modal textarea,
.animated-modal .super-button {
  transform: translateY(-50px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.4s;
}

.fancybox-slide--current .animated-modal,
.fancybox-slide--current .animated-modal h2,
.fancybox-slide--current .animated-modal p,
.fancybox-slide--current .animated-modal > img,
.fancybox-slide--current .animated-modal > div,
.fancybox-slide--current .animated-modal label,
.fancybox-slide--current .animated-modal textarea,
.fancybox-slide--current .animated-modal .super-button {
  transform: translateY(0);
  opacity: 1;
}

.fancybox-slide--current .animated-modal h2 {
  transition-delay: 0.1s;
}

.fancybox-slide--current .animated-modal hr,
.fancybox-slide--current .animated-modal p {
  transition-delay: 0.3s;
}

/* Jóvenes Proyectos | Component · Multisteps Form
-------------------------------------------------------------- */
.multisteps-form__progress {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multisteps-form__progress-btn {
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  position: relative;
  padding-top: 20px;
  color: rgba(108, 117, 125, 0.7);
  text-indent: -9999px;
  border: none;
  background-color: transparent;
  outline: none !important;
  cursor: pointer;
}

@media (min-width: 500px) {
  .multisteps-form__progress-btn {
    text-indent: 0;
  }
}
.multisteps-form__progress-btn:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 13px;
  height: 13px;
  content: "";
  transform: translateX(-50%);
  transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
  border: 2px solid currentColor;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 3;
}

.multisteps-form__progress-btn:after {
  position: absolute;
  top: 5px;
  left: calc(-50% - 13px / 2);
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: currentColor;
  z-index: 1;
}

.multisteps-form__progress-btn:first-child:after {
  display: none;
}

.multisteps-form__progress-btn.js-active {
  color: #cc307f;
}

.multisteps-form__progress-btn.js-active:before {
  transform: translateX(-50%) scale(1.2);
  background-color: currentColor;
}

.multisteps-form__form {
  position: relative;
}

.multisteps-form__panel {
  /*position: absolute;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.multisteps-form__panel.js-active {
  height: auto;
  opacity: 1;
  visibility: visible;
}

.multisteps-form__panel[data-animation=scaleOut] {
  transform: scale(1.1);
}

.multisteps-form__panel[data-animation=scaleOut].js-active {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  transform: scale(1);
}

@media (max-width: 600px) {
  .minh160 {
    min-height: auto;
  }
}
.paso-orientacion {
  flex-wrap: inherit;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  border: 0px solid transparent;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 1rem;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 15px;
  box-shadow: 0px 0px 10px 0px rgba(106, 106, 106, 0.85);
  opacity: 1;
}

.paso-orientacion .numeral {
  min-width: 30px;
}

.paso-orientacion .numeral p {
  font-size: 36px;
  font-weight: 600;
  color: #aaa;
}

.paso-orientacion .iconografia {
  min-width: 130px;
  max-width: 130px;
  padding-left: 10px;
  padding-right: 10px;
}

.paso-orientacion .iconografia i {
  font-size: 32px;
  color: #cc307e;
}

.paso-orientacion .iconografia p {
  font-size: 16px;
  line-height: 1.4em;
  padding-top: 6px;
  font-weight: 500;
  color: #aaaaaa;
}

.paso-orientacion .input-informacion {
  max-width: 580px;
  flex-grow: 1;
  padding: 5px 0;
}

.paso-orientacion .input-informacion .titular {
  display: none;
}

.paso-orientacion .input-informacion a,
.paso-orientacion .input-informacion span {
  font-weight: 500;
}

.paso-orientacion .input-informacion .destacado {
  color: #cc307f;
}

.paso-orientacion .input-informacion ul.listado li::marker {
  font-size: 150%;
  color: #cc307f;
}

.paso-orientacion .input-informacion ul.listado {
  list-style: disc;
  list-style-position: inside;
  line-height: 1.3;
}

.paso-orientacion .botonera {
  max-width: 200px;
  min-width: 200px;
  text-align: center;
}

.paso-orientacion .botonera a {
  min-width: 170px;
}

.paso-orientacion .botonera > a:first-child {
  margin-bottom: 10px;
}

.paso-orientacion.deshabilitado {
  background-color: whitesmoke;
}

.paso-orientacion.deshabilitado > * {
  opacity: 0.4;
}

.paso-orientacion.deshabilitado .iconografia .titular {
  display: none;
}

.paso-orientacion.deshabilitado .input-informacion .titular {
  display: block;
}

.paso-orientacion.deshabilitado .input-informacion .orient-desc {
  display: none;
}

.paso-orientacion.deshabilitado {
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: 0px 0px 2px 0px rgba(106, 106, 106, 0.45);
}

.paso-orientacion.deshabilitado.completado::after {
  content: "";
  font: 40px "Font Awesome 5 Free";
  transition: transform 0.5s ease;
  will-change: transform;
  font-weight: 900;
  color: #55a7c0;
  position: absolute;
  z-index: 0;
  right: 40px;
  top: 13px;
}

.paso-orientacion.deshabilitado.completado .input-informacion p.titular {
  text-decoration: line-through;
  display: block;
}

.paso-orientacion.deshabilitado.completado .input-informacion p,
.paso-orientacion.deshabilitado.completado .iconografia .titular,
.paso-orientacion.deshabilitado.completado .botonera a {
  display: none;
}

.paso-orientacion.deshabilitado .botonera a {
  display: none;
}

@media only screen and (max-width: 1599px) {
  .paso-orientacion {
    padding-right: 15px;
    display: block;
    padding-left: 20px;
  }

  .paso-orientacion > div:first-child {
    max-width: 200px;
    margin: 0 auto;
  }

  .paso-orientacion .numeral p {
    font-size: 7em;
    line-height: 0.8em;
  }

  .paso-orientacion .input-informacion {
    padding: 20px 0;
    text-align: center;
  }

  .paso-orientacion .input-informacion ul.listado {
    text-align: left !important;
  }

  .paso-orientacion .botonera {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }

  .paso-orientacion .botonera a {
    width: 100%;
    max-width: 100%;
  }

  .paso-orientacion.deshabilitado {
    padding-top: 20px;
  }

  .paso-orientacion.deshabilitado .input-informacion {
    padding: 10px 0;
  }

  .paso-orientacion.deshabilitado.completado::after {
    font: 40px "Font Awesome 5 Free";
    left: 20px;
    right: auto;
    top: 20px;
  }
}
/* Entregable Toggle
-------------------------------------------------------------- 
-------------------------------------------------------------- */
.toggle_sub {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: auto;
  padding-left: 20px;
}

.toggle_sub + .toggle_sub {
  padding-top: 0 !important;
}

.toggle_sub__top {
  cursor: pointer;
  transition: background 0.3s ease;
  will-change: background;
}

.toggle_sub__top::before {
  content: "";
  font: 16px "Font Awesome 5 Free";
  transition: transform 0.5s ease;
  will-change: transform;
  font-weight: 900;
  color: #9b9b9b;
  position: absolute;
  margin-top: 2px;
  transform-origin: center center;
  width: 12px;
  height: 22px;
}

.toggle_sub__top .row > div:first-child > p,
.toggle_sub__top .row > div:first-child > i {
  font-size: 16px;
  padding-left: 16px;
}

.open > .toggle_sub__top::before {
  transform: rotate(180deg);
}

.toggle_sub__bottom {
  color: #797979;
  font-size: 14px;
  box-sizing: border-box;
  padding: 15px;
  display: none;
  background-color: rgba(255, 255, 255, 0.7);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.description {
  overflow-y: auto;
  /*height: 81px;*/
  height: auto;
}

.entregable .description {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

/*.feed-proyectos div:nth-child(3) {
    padding-top: 0!important;
  }*/
.row + .toggle {
  /*padding-top: 0 !important;*/
}

.component--panel-collaboration {
  background-color: #ffffff;
  height: 100%;
  padding: 0;
}
.component--panel-collaboration.open .panel-empty {
  visibility: hidden;
}
.component--panel-collaboration.open .panel-collaboration {
  display: flex;
}
.component--panel-collaboration .panel-empty {
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
}
.component--panel-collaboration .panel-empty .icon {
  color: #cc307f;
  font-size: 64px;
}
.component--panel-collaboration .panel-empty .description {
  padding-top: 32px;
  font-weight: 400;
  color: #cc307f;
  max-width: 240px;
}
.component--panel-collaboration .panel-collaboration {
  display: none;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
}
.component--panel-collaboration .panel-collaboration .panel-header {
  background: #cd317f;
  color: white;
  font-weight: 400;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.component--panel-collaboration .panel-collaboration .panel-header .collaboration-title {
  display: inline-block;
  padding: 16px;
  padding-left: 0;
  line-height: 16px;
  flex-grow: 1;
}
.component--panel-collaboration .panel-collaboration .panel-header .button-close-panel {
  display: none;
}
@media screen and (max-width: 991px) {
  .component--panel-collaboration .panel-collaboration .panel-header .button-close-panel {
    display: block;
  }
}
.component--panel-collaboration .panel-collaboration .panel-header .button-close-panel::after {
  content: "";
  font: 16px "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  top: 0px;
  right: 0px;
  padding: 16px;
  line-height: 16px;
  border-radius: 0 0 5px 5px;
  position: absolute;
  transition: transform 0.5s ease;
  will-change: transform;
  cursor: pointer;
}
.component--panel-collaboration .panel-collaboration .panel-header .menu-panel-colaboraciones {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  height: 100%;
  display: block;
}
.component--panel-collaboration .panel-collaboration .panel-header .menu-panel-colaboraciones button {
  background: transparent;
  border: none;
  color: #fff;
  display: inline-block;
  padding: 8px;
  width: 48px;
  height: 100%;
}
.component--panel-collaboration .panel-collaboration .panel-header .menu-panel-colaboraciones button:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.component--panel-collaboration .panel-collaboration .panel-header .menu-panel-colaboraciones .dropdown-menu {
  box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.component--panel-collaboration .panel-collaboration .panel-header .menu-panel-colaboraciones .dropdown-item {
  padding: 8px 16px;
  line-height: 16px;
  cursor: pointer;
}
.component--panel-collaboration .panel-collaboration .panel-header .menu-panel-colaboraciones .dropdown-item i {
  display: inline-block;
  width: 1.5em;
  color: #555;
}
.component--panel-collaboration .panel-collaboration .panel-header .menu-panel-colaboraciones .dropdown-item:hover i {
  color: inherit;
}
.component--panel-collaboration .panel-collaboration .panel-nav {
  justify-content: space-around;
}
.component--panel-collaboration .panel-collaboration .panel-nav .nav-item {
  flex-grow: 1;
  text-align: center;
}
.component--panel-collaboration .panel-collaboration .panel-nav .nav-item .nav-link.unread {
  font-weight: bold;
}
.component--panel-collaboration .panel-collaboration .panel-nav .nav-item .nav-link.unread::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  position: relative;
  top: -0.5em;
  border-radius: 1em;
  background-color: #cc307f;
}
.component--panel-collaboration .panel-collaboration .panel-nav.nav-pills a.nav-link {
  background-color: #eee;
  color: #000;
}
.component--panel-collaboration .panel-collaboration .panel-nav.nav-pills a.nav-link:hover {
  background-color: #f7f7f7;
  color: #444 !important;
}
.component--panel-collaboration .panel-collaboration .panel-nav.nav-pills a.nav-link.active, .component--panel-collaboration .panel-collaboration .panel-nav.nav-pills a .show > .nav-link {
  background-color: white;
  color: #000;
  font-weight: 400;
}
.component--panel-collaboration .panel-collaboration .panel-content {
  flex-grow: 2;
  overflow: hidden;
}
.component--panel-collaboration .panel-collaboration .panel-content .tab-pane {
  height: 100%;
}
.component--panel-collaboration .panel-chat {
  width: 100%;
  height: 100%;
}
.component--panel-collaboration .panel-files {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  /*
  .block-upload-files {

  }
  */
}
.component--panel-collaboration .panel-files .block-list-files {
  overflow-y: auto;
  padding-top: 30px;

}

.component--panel-collaboration .panel-files .block-mark-completed {
  padding-top: 50px;
}

@media screen and (max-width: 991px) {
  .component--panel-collaboration {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    z-index: 1000;
  }
  .component--panel-collaboration.open {
    display: flex;
  }
  .component--panel-collaboration .panel-empty {
    display: none !important;
  }
}

.component--panel-chat {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 200ms opacity;
}
.component--panel-chat.open {
  opacity: 1;
  pointer-events: all;
}
.component--panel-chat #cuerpo-chat {
  position: relative;
}
.component--panel-chat #notificaciones-fijas {
  position: sticky;
  top: 0;
  z-index: 1;
}
.component--panel-chat #mensajes .feed.alerts {
  padding: 10px 48px;
}
.component--panel-chat #mensajes .alert {
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.15);
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 48, 127, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(204, 48, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 48, 127, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 48, 127, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(204, 48, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 48, 127, 0);
  }
}
@-webkit-keyframes pulse_notification {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 48, 127, 0.9);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(204, 48, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 48, 127, 0);
  }
}
@keyframes pulse_notification {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 48, 127, 0.9);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(204, 48, 127, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 48, 127, 0);
  }
}
.component--panel-chat #chat {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  transition: all 0.5s ease-in-out 0s;
}
.component--panel-chat #chat .pie-chat {
  position: relative;
}
.component--panel-chat #chat .pie-chat textarea {
  font-size: 0.75em;
  box-shadow: none;
  border: 1px solid #ececec;
  padding-right: 30px;
}
.component--panel-chat #chat .pie-chat button:disabled {
  color: black;
}
.component--panel-chat #chat .boton-chat {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border-radius: 50%;
  background: transparent;
  color: #cc307f;
  border: none;
}
.component--panel-chat #chat #div-chat {
  position: relative;
  background-color: white;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 16px;
}
.component--panel-chat #chat #div-chat .cabecera-chat {
  display: none;
  height: 30px;
  cursor: pointer;
}
.component--panel-chat #chat #div-chat #cuerpo-chat {
  background-color: #fef8fb;
  border: 1px solid #e9e9e9;
  height: calc(100% - 90px);
  margin: 0px 0 15px 0;
  border-radius: 7px;
}
.component--panel-chat .mensaje-chat-usuario {
  color: #000;
  font-size: 12px;
  margin-top: 10px;
}
.component--panel-chat .usuario-main {
  color: #cc307f;
  text-align: right;
}
.component--panel-chat #cuerpo-chat {
  overflow-y: auto;
  font-size: 13px;
  padding: 7px;
}
.component--panel-chat .mensaje-chat {
  word-break: break-word;
  max-width: 85%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px;
  margin: 2px 0;
  border-radius: 10px;
  line-height: 1.5em;
  letter-spacing: 0.01em;
}
.component--panel-chat .mensaje-chat.mensaje-recibido {
  background-color: white;
  border: 1px solid #e6e6e6;
}
.component--panel-chat .mensaje-chat.mensaje-enviado {
  background-color: #cc307f;
  color: white;
  margin-left: auto;
}
.component--panel-chat .mensaje-chat.primer-no-leido.mensaje-recibido {
  width: 100%;
  max-width: 100%;
  background-color: #f5dae8;
  color: #cc307f !important;
  border: 0px solid transparent;
  text-align: center;
  margin-top: 10px;
}
.component--panel-chat .mensaje-chat.mensaje-tutor {
  background-color: #f5e262;
}
.component--panel-chat .mensaje-chat.mensaje-enviado a {
  color: white;
}
.component--panel-chat .mensaje-chat.mensaje-tutor.mensaje-enviado,
.component--panel-chat .mensaje-chat.mensaje-tutor.mensaje-enviado a {
  color: #000;
}
.component--panel-chat .mensaje-chat.mensaje-enviado a:hover,
.component--panel-chat .mensaje-chat.mensaje-enviado a:active,
.component--panel-chat .mensaje-chat.mensaje-enviado a:focus,
.component--panel-chat .mensaje-chat.mensaje-enviado a:visited {
  color: white !important;
}
.component--panel-chat .mensaje-chat small {
  font-size: 11px;
  opacity: 0.7;
}
.component--panel-chat p#chat-activo {
  font-size: 13px;
  padding-top: 19px;
  padding-left: 5px;
  color: #cc307f;
  font-weight: 400;
  white-space: nowrap;
  overflow-x: hidden;
}
.component--panel-chat #chat-activo .spinner-border {
  width: 1.25rem;
  height: 1.25rem;
}
.component--panel-chat .mensaje-enviado small {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.component--panel-chat .mensaje-chat-dia {
  text-align: center;
  margin: 5px;
}
.component--panel-chat .cabecera-chat:after {
  content: "";
  font: 16px "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  top: 0px;
  right: 10px;
  padding: 7px;
  border-radius: 0 0 5px 5px;
  background-color: #55a7c0;
  position: absolute;
  transition: transform 0.5s ease;
  will-change: transform;
}/*# sourceMappingURL=base.css.map */