.sl-bubble2,
.sl-bubble2 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-bubble2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-bubble2 .sl-loader {
    width: 150px;
    height: 40px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-bubble2 .sl-loader-title {
    padding-top: 10px;
    width: 100%;
    color: var(--cl);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.sl-bubble2 .sl-loader .sl-loader-items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sl-bubble2 .sl-loader .sl-loader-items .sl-bubble {
    width: 30px;
    height: 30px;
    background-color: var(--bg);
    border-radius: 100%;
    -webkit-animation: sl-bubble2 1200ms ease-in-out infinite;
    animation: sl-bubble2 1200ms ease-in-out infinite;
    -webkit-animation-delay: calc(var(--i) * -350ms);
    animation-delay: calc(var(--i) * -350ms);
}

@-webkit-keyframes sl-bubble2 {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes sl-bubble2 {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}