#skipMapTimeline, #pauseMapTimeline, #resumeMapTimeline {
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 20px;
    background-size: cover;
    display: none;
    z-index: 10;
    cursor: pointer;
}
#skipMapTimeline {
    right: 60px;
    background-image: url("../images/btn_timeline_skip.png");
}
#pauseMapTimeline {
    right: 20px;
    background-image: url("../images/btn_timeline_pause.png");
}
#resumeMapTimeline {
    right: 20px;
    background-image: url("../images/btn_timeline_play.png");
    display: none;
}
#gameWindow.mapTimeline.gamePaused #pauseMapTimeline {
    display: none !important;
}
#gameWindow.mapTimeline.gamePaused #resumeMapTimeline {
    display: block;
}

#timelineButtons {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: -40px;
    padding-top: 4px;
    display: flex;
    z-index: 3;
    height: 40px;
    width: 380px;
    margin-left: -190px;
    background-image: url("../images/barra_comand-video.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: 1s bottom;

    align-items: center;
    justify-content: center;
}
#timelineButtons.showTimelineControls {
    bottom: -2px;
}


#timelinePause, #timelineResume, #timelineSkip {
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
    cursor: pointer;
}

#timelineResume {
    background-image: url("../images/btn_play.png");
}

#timelinePause {
    background-image: url("../images/btn_pause-selected.png");
}

#timelineSkip {
    background-image: url("../images/btn_skip.png");
}

#timelineAutoplay {
    width: 88px;
    height: 22px;
    background-image: url("../images/btn_autoplay.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    appearance: none;
    margin: 0;
    
    cursor: pointer;
}

#timelineAutoplay:checked {
    background-image: url("../images/btn_autoplay-selected.png");
}

#gameWindow.gamePaused #webContainer {
    filter: saturate(0) brightness(0.5);
}

#bigPause {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display:flex;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s opacity;
}
.pauseImg {
    background-image: url("../images/big_pause.png");
    height: 50px;
    width: 50px;
    display: block;
    margin: 0 auto;
    background-size: 100%;
    background-position: center;
    animation: pulse 3s infinite;
}
@keyframes pulse {
	0% {
		transform: scale(0.9);		
	}

	50% {
		transform: scale(1);		
	}

	100% {
		transform: scale(0.9);		
	}
}
#gameWindow.gamePaused #bigPause {
    opacity: 1;
    z-index: 2;
    pointer-events: all;
}
