.system-modal{
    width: 90%; 
    height: auto; 
    position:fixed;
    top:0; 
    right:0;
    z-index: 100;  
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
    /* display: none; */
    max-width: 800px;
}
@media screen and (max-width: 1024px) {
    .system-modal{
        width: 96%; 
        max-width:100%; 
    }
}
.system-modal.show{
    display: block;
}


.system-modal-reel{
    width:calc(99% - 1rem); 
    height: auto; 
    position:absolute; 
    top:0; 
    right:1rem;  
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
    text-align: right;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
    .system-modal-reel{
        top:1rem; 
    }
}


.system-message{
    width: 100%;
    position:relative;
    top:0; 
    right: 0;
    height: auto;
    padding:1rem 2rem; 
    margin-top:1rem; 
    border-radius: 1rem;  
    background-color: var(--color-azul-5);     
    box-shadow: var(--var-shadow); 
    opacity: 0;
    display: none;
} 
.system-message.block{
    display: block;
    -webkit-transition: all 0.8s linear;
    -moz-transition: all 0.8s linear;
    -o-transition: all 0.8s linear;
    -ms-transition: all 0.8s linear;
    transition: all 0.8s linear;
}
.system-message.show{
    opacity: 1;
}

.system-message .system-message--top{
    width: 100%;
    min-height: 2rem;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content:space-between;
    margin-bottom: 0.5rem; 
    gap:0.5rem; 
} 
.system-message .system-message--top .top-title{
    display: flex;
    align-items: center;
    gap:0.5rem;
    letter-spacing: 1px; 
}
.system-message .system-message--top .top-title, 
.system-message .system-message--top .top-title i, 
.system-message .system-message--top .top-title i::before,
.system-message .system-message--top .top-title span{
    color:var(--color-gris-2); 
    font-size:1rem; 
    line-height: 1rem;
}  
.system-message .system-message--top .top-title span{
    text-align: left;
}
.system-message .system-message--content,
.system-message .system-message--content .content-title,
.system-message .system-message--content .content-text,
.system-message .system-message--content .content-text p{
    width: 100%;
    color:var(--color-gris-3);
    font-size: 1rem; 
    font-weight: 300;
    letter-spacing: 1px; 
}
/* .system-message .system-message--content .content-text,
.system-message .system-message--content .content-text p{
    font-weight: 200;
} */

.system-message .system-message--content .content-text i,
.system-message .system-message--content .content-text p i,
.system-message .system-message--content .content-text i b{
    font-size:var(--fsizes-small); 
    color:var(--color-gris-3);
}
.system-message .system-message--content .content-text p{
    margin-top:0.5rem;
}