
.ctrl-bar {
    display: flex;
    position: fixed;
    justify-content: center;
    align-content: center;
    width:100%;
    bottom: 5%;
}

.ctrl-button {
    display: flex;
    justify-items: center;
    align-items: center;
    transform-origin: center;
    width: auto;
    margin: auto;
    opacity: 0.5;
    padding-bottom: 10px; 
}

.ctrl-button:active .icon{
    color:var(--ultra-light-text);
    transition: color .1s ease;
}

#window {
    height: 50px;
    display:flex;
    aspect-ratio: 1 / 1;
    padding-bottom: 0;
    align-content: center;
    justify-content: center;
    border: 3px solid;
    border-color: var(--light-text);
    border-radius: 50%;
    background-color: var(--light-text);  
    scale: 1;
    transition: background-color .3s ease scale .5s ease-in-out;  
}


@media (hover: hover) and (pointer: fine) {
#window:hover {
    scale: 1.15;
    transition: scale .5s ease-in-out; 
}
}

#window:active{
    background-color: var(--ultra-light-text); 
    transition: background-color .3s ease;
}

#window.open {
    background-color: transparent;  
    transition: background-color .3s ease;
}
#window.open:active {
    background-color: transparent;  
    transition: background-color .1s ease;
}

.swipe-info {
    display: flex;
    flex-direction: row;
    align-items: top;
    scale: .8;

    position: fixed;
    bottom:17%;
    left:-50%;
    width: auto;
    height : auto;
    z-index :1000;
    transition: left 4s linear;
}

.swipe-info.show {
    left: 150%;
    transition: left 4s linear;
}

#swipe-icon {
    height: 60px;
    width: auto;
    margin: 10px;
}

#swipe-text{
    color: var(--light-text);
    font-size: 35px;
    text-shadow:-3px 0 0 var(--middle-shadow),
                -6px 0 0 var(--light-shadow);
}



@media (orientation: landscape){

.ctrl-bar {
    flex-direction: column;
    height:100%;
    width:10%;
    right: 5%;
    bottom: 0;
}   

.swipe-info {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    scale: .8;
    position: fixed;
    bottom: -50%;
    left:auto;
    right: 17%;
    transition: bottom 4s linear;
    z-index: 1000;
}

.swipe-info.show {
    left:auto;
    bottom: 150%;
    transition: bottom 4s linear;
}

#swipe-icon {
    margin: 5px;
}

#swipe-text{
    color: var(--light-text);
    font-size: 35px;
    text-shadow: 0 5px 0 var(--middle-shadow),
                 0 10px 0 var(--light-shadow);
}
}

@media only screen and (min-width: 1081px) and (hover: hover) and (pointer: fine){
.ctrl-bar {
    display: none;
}
}