.bubbles-container {
    bottom: 120px;
    left: 40px;
    position: fixed;
    z-index: 10;
}

.bubbles-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
}

.bubble-single {
    aspect-ratio: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: #EE744C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    -webkit-box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px rgba(0,0,0,0.14),0px 1px 18px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px rgba(0,0,0,0.14),0px 1px 18px rgba(0,0,0,0.12);
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px rgba(0,0,0,0.14),0px 1px 18px rgba(0,0,0,0.12);
    height: 64px;
    width: 64px;
}

.bubble-single img {
    height: auto;
    margin: auto;
    max-width: 75%;
}

.body-bg.root-160 .bubble-single {
    background-color: #008B8B;
}

.body-bg.root-193 .bubble-single {
    background-color: #0045A5;
    z-index: 50;
}

@media only screen and (max-width: 900px) {

    .bubbles-container {
        bottom: 75px;
        left: 24px;
    }

    .bubbles-wrap {
        gap: 7.5px;
    }

    .bubble-single {
        height: 44px;
        width: 44px;
    }

}
