.speech-bubble{
    display: flex;
    list-style: none;
}
.speech-bubble > li{
    margin: 0 10px;
    position: relative;
    transition: .2s;
}
.speech-bubble > li:before{
    opacity: 0;
    box-sizing: border-box;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%) translateY(25px);
    width: 9px;
    height: 9px;
    box-shadow: 3px 8px 19px -8px rgba(0,0,0,0.6);
    border: 6px solid transparent;
    border-bottom: 9px solid #000;
    content: '';
    transition: .2s;
}
.speech-bubble > li.is-arrow:before{
    opacity: 1;
    transform: translateX(-50%) translateY(15px);
}
.speech-bubble > li > a{
    background-color: #313131;
    padding: 10px;
    border-radius: 10px;
    transition: .4s;
    display: block;
    color: #fff;
    text-decoration: none;
}
.speech-bubble a:hover{
    opacity: .7;
}
.bubblemenu{
    position: absolute;
    top: 30px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    transform: translateY(10px);
    padding: 10px 0 0;
    width: 100%;
}
.bubblemenu-content{
    padding: 20px 0 0;
}
.bubblemenu-inner{
    width: 500px;
    box-shadow: 3px 8px 19px -8px rgba(0,0,0,0.6);
    padding: 50px 30px;
    border-radius: 10px;
    position: relative;
    background-color: #dfd;
    right:360px;
}
.is-active{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.bubblemenu-content li{
    margin: 0 0 10px;
}
.bubblemenu-content li:last-of-type{
    margin: 0;
}
.error-messege{
	color:red;
}