body{
    overflow-y: hidden;
}

#content .chatstuff{
    filter: blur(0px);
}

#content .chatstuff div{
    color: white;
    background-color:#3c444b;
    width: 90vw;
    height: 100vh;
    border-radius: 0px;
    position: relative;

}

#content .chatstuff #info{
    height: fit-content;
    background-color: #495158;
    width: fit-content;
    padding-left: 5vw;
    padding-right: 5vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    border-style: solid;
    border-color: #2a2f36;
    border-width: 1px;
    border-top-width: 0px;
}

#content .chatstuff #info_stuff{
    display: flex;
}

#content .chatstuff .info_line1{
    color: #2a2f36;
    background-color: #2a2f36;
    width: 20vw;
    margin-left: auto;
    margin-right: 1vw;
    height: 3px;
    border: none;

}

#content .chatstuff .info_line2{
    height: 3px;
    color: #2a2f36;
    background-color: #2a2f36;
    width: 20vw;
    margin-left: 1vw;
    margin-right: auto;
    border: none;

}



#content .chatstuff div ul{
    padding: 0px;
    margin: 0px;
    max-height: 91vh;
    overflow-y:auto;
    scrollbar-color: #282e35 #495158;
    scrollbar-width: thin;
    
}

@media (max-height: 750px){
    #content .chatstuff div ul{
    max-height: 89vh;
}
}

@media (max-height: 610px){
    #content .chatstuff div ul{
    max-height: 88vh;
}
    
}

#content .chatstuff div ul li{
    display: block;
    margin-bottom: 20px;
    background-color: #3c444b;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 5px;
    padding-top: 1px;
    padding-bottom: 1px;
    border-radius: 5px;
    scroll-behavior: smooth;
    overflow: hidden;
}

#content .chatstuff div ul li img{
    height: 30vh;
    background-color: #495158;
    border-radius: 5px;
    border-color: #495158;
    border-style: solid;
    border-width: 0px;
}

#content .chatstuff div ul li iframe{
    height: 30vh;
    width: 53.33vh;
    background-color: #495158;
    border-radius: 5px;
    display: block;
    border-style: none;
}

#content .chatstuff div ul #chat_name{
    margin: 0px;
    padding: 0px;
}

#content .chatstuff div ul li:hover{
    background-color: #384047;
}

@media only screen and (max-width: 1366px) {
    #content .chatstuff div ul li{
        margin-bottom: 10px;
    }

}

#content .chatstuff div #message_input ul{
    background-color: #495158;
}

#content .chatstuff div #message_input ul li{
    height: 2vw;
    margin: 0px;
    padding: 0px;
    background-color: #495158;
    width: fit-content;
    display: inline-block;
}

#content .chatstuff div #message_input ul li.iconslistt{
    background-color: #626c75;
    border-radius: 1000px;
    padding-right: 0.5vw;
    margin-left: 0.25vw;
    margin-right: 0.25vw;
}

#content .chatstuff div #message_input ul li img{
    height: 1.25vw;
    padding: 0.25vw;
    margin-top: 0.125vw;
    margin-bottom: 0.125vw;
    margin-left: 0.5vw;
    border-radius: 0.5vw;
}

#content .chatstuff div #message_input ul li img:hover{
    cursor: pointer;
    background-color: #384047;
}


#content .chatstuff div #message_input{
    position: absolute;
    display: block;
    bottom: 20px;
    background-color: #3c444b;
    margin-left: 2vw;
    margin-right: 2vw;
    padding-left: 0vw;
    padding-bottom: 1px;
    border-radius: 5px;
    scroll-behavior: smooth;
    overflow: hidden;
    width: 85vw;
    height: fit-content;
    background-color: #495158;
    color: white;
}

#content .chatstuff div #message_input ul input{
    width: 79vw;
    margin-left: 0.5vw;
    color: #9e9c9c;
}

#content .chatstuff div #message_input ul input:focus{
    color: white;
}


#content .chatstuff div ul .el_padre_de_Chris{
    display: none;
}

#content .chatstuff div #message_input input{
    padding: 0px;
    margin: 0px;
    border: 0px;
    height: 40px;
    text-align: left;
    background:none;
    outline: none;
}

#content .chatstuff div ul li ul{
    overflow: hidden;
    display: flex;
    background-color: inherit;
}

#content .chatstuff div ul li ul img.imgpfp{
    border-radius: 100vw;
    width: 35px;
    height: 35px;
    margin-top: 4.25px;
    margin-right: 4.25px;
    cursor: pointer;
}

#content .chatstuff div ul li ul ul{
    overflow: hidden;
    display: block;
    background-color: inherit;
}

#content .chatstuff div ul li ul li{
    display: flex;
    margin: 0px;
    box-shadow: none;
    overflow: hidden;
    background-color: inherit;
}

#content .chatstuff div ul li ul li ul{
    display: inline-block;
    background-color: inherit;
}

#content .chatstuff div ul li ul li ul li{
    padding: 0px;
    display: inline-block;
    vertical-align: bottom;
    box-shadow: none;
    color: #d4d4d4;
    position: relative;
    background-color: inherit;
}

#content .chatstuff div ul li ul li ul li:not(.time)::after{
    opacity: 1;
    transform: scale(0);
    transform-origin: center;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #d4d4d4;
    transition: opacity 300ms, transform 300ms;
}

#content .chatstuff div ul li ul li ul li:not(.time):hover{
    cursor: pointer;
}

#content .chatstuff div ul li ul li ul li:not(.time):focus::after,
#content .chatstuff div ul li ul li ul li:not(.time):hover::after{
    transform: scale(1);
}

#content .chatstuff div ul li ul li ul .time{
    margin-left: 10px;
    font-size: small;
    height: 16px;
    color: rgb(214, 214, 214);
}

#content .chatstuff div ul li ul li ul .hidden_time{
    display: none;
}