body, html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#Stage,
#Stage *{
	position: absolute;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-text-size-adjust: none;
}

.Spinner svg {
	animation: rotation 1.4s linear infinite;
	stroke: #E88CA5;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(270deg);
	}
}

.Spinner svg circle {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	transform-origin: 0, 0;
	animation: turn 1.4s ease-in-out infinite;
}

@-webkit-keyframes turn {
	0% {
		stroke-dashoffset: 187;
	}

	50% {
		stroke-dashoffset: 46.75;
		transform: rotate(135deg);
	}

	100% {
		stroke-dashoffset: 187;
		transform: rotate(450deg);
	}
}

@keyframes turn {
	0% {
		stroke-dashoffset: 187;
	}

	50% {
		stroke-dashoffset: 46.75;
		transform: rotate(135deg);
	}

	100% {
		stroke-dashoffset: 187;
		transform: rotate(450deg);
	}
}

#videoExportGUI {
    background-color: gray;    
    padding: 20px;
    border-radius: 3px;
    left: 50%;
    top: 50%;
    width: 500px;
    height: 106px;
    position: absolute;
    z-index: 10;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transform: translateX(-50%) translateY(-50%);
	display: none;
	z-index:100;
}

.sparkText {
    color: white;
    height: 15px;
}

#videoExportProgressBarContainer {
    width: 95%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 15px;
}

#videoExportSettingsContainer {
    
}

.quality-container {
    color: #FFF;
    display: flex;
    flex-direction: row;
    float:left;
}

#qualitySettingTitle {
    padding-top: 5px;
    margin-right: 5px;
}

.dropbtn {
    width: 60px;
    height: 16px;
    padding: 6px;

    background-color: #3498DB;
    color: white;
    
    border: none;
    border-radius: 5px;
    cursor: pointer;

    text-align: center;
    font-size: 16px;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 120px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-item {
    color: black;
    padding: 6px 8px;
    text-decoration: none;
    display: block; 
    z-index: 12;
}

.dropdown-item:hover {
    background-color: #FFF;
}

.show {
    display:block;
}

.videoDownloadButton {
    border-radius: 5px;
    cursor: pointer;
    color: white;
    font-size: 18px;
    background-color: #333;
    text-align: center;
    padding: 6px;
    height: 20px;
    width: 160px;
    float:right;
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}

.videoDownloadButton:hover {
    background-color: #00D9A7;
}

.videoDownloadButton:active {
    background-color: #01C094;
}
