.bubble-wrap {
    position: fixed;
    display: none;
    top: 75vh;
    right: 50px;
    width: 150px;
    height: 150px;
    box-sizing: border-box;
    z-index: 9999;
}

.bubble-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.bubble-message > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
    overflow: hidden;
    box-sizing: border-box;
    background: rgba(219, 255, 212, 1); 
    /*background: #fff;*/
    /*border: 4px solid #35C5FF;*/
    border: 4px solid rgba(156, 218, 144, 1);
    border-radius: 50%;
    font-size: 14px;
    color: #333;
    text-align: center;
    display: flex;
    /* display: none; */
    justify-content: center;
    align-items: center;
    font-family: inherit;
}

.bubble-message_error > div {
    background: rgba(255, 217, 217, 1);
    border: 4px solid rgba(226, 144, 144,1);
}

.bubble-message_close_star > div {
    width: 150%;
    height: 150%;
    border: none;
    top: -25px;
    left: -45px;
    animation: opacityHide .7s ease-in-out;
    animation-fill-mode: both;
}

.bubble-message_close_green > div {
    background: url(green_big.png) 0px no-repeat;
}

.bubble-message_close_red > div {
    background: url(red_big.png) 0px no-repeat;
}

.bubble-message__close {
    position: absolute;
    display: none;
    /* top: 0px;
    right: 0px; */
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    font-size: 0;
    width: 20px;
    height: 20px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.bubble-message__close_show {
    display: inline-block;
    animation: opacityShow .5s ease-in-out;
    animation-fill-mode: both;
}
.bubble-message__close::before, .bubble-message__close::after {
    content:'';
    position: absolute;
    left: 0;
    top: 9px;
    height: 2px;
    width: 100%;
    background: #555;
}
.bubble-message__close::before {
    transform: rotate(45deg);
}
.bubble-message__close::after {
    transform: rotate(-45deg);
}

.bubble-wrap_show {
    display: block;
    animation: up 5s ease 0s both;
    
    /* animation-fill-mode: both, both; */
    /* margin-top: 70vh; */
}

.bubble-wrap_show .bubble-message {
    display: flex;
    animation: wobble 2s ease-in-out;
    animation-fill-mode: both;
}

@keyframes wobble {
	33.33% {
		transform: translateX(40px);
    }
    66.66% {
		transform: translateX(-20px);
	}
}

@keyframes up {
	0% {
        opacity: 0;
        margin-top: 0;
	}
	10% {
		opacity: 1;
    }
    70% {
        margin-top: -70vh;
    }
	100% {
		opacity: 1;
        margin-top: -70vh;
	}
}

@keyframes opacityShow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opacityHide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}