.fruit-container {
    width: 630px;
    height: 490px;
    border-radius: 15px;
    position: relative;
}

#fruit-table {
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px -5px #000000;
    background: rgba(255,255,255,0.5);
    position: relative;
    border-radius: 15px;
}

#jam-game .row {
    height: 100%;
}

#jam-game .col-10, #jam-game .col-2 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#jam-game .col-2 {
    flex-direction: column;
    justify-content: space-evenly;
}

#jam-game .col-2 .score {
    margin-bottom: 20px;
}

#jam-game .col-2 #fruitScore, #jam-game .col-2 #fruitTime {
    margin-left: 5px;
}

#fruit-table tr {
    height: 70px;
}

.ui-draggable-dragging {
    z-index: 5;
}

#fruit-table td {
    padding: 0;
}

#fruit-table td div {
    width: 70px;
    height: 70px;
}

.overlay-fruit {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 630px;
    height: 490px;
    top: 0;
    left: 0;
    z-index: 5;
    background: rgba(0,0,0,0.5);
}

.fruit-info {
    padding: 10px;
    background: rgba(255,255,255,0.5);
    box-shadow: 0px 0px 10px -5px #000000;
    border-radius: 15px;
    width: 115px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.fruit-mouse {
    width: auto;
    height: 90px;
}

.blueberry {
    background: url("../images/sprites/blueberry.png");
}

.strawberry {
    background: url("../images/sprites/strawberry.png");
}

.lemon {
    background: url("../images/sprites/lemon.png");
}

.apple {
    background: url("../images/sprites/apple.png");
}

.kiwi {
    background: url("../images/sprites/kiwi.png");
}

.cherry {
    background: url("../images/sprites/cherry.png");
}