:root{
  --principal: #ff8900;
}
html {
    width: 100%;
}
body {
    overflow-x: hidden !important;
}
/* Hide everything under body tag */

body.show-spinner>* {
    opacity: 0;
}
/* Spinner */

body.show-spinner::before {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: rgba(0, 0, 0, 0.3);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    position: fixed;
    z-index: 1;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
.burbuja-comment {
    font-size: 3rem;
    color: var(--principal);
}

.wht-spc-ini{
  white-space: initial;
}
.collapse ul {
    list-style: none;
    color: #757686;
}
.collapse .lecture-title {
    /*width: calc(100% - 110px);*/
    width: 80%;
    color: #757686;
}
.visto {
    font-size: 19px;
    color: var(--principal);
}
.color-principal{
  color: var(--principal) !important;
}
.flex {
    display: flex !important;
}
.mb-20{
  margin-bottom: 20px;
}