/* structure */
html{
    font-size: 16px;
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #363636;
}
html, body{
    height: 100%;
    margin: 0px;
    padding: 0px;
}
body{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
body > article:nth-last-child(2), body > aside:nth-last-child(2), body > main:nth-last-child(2), body > section:nth-last-child(2), body > div:nth-last-child(2){
    flex-grow: 2;
}
article, main, aside, div, footer, header, nav, section, span, label, a, svg{
    position: relative;
    display: flex;
}
a{
    text-decoration: none;
    color: #363636;
}
a:hover{
    color: #636363;
}

/* behaviour */
.is-clear-display{
    display: block
}
.is-grow{
    flex-grow: 2;
}

/* color */
.is-white{
    background-color: #ffffff;
    border: 1px solid transparent;
    color: #0a0a0a;
}
.is-black{
    background-color: #0a0a0a;
    border: 1px solid transparent;
    color: #ffffff;
}
.is-light{
    background-color: #f4f4f4;
    border: 1px solid transparent;
    color: #353535;
}
.is-dark{
    background-color: #353535;
    border: 1px solid transparent;
    color: #f4f4f4;
}
.is-notification{
    background-color: #f26d07;
    border: 1px solid transparent;
    color: #ffffff;
}
.is-primary{
    background-color: #00d1b1;
    border: 1px solid transparent;
    color: #ffffff;
}
.is-link{
    background-color: #3273dc;
    border: 1px solid transparent;
    color: #ffffff;
}
.is-info{
    background-color: #209bee;
    border: 1px solid transparent;
    color: #ffffff;
}
.is-success{
    background-color: #47c674;
    border: 1px solid transparent;
    color: #ffffff;
}
.is-warning{
    background-color: #ffdd56;
    border: 1px solid transparent;
    color: #000000;
}
.is-danger{
    background-color: #ff385f;
    border: 1px solid transparent;
    color: #ffffff;
}

.is-primary.is-inverted{
    background-color: #ffffff;
    border: 1px solid transparent;
    color: #00d1b1;
}
.is-link.is-inverted{
    background-color: #ffffff;
    border: 1px solid transparent;
    color: #3273dc;
}
.is-info.is-inverted{
    background-color: #ffffff;
    border: 1px solid transparent;
    color: #209bee;
}
.is-success.is-inverted{
    background-color: #ffffff;
    border: 1px solid transparent;
    color: #47c674;
}
.is-warning.is-inverted{
    background-color: #000000;
    border: 1px solid transparent;
    color: #ffdd56;
}
.is-danger.is-inverted{
    background-color: #ffffff;
    border: 1px solid transparent;
    color: #ff385f;
}

.is-primary.is-light{
    background-color: #ebfffc;
    border: 1px solid transparent;
    color: #00d1b1;
}
.is-link.is-light{
    background-color: #eef3fc;
    border: 1px solid transparent;
    color: #3273dc;
}
.is-info.is-light{
    background-color: #eef6fc;
    border: 1px solid transparent;
    color: #209bee;
}
.is-success.is-light{
    background-color: #effaf3;
    border: 1px solid transparent;
    color: #47c674;
}
.is-warning.is-light{
    background-color: #fffbeb;
    border: 1px solid transparent;
    color: #ffdd56;
}
.is-danger.is-light{
    background-color: #feecf0;
    border: 1px solid transparent;
    color: #ff385f;
}

/* disposition */
.has-centered{
    justify-content: center;
}
.has-end{
    justify-content: flex-end;
}
.has-start{
    justify-content: flex-start;
}
.has-space-between{
    justify-content: space-between;
}
.has-space-around{
    justify-content: space-around;
}

.has-perpendicular-centered{
    align-items: center;
}
.has-perpendicular-start{
    align-items: flex-start;
}
.has-perpendicular-end{
    align-items: flex-end;
}
.has-perpendicular-stretch{
    align-items: stretch;
}
.has-perpendicular-baseline{
    align-items: baseline;
}

.has-gap-5{
    gap: 5px;
}
.has-gap-10{
    gap: 10px;
}
.has-gap-15{
    gap: 15px;
}
.has-gap-20{
    gap: 20px;
}
.has-gap-25{
    gap: 25px;
}
.has-gap-50{
    gap: 50px;
}
.has-gap-100{
    gap: 100px;
}

/* orientation */
.has-horizontal{
    flex-direction: row;
}
.has-vertical{
    flex-direction: column;
}
.has-wrap{
    flex-wrap: wrap;
}

/* tipography */
.has-text-centered{
    text-align: center;
}
.has-text-justified{
    text-align: justify;
}
.has-text-left{
    text-align: left;
}
.has-text-righ{
    text-align: right;
}

.is-capitalized{
    text-transform: capitalize;
}
.is-lowercase{
    text-transform: lowercase;
}
.is-uppercase{
    text-transform: uppercase;
}
.is-bold{
    font-weight: bold;
}
.is-italic{
    font-style: italic;
}
.is-blink{
    animation-name: blinker;
    animation-duration: 1s;
    animation-iteration-count:infinite;
    animation-timing-function:ease-in-out;
    animation-direction: alternate;
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.0;
    }
    100% {
        opacity: 1.0;
    }
}

