body {
    min-width: 320px;
}

#gameArea > h6 {
    /* aspect ratio warning */
    background-color: rgba(255, 255, 255, 0.75);
    padding: 16px 15px;
    z-index: 6;
}

#gameArea #backgrounds {
    align-content: flex-start;
    align-items: flex-start;
    display: none;
    height: 100%;
    justify-content: center;
    margin: auto;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 20%;
    width: 100%;
    z-index: 5;
}

#backgrounds .background, #chooseSoundTime div.background {
    background-position: center center;
    background-size: cover;
    border-radius: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    height: 21%;
    margin: 2.5% 6%;
    max-width: 12%;
    width: 12%;
}

#timeChooser option {
    /*background-image: url("../../graphX/icons/credits.png");*/
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-size: 15px auto;
}

#backgrounds .background:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 1);
}

#chooseText {
    display: none;
    font-size: 3em;
    position: absolute;
    text-align: center;
    text-shadow: 0 0 5px #ffffff;
    top: 9%;
    width: 100%;
    z-index: 1;
}

#chooseSoundTime {
    display: none;
    height: 82%;
    left: 0;
    position: absolute;
    top: 18%;
    width: 100%;
}

#chooseSoundTime div.background {
    cursor: default;
    height: 27%;
    margin: 25px auto 50px;
    width: 20%;
}

#chooseSoundTime button.startCalm {
    background-color: #7fb23f;
    border-color: #7fb23f;
    color: white;
    display: none;
}

#gameArea {
    background-size: cover;
}

#clockWrapper {
    display: none;
}

#fullScreen {
    display: none;
}

#playerWrapper {
    bottom: 5%;
    display: none;
    left: 50%;
    position: absolute;
}

#player {
    background: rgba(0, 0, 0, 0) url("../../graphX/games/calm/soundbar/volume-background.png") no-repeat scroll left top;
    height: 50px;
    left: -50%;
    position: relative;
    width: 385px;
}

#volume {
    position: absolute;
    left: 24px;
    margin: 0 auto;
    height:15px;
    width: 300px;
    background: url('../../graphX/games/calm/soundbar/volume-empty.png') no-repeat left top;
    border: none;
    outline: none;
}

#volume .ui-slider-range-min {
    height:15px;
    width: 300px;
    position: absolute;
    background: url('../../graphX/games/calm/soundbar/volume-full.png') no-repeat left top;
    border: none;
    outline: none;
    transition: none;
}

#volume .ui-slider-handle {
    width: 38px;
    height: 39px;
    background: url('../../graphX/games/calm/soundbar/volume-knob.png') no-repeat left top;
    position: absolute;
    margin-left: -15px;
    cursor: pointer;
    outline: none;
    border: none;
    transition: none;
}

/* remove standard-styles */
select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-radius: 0;
    font-size: 1em;
}


/* styling */
select {
    background-color: white;
    background-image: url("../../graphX/icons/dropDownWithBack.png");
    background-position: right center;
    background-repeat: no-repeat;
    border: 1px solid #dcdcdc;
    color: #484848;
    font-size: 0.7em;
    margin: 25px;
    padding: 0.2em 0.5em;
    width: 25%;
}

select:hover {
    border-color: #a0a0a0;
}

/* hide browser-styling (arrow) in IE10 */
select::-ms-expand {
    display:none;
}

.lt-ie10 select {
    background-image: none;
}

option {
    border-right: 1px solid #a0a0a0;
    border-left: 1px solid #a0a0a0;
    color: #a0a0a0;
    padding:.3em 1em .3em 1em;
}

#curLevelLarge {
    display: none;
}

@media (max-width: 1109px) {
    #chooseText {
        font-size: 2em;
    }
}

@media (max-width: 749px) {
    #chooseText {
        font-size: 1em;
    }
}

@media (max-width: 999px) {
    button.startCalm {
        bottom: 5%;
        position: absolute;
        right: 1%;
    }
}

@media (max-width: 899px) and (min-width: 550px) {
    #playerWrapper {
        bottom: 0;
    }
}

@media (max-width: 549px) {
    #playerWrapper {
        bottom: 30%;
    }
}