#mobile-buttons{
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    bottom: 15%;
}

.bt-touch-control{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #ffca1c;
    border-radius: 30px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 20px 6px #993A17; 
    box-shadow: 0px 0px 20px 6px #993A17;
}

.bt-touch-control:active path {
    fill: #993a17;
}

#buttons-left,
#buttons-right{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
}

#throw {
    width: 46px;
    height: 46px;
    border: 2px solid #000000 !important;
}

#throw img{
    width: 55px;
}

#throw:active {
    border-color: #993a17;
}

.change-position {
    flex-direction: column;
    top: 10px !important;
    right: -40px !important;
    align-items: baseline !important;
}

@media screen and (max-width: 700px) {
    #controls-menu {
        width: 350px;
        max-height: calc(100vh - 20px);
    }

    #controls-menu h2 {
        font-size: 32px;
        margin-top: 5% !important;
        margin-bottom: 3% !important;
    }

    .controls-section h3 {
        font-size: 25px;
    }

    .control-row {
        font-size: 22px;
    }

    .controls-section {
        gap: 25px !important;
    }

    #buttons.buttons-endscreen {
        bottom: -10px;
    }
}

@media screen and (max-width: 700px) and (max-height: 500px) {
       #controls-menu {
        height: calc(100vh - 10%);
    } 
}

@media screen and (max-width: 1000px) {   
    #controls-menu {
        max-height: calc(100vh - 20px);
    }

    #controls-menu h2 {
        margin-top: 3%;
        margin-bottom: 1%;
    }

    .controls-section {
        gap: 15px;
    }
}