/*-- ======================================================================|
--   ____      _      __  __   _____      ____    ___    ____    _____   |
--  / ___|    / \    |  \/  | | ____|    / ___|  / _ \  |  _ \  | ____|  |
-- | |  _    / _ \   | |\/| | |  _|     | |     | | | | | | | | |  _|    |
-- | |_| |  / ___ \  | |  | | | |___    | |___  | |_| | | |_| | | |___   |
--  \____| /_/   \_\ |_|  |_| |_____|    \____|  \___/  |____/  |_____|  |
--                                                                       |
-- @ Author Enctype | www.gamecode.com.br                                |
-- ======================================================================|*/

body {
	padding: 0px;
	margin: 0px;
}
.launcher {
	background: url('../images/background.png') no-repeat top center;
	width: 331px;
	height: 400px;
	-webkit-app-region: drag;
	overflow: hidden;
	position: relative;
}
.launcher .closed {
	background: url('../images/closed.png') no-repeat;
	width: 30px;
	height: 32px;
	position: absolute;
	top: 10px;
	right: 24px;
	cursor: pointer;
	-webkit-app-region: no-drag;
}
.launcher .closed:hover {
	filter: brightness(120%);
}
.launcher .title {
	font-family: "Arial", "sans-serif";
	font-size: 9px;
	text-align: center;
	color: #cdecf6;
	margin: 38px 0px 0px 0px;
}
.launcher .title span {
	color: #00eaff;
}
.launcher .info {
	margin: 203px 0px 0px 32px;
	display: flex;
}
.launcher .info .progress-w {
	width: 176px;
	margin: 12px 0px 0px 0px;
}
.launcher .info .progress-w p {
	color: #fff;
	font-family: "Open Sans", "sans-serif";
	font-size: 10px;
	margin: 0px 0px 0px 12px;
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
	position: relative;
	top: -12px;
}
.launcher .info .progress-w .progress {
	background: url('../images/progress.png') no-repeat;
	width: 155px;
	height: 12px;
	outline: none;
	line-height: 16px;
	color: #0a0c05;
	font-size: 14px;
	display: block;
	margin: 12px 0px 12px 12px;
	position: relative;
	overflow: hidden;
}
.launcher .info .progress-w .progress:last-child {
	position: relative;
	top: -6px;
}
.launcher .info .progress-w .progress .progress-s {
	width: 151px;
	height: 6px;
	margin: 3px 0px 0px 2px;
	position: relative;
}
.launcher .info .progress-w .progress .progress-white {
	background: url('../images/progress-color.png');
	background-size: cover;
	height: 100%;
	position: absolute;
}
.launcher .info .progress-w .progress .progress-blue {
	background: url('../images/progress-color2.png');
	background-size: cover;
	height: 100%;
	position: absolute;
}
.launcher .info .checks {
	margin: 16px 0px 0px 0px;
}
.launcher .info .checks label {
    font-family: "Open Sans", "sans-serif";
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    width: 90px;
    text-align: left;
    margin: 0px 0px 0px 25px;
	-webkit-app-region: no-drag;
}
.launcher .info .checks .container {
    width: auto;
    position: relative;
    padding-left: 16px;
    cursor: pointer;
    font-size: 9px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	display: flex;
}
.launcher .info .checks input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.launcher .info .checks .checkradio {
    position: absolute;
    top: 0px;
    left: 0;
    height: 8px;
    width: 8px;
    background-color: #eee;
    border-radius: 50%;
}
.launcher .info .checks .container input[type="radio"] ~ .checkradio {
    border: 2px solid #0049b7;
    background-color: #fff;
}
.launcher .info .checks .checkradio:after {
    content: "";
    position: absolute;
    display: none;
}
.launcher .info .checks .container input[type="radio"]:checked ~ .checkradio:after {
    display: block;
}
.launcher .info .checks .container .checkradio:after {
    top: 1px;
    left: 1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0e0e0e;
}
.launcher .info .checks .container .sound {
	background: url('../images/sound.png') no-repeat;
	width: 13px;
	height: 12px;
	display: inline-block;
	margin: 0px 4px 0px;
}
.launcher .info .checks .container .no-sound {
	background: url('../images/no-sound.png') no-repeat;
	width: 13px;
	height: 12px;
	display: inline-block;
	margin: 1px 4px 0px;
}
.launcher button {
	background: url('../images/install.png') no-repeat;
	width: 116px;
	height: 34px;
	border: none;
	outline: none;
	margin: -4px auto 0px;
	display: block;
	cursor: pointer;
	-webkit-app-region: no-drag;
}
.launcher .buttons.disabled, .launcher .buttons.disabled:hover {
	filter: brightness(0.5);
}
.launcher button:hover {
	filter: brightness(120%);
}