/*-- ======================================================================|
--   ____      _      __  __   _____      ____    ___    ____    _____   |
--  / ___|    / \    |  \/  | | ____|    / ___|  / _ \  |  _ \  | ____|  |
-- | |  _    / _ \   | |\/| | |  _|     | |     | | | | | | | | |  _|    |
-- | |_| |  / ___ \  | |  | | | |___    | |___  | |_| | | |_| | | |___   |
--  \____| /_/   \_\ |_|  |_| |_____|    \____|  \___/  |____/  |_____|  |
--                                                                       |
-- @ Author Enctype | www.gamecode.com.br                                |
-- ======================================================================|*/

@font-face {
    font-family: 'EdsbackaFlareSerif';
    font-style: normal;
    font-weight: normal;
    src: local('EdsbackaFlareSerif'), url('../fonts/EdsbackaFlareSerif.ttf') format('truetype');
}

body {
    padding: 0px;
    margin: 0px;
    background: transparent;
    overflow: hidden;
}
.launcher {
    background: url('../images/bg.png') no-repeat;
    width: 836px;
    height: 561px;
    position: relative;
    -webkit-user-select: none;
    -webkit-app-region: drag;
    overflow: hidden;
}
.launcher .logo {
    background: url('../images/logo.png') no-repeat;
    width: 292px;
    height: 194px;
    position: absolute;
    left: 346px;
    top: 1px;
}
.launcher .buttons {
    width: 90px;
    position: absolute;
    right: 27px;
    top: 101px;
}
.launcher .buttons .minimize {
    background: url('../images/minimize.png') no-repeat;
    width: 25px;
    height: 26px;
    cursor: pointer;
    position: absolute;
    left: 1px;
    top: 1px;
    -webkit-app-region: no-drag;
}
.launcher .buttons .closed {
    background: url('../images/closed.png') no-repeat;
    width: 30px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    left: 30px;
    top: 11px;
    -webkit-app-region: no-drag;
}
.launcher .buttons .settings {
    background: url('../images/settings.png') no-repeat;
    width: 30px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    left: 57px;
    top: 34px;
    -webkit-app-region: no-drag;
}
.launcher .buttons .minimize:hover,
.launcher .buttons .closed:hover,
.launcher .buttons .settings:hover {
    filter: brightness(120%);
}
.launcher .container {
    width: 442px;
    margin: 190px 0px 0px 350px;
    display: flex;
    justify-content: space-between;
}
.launcher .container .others {
    margin: 0px;
}
.launcher .container .others .t1 {
    font-family: "Arial", "sans-serif";
    font-size: 9px;
    color: #00f0ff;
    margin: 84px 0px 0px 6px;
}
.launcher .container .others .t2 {
    font-family: "Arial", "sans-serif";
    font-size: 9px;
    color: #00f0ff;
    margin: 6px 0px 0px 6px;
}
.launcher .container .others .register {
    display: block;
    background: url('../images/register.png') no-repeat;
    width: 116px;
    height: 34px;
    cursor: pointer;
    margin: 8px 0px 0px 1px;
    -webkit-app-region: no-drag;
}
.launcher .container .others .register:hover {
    filter: brightness(120%);
}
.launcher .container .others .winmode {
    position: relative;
    top: 2px;
    left: 0px;
    -webkit-app-region: no-drag;
}
.launcher .container .others .winmode .c {
    width: auto;
    display: block;
    position: relative;
    padding-left: 13px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    font-family: 'Arial', 'sans-serif';
    margin: 32px 0px 0px 1px;
}
.launcher .container .others .winmode input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.launcher .container .others .winmode .checkwin {
    position: absolute;
    top: 4px;
    left: 0;
    height: 7px;
    width: 7px;
    background-color: #002d37;
    border: 1px solid #abf6ff;
}
.launcher .container .others .winmode .checkwin:after {
    content: "";
    position: absolute;
    display: none;
}
.launcher .container .others .winmode .c input[type="checkbox"]:checked ~ .checkwin:after {
    display: block;
}
.launcher .container .others .winmode .c .checkwin:after {
    left: 2px;
    top: 2px;
    width: 3px;
    height: 3px;
    background: white;
}
.launcher .container .others .start {
    background: url('../images/start.png') no-repeat;
    width: 116px;
    height: 34px;
    margin: 6px 0px 0px 0px;
    cursor: pointer;
    -webkit-app-region: no-drag;
}
.launcher .container .others .start:hover {
    filter: brightness(120%);
}
.launcher .container .news {
    background: url('../images/news.png') no-repeat;
    width: 298px;
    height: 237px;
    margin: 1px 2px 0px 0px;
}
.launcher .container .news .content {
    margin: 25px 0px 0px 0px;
}
.launcher .container .news .content .list {
    display: flex;
    justify-content: space-between;
    margin: 0px auto 0px;
    border-bottom: 1px solid #ebe9e921;
    width: 90%;
    padding: 10px 0px;
}
.launcher .container .news .content .list:last-child {
    border-bottom: none;
}
.launcher .container .news .content .list p {
    color: #fff;
    font-size: 12px;
    font-family: "Arial", "sans-serif";
    margin: 0px 0px 0px 0px;
    cursor: pointer;
    -webkit-app-region: no-drag;
}
.launcher .container .news .content .list p:hover {
    color: #00f0ff;
}
.launcher .container .news .content .list span {
    display: block;
    color: #00f0ff;
    font-size: 12px;
    font-family: "Arial", "sans-serif";
    margin: 0px 0px 0px 0px;
}
.launcher .bg-settings {
    background: url('../images/bg-settings.png') no-repeat;
    width: 331px;
    height: 470px;
    position: absolute;
    top: 30px;
    left: 320px;
    display: none;
}
.launcher .bg-settings .closed {
    background: url('../images/closed.png') no-repeat;
    width: 30px;
    height: 32px;
    margin: 74px 0px 0px 280px;
    cursor: pointer;
    -webkit-app-region: no-drag;
}
.launcher .bg-settings .closed:hover {
    filter: brightness(120%);
}
.launcher .bg-settings form {
    padding: 0px;
    margin: 18px 0px 0px 19px;
    width: 290px;
    -webkit-app-region: no-drag;
}
.launcher .bg-settings form .row {
    display: flex;
    margin: 10px auto 0px;
    width: 245px;
    justify-content: space-between;
    gap: 28px;
}
.launcher .bg-settings form .row .form-group {
    width: 110px;
    margin: 10px 0px 0px 0px;
}
.launcher .bg-settings form .row .form-group .title {
    display: block;
    font-family: "Arial", "sans-serif";
    font-size: 12px;
    color: #a1b9ff;
    margin: 0px 0px 0px 1px;
}
.launcher .bg-settings form .row .form-group input[type="text"] {
    width: 103px;
    height: 23px;
    padding: 0px 0px 0px 5px;
    margin: 10px 0px 0px 0px;
    outline: none;
    border: 1px solid #000000;
    font-family: "Arial", "sans-serif";
    font-size: 12px;
}
.launcher .bg-settings form .row .form-group select {
    width: 110px;
    height: 25px;
    padding: 0px 0px 0px 5px;
    margin: 10px 0px 0px 0px;
    outline: none;
    border: 1px solid #000000;
    font-family: "Arial", "sans-serif";
    font-size: 12px;
}
.launcher .bg-settings form .form-group .content-s {
    width: 119px;
    display: block;
    position: relative;
    padding-left: 18px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    font-family: "Arial", "sans-serif";
    margin: 6px 0px 0px 0px;
}
.launcher .bg-settings form input[type="checkbox"], .launcher .bg-settings form input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.launcher .bg-settings form .form-group .checkbox, .launcher .bg-settings form .form-group .checkradio {
    position: absolute;
    top: 0px;
    left: 0;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    border: 2px solid #a1b9ff;
    background-color: #fff;
}

