#btnContainer {
    width: 70%;
    display: flex;
    justify-content:space-between;
    margin-top: 10px;
    font-size: 24px;
    margin: 30px 100px 0px 100px;
    text-shadow: 2px 2px 5px black;
}

.control_circle {
    touch-action: none; 
}

.btn {
    padding: 10px;
    height: 50px;
    background-color: #FF9601;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    color: rgb(250, 222, 75);
    box-shadow: 0px 5px 15px -2px rgba(0,0,0,0.46);
    cursor: pointer;
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn:hover {
    color: rgb(225 199 65);
}

.control_element {
    display: flex;
    position: relative;
    z-index: 9999; 
}

.nextBtn_right {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.nextBtn_right svg{
    width: 60px;
    height: 60px;
}

.nextBtn_right:hover svg{
    fill: #FF9601;
}

.nextBtn_left {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
}

.nextBtn_left svg{
    width: 60px;
    height: 60px;
}

.nextBtn_left:hover svg{
    fill: #FF9601;
}

#arrowRight {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-user-select: none; 
    user-select: none;
}

#arrowRight:hover {
    border-color: #FF9601;
}

#arrowRight:hover svg{
    fill: #FF9601;
}

#arrowLeft {
    position: absolute;
    bottom: 10px;
    right: 70px;
    cursor: pointer;
    -webkit-user-select: none; 
    user-select: none;
}

#arrowLeft:hover {
    border-color: #FF9601;
}

#arrowLeft:hover svg{
    fill: #FF9601;
}

#arrowUp {
    position: absolute;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
    -webkit-user-select: none; 
    user-select: none;
}

#arrowUp:hover {
    border-color: #FF9601;
}

#arrowUp:hover svg{
    fill: #FF9601;
}

#throwBtn {
    position: absolute;
    bottom: 70px;
    left: 10px;
    cursor: pointer;
    -webkit-user-select: none; 
    user-select: none;
}

#throwBtn svg {
    width: 70%;
    height: 70%;
    rotate: 65deg;
}

#throwBtn:hover {
    border-color: #FF9601;
}

#throwBtn:hover svg{
    fill: #FF9601;
}

.control_circle {
    width: 50px;
    height: 50px;
    display: flex;
    border: solid 4px black;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
}

.control_circle_small {
    width: 30px;
    height: 30px;
    display: flex;
    border: solid 3px black;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
}

.control_circle_small:hover {
    border-color: #FF9601;
}

    .control_circle svg {
        fill: black;
        width: 100%;
        height: 100%;
    }

@media(max-width: 600px) {
    #btnContainer {
        font-size: 20px;
        margin-left: 60px;
        margin-right: 60px;
    }

    .btn {
        height: 40px;
    }
}

@media(max-width: 500px) {

    #btnContainer {
        font-size: 16px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .btn {
        height: 30px;
    }
}

@media(max-width: 420px) {

    #btnContainer {
        font-size: 16px;
        margin-left: 40px;
        margin-right: 4;
        width: 100%;
        margin-top: 8px;
    }

    .btn {
        height: 30px;
    }
}

@media(max-height: 460px) {

    #btnContainer {
        margin-top: 20px;
    }
}

@media(max-height: 390px) {

    #btnContainer {
        margin-top: 10px;
    }
}

.close{
    position: absolute;
    top: 33px;
    right: 20px;
    cursor: pointer;
}

.close:hover svg{
    fill: #FF9601;
}