.indososh-orbit-container {
    position: fixed;
    bottom: 20px;
    right: 50vw;
    z-index: 99999;
    width: 80px;
    height: 80px;
}

.indososh-orbit-center {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0073aa;
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: background 0.3s;
}

.indososh-orbit-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
}

.indososh-orbit-buttons a {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translate(0, 0);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indososh-orbit-buttons a svg,
.indososh-orbit-buttons a img {
    width: 22px;
    height: 22px;
    fill: white;
    object-fit: contain;
}

.indososh-orbit-container.active .indososh-orbit-buttons a {
    opacity: 1;
    pointer-events: auto;
}