.launcher .bg-settings form .form-group .checkbox:after, .launcher .bg-settings form .form-group .checkradio:after {
    content: "";
    position: absolute;
    display: none;
}

.launcher .bg-settings form .form-group .content-s input[type="checkbox"]:checked ~ .checkbox:after, .launcher .bg-settings form .form-group .content-s input[type="radio"]:checked ~ .checkradio:after {
    display: block;
}

.launcher .bg-settings form .form-group .content-s .checkbox:after, .launcher .bg-settings form .form-group .content-s .checkradio:after {
    left: 1px;
    top: 1px;
    width: 7px;
    height: 7px;
    background: #161616;
    border-radius: 50%;
}
.launcher .bg-settings form .form-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 58%;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: 16px;
    margin: 19px 0px 0px 0px;
    border: none;
    background: transparent;
}

.launcher .bg-settings form .form-group input[type="range"]::-webkit-slider-runnable-track {
    height: 15px;
    background-color: #fff;
    border: none;
    border-radius: 16px;
}
.launcher .bg-settings form .form-group input[type="range"]::-moz-range-track {
    height: 15px;
    background-color: #fff;
    border-radius: 16px;
}
.launcher .bg-settings form .form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    width: 15px;
    background-color: #a1b9ff;
    border-radius: 50%;
    border: 2px solid #6e7fb7;
    box-shadow: -407px 0 0 400px #6e7fb7;
}
.launcher .bg-settings form .form-group input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    box-shadow: -407px 0 0 400px #fff;
}
.launcher .bg-settings form .form-group .number {
    color: #fff;
    font-size: 22px;
    font-family: "Arial Black", "sans-serif";
    padding: 0px 0px 0px 3px;
    filter: drop-shadow(2px 4px 6px black);
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.launcher .bg-settings form .save {
    background: url('../images/save.png') no-repeat;
    width: 116px;
    height: 34px;
    cursor: pointer;
    margin: 15px auto 0px;
    text-decoration: none;
    border: none;
    display: block;
    outline: none;
}
.launcher .bg-settings form .save:hover {
    filter: brightness(110%);
}