@charset "UTF-8";
/*
* Copyright 2020 TrueSecurity Team.
                 * @author deyvid0123 <David ednaldo da silva>
*/
/*noinspection CssBrowserCompatibilityForProperties*/
* {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-duration: 0.20s;
    transition-property: all;
}
*,*::before {opacity: 1;}
html,
body {
    height: 100%;
}
body {
    background-color: #f0f0f0;
}
/* Charging started */
#boxLogin.loading-started>.logoNitos,
#boxLogin.loading-started>.login>.raccoon,
#boxLogin.loading-started>.login>.title,
#boxLogin.loading-started>.login>.desc,
#boxLogin.loading-started>.login>form>label,
#boxLogin.loading-started::before {
    opacity: 0.5;
}
/*#boxLogin.loading-started>.login {*/
/*    background-color: rgba(255, 255, 255, 0.5);*/
/*}*/

#boxLogin.loading-started {
    transition-duration: 1s;
    background: rgb(23,92,255);
    background: -moz-linear-gradient(142deg, rgba(23,92,255,0.5) 0%, rgba(18,54,140,0.5) 100%);
    background: -webkit-linear-gradient(142deg, rgba(23,92,255,0.5) 0%, rgba(18,54,140,0.5) 100%);
    background: linear-gradient(142deg, rgba(23,92,255,0.5) 0%, rgba(18,54,140,0.5) 100%);
    transform: translate(-50%, -50%) scale(0.5) !important;
}
#boxLogin {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.0);
    max-width: 1018px;
    max-height: 519px;
    width: 100%;
    height: 519px;
    background-image: url("../img/mariobroslogin.png");
    background-repeat: no-repeat;
    background-position: bottom 0 right 60px;
    background: #FFFFFF;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#175cff",endColorstr="#12368c",GradientType=1);
    box-shadow: rgba(0, 0, 0, 0.29) 10px 10px 46px;
    border-radius: 18px;
}
#boxLogin::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://i.imgur.com/f0RLgmp.png");
    background-repeat: no-repeat;
    background-position: bottom 0 right 0;
    z-index: -1;
    right: 0;
    opacity: 0.3;
}
#boxLogin>.login {
    position: relative;
    box-sizing: border-box;
    padding: 27px 46px 20px 46px;
    height: 100%;
    width: 100%;
    background-color: #FFFFFF;
    max-width: 512px;
    max-height: calc(100% - 58px);
    margin: 29px 0 0 29px;
    border-radius: 18px;
}
#boxLogin>.login>.result {
    transition-duration: 1s;
    position: absolute;
    left: 0;top: 0;
    width: 100%;
    height: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    z-index: 1;
    color: transparent;
    overflow: hidden;
    cursor: pointer;
}
#boxLogin.green>.login>.result,
#boxLogin.red>.login>.result {
    color: #FFFFFF;
    height: 182px;
}
#boxLogin.red>.login>.result {
    background-color: #f44336;
}
#boxLogin.green>.login>.result {
    background-color: #4caf50;
    height: 100%;
    border-radius: 16px;
}
#boxLogin>.login>.result>.v,
#boxLogin>.login>.result>.x {
    transition-duration: 1s;
    background-color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    opacity: 0.0;
}
#boxLogin.green.login>.result>.v,
#boxLogin.red>.login>.result>.x {
    width: 150px;
    height: 150px;
}
#boxLogin.red>.login>.result>.x {
    opacity: 1;
}
#boxLogin.green>.login>.result>.v {
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    width: 150px;
    height: 150px;
}
#boxLogin>.login>.result>.v {mask-image: url("../svg/check.svg"); -webkit-mask-image: url("../svg/check.svg")}
#boxLogin>.login>.result>.x {mask-image: url("../svg/x.svg"); -webkit-mask-image: url("../svg/x.svg")}
#boxLogin>.login>.result>.text {
    float: left;
    position: absolute;
    bottom: 20px;
    width: auto;
    left: 46px;
    transform: translateX(0);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
#boxLogin.green>.login>.result>.text {
    left: 50%;
    transform: translateX(-50%);
}
#boxLogin>.login>.raccoon {
    background-image: url("../img/raccoon.png");
    width: 59px;
    height: 56px;
}
#boxLogin>.login>.title {
    margin-top: 16px;
    font-size: 19px;
    font-weight: 600;
    color: #ce6401
}
#boxLogin>.login>.desc {
    margin-top: 15px;
    width: 80%;
    font-size: 14px;
    font-weight: 500;
    color: rgba(15, 11, 28, 0.60);
}
#boxLogin>.login>form {
    margin-top: 41px;
    width: 100%;
    height: auto;
}
#boxLogin>.login>form>label {
    position: relative;
    float:left;
    width: 100%;
    margin-top: 25px;
}
#boxLogin>.login>form>label:first-child {margin-top: 0;}
#boxLogin>.login>form>label>.icon {
    position: absolute;
    left: 20px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-color: #2f363d;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
