@font-face {
    font-family: "Sono";
    src: url("../fonts/Sono-Regular.woff2");
}

body {
    padding: 0px;
    margin: 0px;
    background: #0D0A30;
}
.logo {
    margin: 80px 0px 0px 0px;
}
.logo img {
    display: block;
    margin: 0px auto;
}
.text {
    font-family: Sono;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    color: #fff;
    margin: 30px 0px  0px 0px;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-help {
    display: block;
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0%;
    z-index: 9999;
    overflow: auto;
}
.modal-help .container {
    width: 737px;
    margin: 90px auto 0px;
    -webkit-animation: fadein 2s;
    -moz-animation: fadein 2s;
    -ms-animation: fadein 2s;
    -o-animation: fadein 2s;
    animation: fadein 2s;
}
.modal-help .container .body-modal {
    background: url('../images/modal.png');
    width: 737px;
    height: 644px;
    margin: 0px auto;
}
.modal-help .container .body-modal .content {
    width: 405px;
    float: left;
    margin: 4px 0px 0px 5px;
}
.modal-help .container .body-modal .content .logo-modal {
    margin: 0px;
}
.modal-help .container .body-modal .content .logo-modal img {
    display: block;
    margin: 70px auto 70px;
}
.modal-help .container .body-modal .content .title {
    font-family: Sono;
    color: #ffffff;
    font-size: 16px;
    margin: 25px 0px 0px 0px;
    text-align: center;
}
.modal-help .container .body-modal .content .sub {
    font-family: Sono;
    color: #acacac;
    font-size: 14px;
    margin: 25px 0px 0px 0px;
    text-align: center;
    line-height: 24px;
}
.modal-help .container .body-modal .content .statics {
    width: 354px;
    margin: 230px auto 0px;
}
.modal-help .container .body-modal .content .statics .onlines {
    float: left;
    color: #acacac;
    font-size: 14px;
    font-family: Sono;
}
.modal-help .container .body-modal .content .statics .onlines .icone {
    padding: 0px;
    background-color: #32b83b;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: 1px;
}
.modal-help .container .body-modal .content .statics .members {
    float: right;
    color: #acacac;
    font-size: 14px;
    font-family: Sono;
}
.modal-help .container .body-modal .content .statics .members .icone {
    padding: 0px;
    background-color: #acacac;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: 1px;
}
.modal-help .container .body-modal .content .buttom {
    width: 354px;
    line-height: 48px;
    background-color: #5865f2;
    font-family: Sono;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    margin: 16px 0px 0px 0px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    text-decoration: none;
}
.modal-help .container .body-modal .content .buttom:hover {
    background-color: #4250e9;
    transition: 0.3s;
}
.modal-help .container .body-modal .modal-closed {
    font-family: Sono;
    color: #ffffff;
    font-size: 32px;
    font-weight: bolder;
    float: right;
    margin: 10px 15px 0px 0px;
    cursor: pointer;
    display: inline;
}