*{
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
}

@keyframes aparecer {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

.container {
    display: flex;
    height: 120vh;
    flex-direction: row;
}

.menu-content {
    padding: 15px;
}

.menu-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.btn-enviar {
    color: white;
    font-weight: bolder;
    cursor: pointer;
    width: 5em;
    height: 50px;
    background: #FF3354;
    padding: 0 35px;
    border-radius: 6px;
    line-height: 50px;
    transition: 300ms;
    user-select: none;
    font-family: 'Roboto', sans-serif;
}

.btn-enviar:hover {
    background: #b11b30;
}

.btn-enviar i {
    transition: 0.5s;
}

.btn-enviar:hover i {
    transform: translateX(+100%);
}

.input-comentar {
    width: 70%;
    text-align: center;
    font-size: 1.2em;
    color: white;
    vertical-align: middle;
    line-height: 2.8em;
}

.input-comentar input::placeholder {
    color: white;
    opacity: 0.8;
}

.input-comentar input {
    border: none;
    padding: 5px;
    outline: none;
    box-shadow: none;
    background: transparent;
    width: 80%;
    height: 90%;
    color: white;
    font-size: 15px;
    transition: ease-in-out 0.3s;
}


.displayName {
    margin: 28px 10px;
    color: white;
    font-size: 23px;
    font-family: 'Roboto', sans-serif;
}

#menu-expand {
    background: #332E32;
    position: fixed;
    bottom: -19.5em;
    right: 5%;
    border-radius: 10px 10px 0 0;
    transition: 0.6s;
}

.show-menu {
    transition: 0.6s;
    transform: translateY(-100%);
}

.badgeNumber {
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
}

hr.solid {
    height: 1px;
    color: black;
    background-color: black;
    margin: 5px;
    border: none;
}

.badgeNumber .Number {
    font-family: 'Roboto', sans-serif;
    user-select: none;
    color: white;
    min-width: 2em;
    max-height: 2.3em;
    background: #454346;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bolder;
    text-align: center;
    vertical-align: middle;
    line-height: 2.0em;
    margin: 2px;
    transition: 0.3s;
    cursor: pointer;
}

.Number.low.selected-number, .Number.low:hover {
    background: #FF0000 !important;
}


.Number.medium-low.selected-number, .Number.medium-low:hover {
    background: #FFC100 !important;
}

.Number.medium.selected-number, .Number.medium:hover {
    background: #FFFF00 !important;
}

.Number.medium-high.selected-number, .Number.medium-high:hover {
    background: #D6FF00 !important;
}

.Number.high.selected-number, .Number.high:hover {
    background: #63FF00 !important;
}

.msg-rate {
    color: white;
    font-weight: bolder;
    display: flex;
    justify-content: space-between;
    margin: 0.8em;
    font-family: 'Roboto', sans-serif;
}

.msg-rate div {
    flex-flow: column nowrap;
    font-size: 20px;
}

.btn-interact-menu {
    display: flex;
    cursor: pointer;
    top: -11%;
    right: 10%;
    position: absolute;
    background: #332E32;
    padding: 10px;
    width: 60px;
    border-radius: 5px 5px 0 0;
    justify-content: center;
    transition: 0.3s;
}

.btn-interact-menu:hover {
    background: #2a2629;
}


/* -------------------------------------

    SECCION ESTILOS MENU COMENTARIO

-----------------------------------------    */

.menu_comments{
    position: fixed;
    right: 5%;
    bottom: 0;
    width: 400px;
    display: none;
}

.menu_comments .classification{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: #fffeff;
    border-radius: 5px 5px 0 0;
    padding: 30px 20px;
    margin: 0;
}
.menu_comments .classification img{
    width: 15%;
    vertical-align: top;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.menu_comments .classification .selected{
    opacity: 1;
}

.menu_comments .classification img:hover{
    opacity: 1;
}

.menu_comments .comment{
    width: 400px;
    position: relative;
    margin: 0;
}
.menu_comments .comment::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    top: -20px;
    right: 40px;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #eeeaed; 
    border-right: 10px solid transparent;
}

.menu_comments .comment_feliz::after{right: 40px;}
.menu_comments .comment_exito::after{right: 115px;}
.menu_comments .comment_ali::after{right: 190px;}
.menu_comments .comment_triston::after{right: 265px;}
.menu_comments .comment_enojado::after{right: 340px;}
.menu_comments .comment_inactive::after{display: none;}

.menu_comments .comment textarea{
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    min-height: 100px;
    max-height: 200px;
    outline: none;
    height: auto;
    border: none;
    background: #eeeaed;
    padding: 40px 20px;
}

.menu_comments .comment .comment_congrant{
    display: none;
    justify-content: center;
    align-items: center;
    padding: 60px;
    background: #eeeaed;
    border-radius: 5px 5px 0 0;
}
.menu_comments .comment .comment_congrant p{
    font-family: 'Roboto', sans-serif;
    color: #000;
    font-weight: lighter;
}

.menu_comments .footer_option{
    background: #fffeff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.menu_comments .footer_option img{
    width: 25%;
}

/* -------------------------------------

    MEDIAS QUERIES RESPONSIVE 

-----------------------------------------    */

@media screen and (max-width:500px){
    #menu-expand{
        width: 440px;
        right: 0px;
        bottom: -21.5em;
    }
    .show-menu{transform: translateY(-99%);}
    .badgeNumber .Number {min-width: 1.7em;}

    .menu_comments{right: -10%;}
    .menu_comments .comment textarea{max-width: 300px; min-width: 300px;}
    .menu_comments .classification{width: 300px;}
    .menu_comments .classification img{width: 10%;}
    .menu_comments .footer_option{width: 310px;}

    .menu_comments .comment::after{right: 100px;}

    .menu_comments .comment_feliz::after{right: 100px;}
    .menu_comments .comment_exito::after{right: 160px;}
    .menu_comments .comment_ali::after{right: 220px;}
    .menu_comments .comment_triston::after{right: 280px;}
    .menu_comments .comment_enojado::after{right: 340px;}

    .menu_comments .comment .comment_congrant{width: 220px;}
    
}
@media screen and (max-width: 453px){
    #menu-expand{display: none;}
    .menu_comments{display: none;}
}