.has-text-weight-light{
    font-weight:300;
}
.has-text-weight-normal{
    font-weight:400;
}
.has-text-weight-medium{
    font-weight:500;
}
.has-text-weight-semibold{
    font-weight:600;
}
.has-text-weight-bold{
    font-weight:700;
}

.is-invisible{
    display:none;
}
.is-absolute{
    position: absolute;
}
.is-fixed{
    position: fixed;
}
.is-vertical-scroll{
    overflow-y: scroll
}
.is-horizontal-scroll{
    overflow-x: scroll
}

.is-height-100{
    height: 100%
}
.is-height-95{
    height: 95%
}
.is-height-90{
    height: 90%
}
.is-height-85{
    height: 85%
}
.is-height-80{
    height: 80%
}
.is-height-75{
    height: 75%
}
.is-height-70{
    height: 70%
}
.is-height-65{
    height: 65%
}
.is-height-60{
    height: 60%
}
.is-height-55{
    height: 55%
}
.is-height-50{
    height: 50%
}
.is-height-45{
    height: 45%
}
.is-height-40{
    height: 40%
}
.is-height-35{
    height: 35%
}
.is-height-30{
    height: 30%
}
.is-height-25{
    height: 25%
}
.is-height-20{
    height: 20%
}
.is-height-15{
    height: 15%
}
.is-height-10{
    height: 10%
}
.is-height-5{
    height: 5%
}

.is-opaque-75{
    opacity: 0.75;
}
.is-opaque-50{
    opacity: 0.5;
}
.is-opaque-25{
    opacity: 0.25;
}

/* TEO */

.div-collaborator-chat{
    align-items: flex-end;
    width: 100%;
}

.div-internalCollaborator-chat{
    width: 100%;
}

.mb-3{
    margin-bottom: 1rem !important;
}

.mb-4{
    margin-bottom: 1.5rem;
}

.textarea-chat{
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.flex-column{
    flex-direction: column !important;
}

.menu-label{
    cursor: pointer;
}

.area-chat{
    flex-direction: column;
    background-color: #d9f7e8;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    box-sizing: border-box;
}

.area-chat .messaggio{
    padding: 10px;
    background: white;
    width: fit-content;
    border-radius: 0 6px 6px 6px;
    border: 1px solid #c8c8c8;
    margin-top: 0;
    margin-bottom: .5rem;    
    overflow-wrap: anywhere;
}

.area-chat .botone-elimina{
    padding: 10px;
    background: white;
    width: fit-content;
    border-radius: 0 6px 6px 6px;
    border: 1px solid #c8c8c8;
    margin-top: 0;
    margin-bottom: .5rem;    
    overflow-wrap: anywhere;
}

.area-chat .mittente{
    font-style: italic;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: .5rem;
}

.area-chat .time-right{
    font-style: italic;
    font-size: .8rem;
    margin-top: 0;
    margin-bottom: 0;
}

.area-testo-chat{
    width: 100%;
}

.area-testo-chat textarea{
    min-height: 120px;
}

.area-testo-chat button{
    cursor: pointer;
}


.div-collaborator-chat .allinea-cancella{
    cursor: pointer;
    display:flex;
    justify-content: center;
    align-items: center;
}
.mb-0{
    margin-bottom: 0 !important;
}

.d-block{
    display: block !important;
}

.w-50{
    width: 50%  !important;
}

.text-right{
    text-align: right !important;
}

.m-0{
    margin: 0 !important;
}

.image-resize {
        max-width: 50%;
        height: auto;
    }

@media (max-width: 992px){

.w-50{
    width: 100% !important;
}
}


 