#boxLogin>.login>form>label>.username {
    mask-image: url("../svg/user.svg");
    -webkit-mask-image: url("../svg/user.svg");
}
#boxLogin>.login>form>label>.password {
    mask-image: url("../svg/lock.svg");
    -webkit-mask-image: url("../svg/lock.svg");
}
input:focus + .icon {
    background-color: #fed044 !important;
}
#boxLogin>.login>form>label>input {
    background-color: #f0f0f0;
    height: 55px;
    width: 100%;
    border-radius: 10px;
    color: rgba(15, 11, 28, 0.4);
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px 0 60px;
    box-shadow: rgba(21, 81, 222, 0.0) 0 0 0 2px;
}
#boxLogin>.login>form>label>input:focus {
    box-shadow: #fed044 0 0 0 2px;
}
#boxLogin>.login>form>input[type=submit] {
    float: right;
    margin-top: 26px;
    width: 165px;
    height: 55px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: rgba(21, 81, 222, 0.58) 0 1px 10px;
    background: linear-gradient(#ffd24a, #f4b800);
    border: 1px solid #ce6401;
    box-shadow: inset 0px 2px #ffffff9c, 3px 3px #0000002b;
}
#boxLogin>.logoNitos {
    position: relative;
    float: right;
    width: calc(50% - 30px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
#boxLogin>.logoNitos>.logo {
    background-color: #FFFFFF;
    width: 233px;
    height: 95px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.39) 0 1px 18px;
    background-image:  url('../img/logo2.png');
    background-repeat: no-repeat;
    background-position: center;
}
#boxLogin>.truesecurity {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    width: 40px;
    height: 40px;
    z-index: 1;
}
#checkLogin {
    transition-delay: 1s;
    transition-duration: 1s;
    background-color: #123ea6;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../svg/puff.svg");
    z-index: 1;
    width: 0;
    height: 0;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
}
#checkLogin.on {width: 100%;height: 100%;}
#checkLogin.on {transition-duration: 2s;border-radius: 0;}
#loggedwtdst {
    transition-duration: 1s;
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0;
    z-index: 9999999;
}


#confirmAccount {
    position: fixed;
    background-color: rgba(18, 62, 166, 1);
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
#confirmAccount > .bxConfirmAccount {
    float: left;
    background-color: #ffffff;
    width: auto;
    height: auto;
    display: flex;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.10) 0 0 20px;
    box-sizing: border-box;
    padding: 20px;
    overflow: hidden;
}
#confirmAccount > .bxConfirmAccount > div {
    width: 100%;
    height: 100%;
    float: left;
    min-width: 100%;
    display: flex;
    flex-flow: column;
}
#confirmAccount > .bxConfirmAccount > .stage1 {
    max-width: 500px;
    min-height: 120px;
}
#confirmAccount > .bxConfirmAccount > div > div {
    display: flex;
}
#confirmAccount > .bxConfirmAccount > div > .title {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 500;
}
#confirmAccount > .bxConfirmAccount > div > .description {
    margin-top: 5px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 500;
}
#confirmAccount > .bxConfirmAccount > div > .continue {
    background-color: rgba(18, 62, 166, 1);
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    width: auto;
    height: 40px;
    margin-top: auto;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


#confirmAccount > .bxConfirmAccount > .stageHabboConfirm > .status {
    margin-top: 20px;
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
#confirmAccount > .bxConfirmAccount > .stageHabboConfirm > .status > .result[result=normal],
#confirmAccount > .bxConfirmAccount > .stageHabboConfirm > .status > .result {
    padding: 0 14px 0 14px;
    background-color: #ffffff;
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    box-shadow:inset rgba(0, 0, 0, 0.08) 0 0 0 1px, rgba(0, 0, 0, 0.05) 0 1px 8px;
    text-shadow: rgba(0, 0, 0, 0.0) 0 0 0;
}
#confirmAccount > .bxConfirmAccount > .stageHabboConfirm > .status > .result[result=success] {
    background-color: #76d47a;
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.20) 0 1px 2px;
}
#confirmAccount > .bxConfirmAccount > .stageHabboConfirm > .status > .result[result=failed] {
    background-color: #ff857c;
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.20) 0 1px 2px;
}
#confirmAccount > .bxConfirmAccount > .stageHabboConfirm > .checkuser {
    float: left;
    background-color: rgba(18, 62, 166, 1);
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    width: auto;
    height: 40px;
    margin-top: 20px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


@media screen and (max-width: 930px) {
    #boxLogin {
        position: absolute;
        left: 0;
        top: 0;
        transform: scale(1.0);
        min-height: unset;
        height: auto !important;
        max-height: unset !important;
        padding: 20px 0 20px 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    #boxLogin.loading-started {
        transform: scale(0.5) !important;
    }
    #boxLogin>.login {
        float: left;
        width: calc(100% - 58px);
        height: auto !important;
        max-width: unset !important;
        margin: 29px
    }
    #boxLogin>.logoNitos {
        width: 100% !important;
    }
    #boxLogin::before {
        z-index: 0;
    }
}
@media screen and (max-width: 600px) {
    #boxLogin>.login>form>input[type=submit] {
        float: none !important;
        width: 100% !important;
    }
}

.selectable {
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all;
}