html {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

body { 
	background: url('../img/main-bg.jpg') center top no-repeat;
	background-size: cover;
	font-family: arial, helvetica, sans-serif; 
}

img {
    display: block;
    max-width: 100%;
}

.logo-wrapper,
.sub-logo-wrapper {
    position: absolute;
    left: 20px;
    top: 20px;
}

.sub-logo-wrapper {
	left: auto;
	right: 20px;
}

.session-wrapper {
	font-size: 12px;
	
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.session-wrapper .session-control,
.session-wrapper .session-content {
	padding: 10px;
}
.session-wrapper .session-content {
	background: white;
}

.session-wrapper .session-control a {
	display: inline-block;
}
.session-wrapper .session-control a:first-child {
	margin-right: 30px;
}

.control-panel {
    padding: 60px 0px;
}

canvas#canvas {
	display: block;
    margin: 0px auto;
    max-width: 100%;
    height: auto;    
}

/* Popup */
#popup-overlay {
	display: none;
	position: absolute;
	z-index: 2000;
	opacity: 0.7;
	top: 0;
	bottom: 0;
	background: #999;
	width: 100%;
	height: 100%;
}

.popup-container {
	font-family: Helvetica, Arial, freesans, sans-serif;
	display: none;
	position: absolute;
	z-index: 2100;
	top: 100px;
	left: 50%;
	width: 360px;
	margin-left: -250px; /*Half the value of width to center div*/
	/* margin-top: -100px;  Half the value of height to center div*/
	background: #fff;
	border-radius: 10px;
	padding: 10px;
}

.popup-controls {
}

.popup-close {
	float: right;
	padding: 6px;
	font-weight: bold;
	cursor: pointer;
}

.popup-submit {
	float: right;
	font-weight: bold;
	cursor: pointer;
	margin: 6px;
	margin-right: 12px;
}

.popup-content {
	padding: 2px;
	height: auto;
	margin: 10px;
	width: 90%;
}

.prize-wrapper {
	width: 300px;
	margin: 0px auto;
	background: #888;
}
/*
.prize-image {
	max-width: 100%;
	height: auto;
	opacity: 0.5;
	filter: grayscale(100%);
}

.prize-item.p-1.selected {
	padding: 0px !important;
	border: #333 solid .25rem;
}
.prize-item.p-1.selected .prize-image {
	filter: none;
	opacity: 1;
}
*/
.wheel-wrapper {
	position: relative;
}

.wheel-pin {
	margin-left: -25px;

    position: absolute;
    left: 50%;
    top: -40px;
}

.wheel-center {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -80px;
    margin-top: -80px;
}

#pretext {
    display: none;
}

a.btn-spin {
    display: inline-block;
}

.swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, 0.8);
}

.swal2-popup {
    width: 50%;
    background: transparent;
}

.swal2-content {
    color: white;
}

.swal2-content .prize-image-wrapper img {
    max-height: 500px;
    margin: 0px auto;
}

.swal2-content h4 {
    font-size: 40px;
}
.swal2-content h4,
.swal2-content p {
    padding-bottom: 10px;
}

button.swal2-confirm {
    background: white;
    border: none;
    padding: 10px 30px;
    font-size: 30px;
    line-height: 30px;

    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}