.UIGroup{

}

.gradientUI{
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.gradientLeft{
    left: 0;
    height: -webkit-fill-available;
    width: 400px;
    background-image: linear-gradient(to right, rgb(0, 0, 0, 60%), rgba(0, 0, 0, 0));
}

.gradientRight{
    right: 0;
    height: -webkit-fill-available;
    width: 400px;
    background-image: linear-gradient(to left, rgb(0, 0, 0, 60%), rgba(0, 0, 0, 0));
}


.gradientBottom{
    bottom: 0;
    height: 44px;
    width: -webkit-fill-available;
    background-image: linear-gradient(to top, rgb(0, 0, 0, 50%), rgba(0, 0, 0, 0));
}

.middleUI{
    position: absolute;
    z-index: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
    pointer-events: none;
}

.panTooltip{
    scale: 0.54;
    opacity: 0.75;
    bottom: 145px;
    position: absolute;
    
    display: none;
}

.bHomeButton{
    width: inherit;
    align-content: center;
    display: grid;
    position: fixed;
    bottom: 14px;
    justify-content: center;
    margin-left: 0px;
}

/*-------------*/

.ppButtonRing{
    width: 50px;
    height: 50px;
}

.ppNextButtonRing{
    width: 40px;
    height: 40px;
}

.ssNextButtonRing{
    width: 50px;
    height: 50px;
}

.ssRing{
    width: 50px;
    height: 50px;
    bottom: 50px;
    margin-left: 63px;
}

.oLVRing{
    display: none;
    width: 45px;
    height: 45px;
}

.sLVRing{
    width: 55px;
    height: 55px;
}


.rounded{
    border-radius: 50px;
}

.boxy{
    border-radius: 18px;
}


.ping {
    animation: ping 1.5s ease-in-out infinite;
    
    background-color: unset;
    border: solid 4px;
    position: fixed;
    color: white;
    transform-origin: center;
    
    pointer-events: none;
    z-index: 30;
}

/**
 * ----------------------------------------
 * animation ping
 * ----------------------------------------
 */
 @-webkit-keyframes ping {
    0% {
      -webkit-transform: scale(1);
        transform: scale(1);
      opacity: 1;
    }
    80% {
      -webkit-transform: scale(2);
              transform: scale(2);
      opacity: 0.5;
    }
    100% {
      -webkit-transform: scale(3);
              transform: scale(3);
      opacity: 0;
    }
  }
  @keyframes ping {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        transform-origin: center;
        opacity: 1;
    }
    80% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        transform-origin: center;
        opacity: 0;
        border-width: 0px;
    }
    100% {
        -webkit-transform: scale(2.3);
        transform: scale(2.3);
        transform-origin: center;
        border-width: 0px;
        opacity: 0;
    }
  }
  