@media only screen and (max-width: 1023px) {

}

body {
    padding: 0;
    margin: 0;
    background-color: #000000;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#seasons_queue {
    height: 120px;
    display: table;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.season.active {
    filter: grayscale(0);
}

.season {
    box-sizing: border-box;
    height:80px;
    width: 25%;
    display: table-cell;
    filter: grayscale(1);
}

.season.spring {
    background-image: url("spring_button.svg");
    background-size: 100% 100%;
}

.season.summer {
    background-image: url("summer_button.svg");
    background-size: 100% 100%;
}

.season.autumn {
    background-image: url("autumn_button.svg");
    background-size: 100% 100%;
}

.season.winter {
    background-image: url("winter_button.svg");
    background-size: 100% 100%;
}

#main_wrapper {
    height: 100%;
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

#canvas_wrapper {
    background-image: url('spring3.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-color: #000000;
    background-position: center;
    /*width: 1000px;*/
    height: calc(100% - 200px);
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

.hidden_controls #canvas_wrapper {
    height: calc(100% - 120px);
}

#page_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

#canvas_wrapper.no_sol_key {
    background-image: none !important;
}

.hideControls {
    width: 40px;
}

#wave {
    height: 100%;
    display: inline-block;
}

#playerControls {
    border-top: 1px solid rgba(0,0,0,0.25);
    height: 80px;
    padding-top: 5px;
    box-sizing: border-box;
    background-color: rgba(255,128,128,0.1);
    box-shadow: 0 10px 30px rgba(255, 128, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.1) inset, 0px -7px 10px -10px rgba(255,255,255,0.2) inset, 0px 7px 10px -10px rgba(255,255,255,0.2) inset, 0 2px 0 0 rgba(255,255,255,0.2) inset;
    position: fixed;
    z-index: 30;
    bottom: 0px;
    width: 100%;
    transition: bottom 0.3s;
    display: flex;
    align-items: center;
}

#playerControls.hidden {
    bottom: -80px;
}

#player_buttons {
    display: table;
    height: 60px;
    margin: 0 auto;
    zoom: 0.8;
}

#player_buttons > div {
    display: table-cell;
    padding: 0 10px;
    background-repeat: no-repeat;
    background-position: center center;
    user-select: none;
    opacity: 0.8;
}

#playerControls .play {
    background-image: url("play.svg");
    width: 60px;
    cursor: pointer;
    opacity: 0.8;
    background-repeat: no-repeat;
    transition: rotate 0.3s, background 0.3s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#playerControls .rewind {
    background-image: url("rewind.svg");
    width: 40px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    cursor: pointer;
}

#playerControls .repeat {
    background-image: url("repeat_none.svg");
    width: 40px;
    -webkit-tap-highlight-color: transparent;
    rotate: 180deg;
    background-size: 30px;
    transition: rotate 0.3s, background 0.3s;
    user-select: none;
    cursor: pointer;
}

#playerControls .key_icon {
    background-image: url("key_icon.svg");
    width: 40px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

#playerControls .key_icon.inactive {
    background-image: url("key_icon_inactive.svg");
}

#playerControls .hideControls {
    background-image: url("hide_controls.svg");
    background-size: auto 30px;
    width: 40px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

#showControlsWrapper {
    position: fixed;
    bottom: -50px;
    right: 10px;
    opacity: 0.3;
    display: none;
    z-index: 1;
}

#showControlsWrapper.active {
    bottom: 10px;
    display: block;
}

.showControls {
    background-image: url("hide_controls.svg");
    width: 40px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 30px;
    rotate: 180deg;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

#playerControls .repeat.repeat_one {
    background-image: url("repeat_one.svg");
    width: 40px;
    rotate: 0deg;
    -webkit-tap-highlight-color: transparent;
    background-size: 30px;
}

#playerControls .repeat.repeat_all {
    background-image: url("repeat.svg");
    width: 40px;
    rotate: 90deg;
    -webkit-tap-highlight-color: transparent;
    background-size: 30px;
}

#playerControls .fullscreen {
    width: 40px;
    background-image: url("fullscreen.svg");
    background-size: 30px;
    cursor: pointer;
}

#playerControls .forward {
    background-image: url("forward.svg");
    width: 40px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    cursor: pointer;
}

#playerControls .play.playing {
    background-image: url("pause.svg");
    rotate: 180deg;
}

#playerControls .pause {
    background-image: url("pause.svg");
    width: 60px;
}

.spring #playerControls {
    background-color: rgba(255,128,128,0.1);
}

.summer #playerControls {
    background-color: rgba(255,255,128,0.1);
}

.autumn #playerControls {
    background-color: rgba(255,192,128,0.1);
}

.winter #playerControls {
    background-color: rgba(128,255,255,0.1);
}

.spring #canvas_wrapper {
    background-image: url('spring3.png');
}

.summer #canvas_wrapper {
    background-image: url('summer3.png');
}

.autumn #canvas_wrapper {
    background-image: url('autumn3.png');
}

.winter #canvas_wrapper {
    background-image: url('winter3.png');
}