/* Global properties ========================================================*/

html,
body {
    width: 100%;
    padding: 0;
    margin: 0;
}

body {
    background: #f9fafb;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.2s;
}

.container {
    width: 95%;
    height: auto;
    /*	overflow: hidden;*/
    margin: 0 auto;
}

h1 {
    font: 600 25px/39px 'Open Sans', sans-serif;
}

.wrapper h1 {
    margin: -10px 0 0 0;
    text-transform: capitalize;
}


/*.margin*/

.margin-30 {
    margin-left: 30px!important;
}

h2 {
    font: 600 18px/29px 'Open Sans', sans-serif;
    margin-bottom: 10px;
    color: red;
    text-transform: uppercase;
}

h3 {
    text-transform: capitalize;
}

.green {
    color: #17bc17;
}

h4 {
    font: 600 25px/29px 'Open Sans', sans-serif;
}

p {
    font: 400 15px/18px 'Open Sans', sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.loader {
    width: 100%;
    height: 2px;
    background: #0c83e2;
    position: fixed;
    top: 0;
    z-index: 999;
    overflow: hidden;
}

.loader img {
    width: 100%;
}

.red {
    color: #fc0808!important;
}

.red_bg {
    background: #fc0808!important;
    display: none;
}

.red-border {
    border: 2px solid #fc0808!important;
}

a {
    color: #4caf50;
    transition: all 0.5s;
}

a:hover {
    /*	color:#30ff06;*/
}

hr {
    clear: both;
    margin: 15px 0 0px;
    border-color: #fff;
}

label {
    font: 700 14px/20px 'Open Sans', sans-serif;
    display: block;
    margin-bottom: 5px;
    color: #f00;
    text-transform: uppercase;
}

label.chk {
    display: inline-block;
    margin: 5px 0;
    cursor: pointer;
}

.span-cover {
    width: 100%;
    height: 38px;
    padding: 5px;
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 5px;
    display: block;
    border: 1px solid #ccc;
}

input,
select {
    width: 100%;
    height: 38px;
    display: block;
    border: 1px solid #ccc;
    background: none;
    border-radius: 5px;
    padding: 5px 8px;
    box-sizing: border-box;
    margin-bottom: 20px;
    color: #051360;
    /*	background-image: linear-gradient(to top, #eee 0%, #fff 50%);*/
}

input[type="checkbox"] {
    width: auto!important;
    height: auto!important;
    display: inline-block!important;
    margin-right: 10px;
}

select.slt {
    width: auto;
    height: 32px;
    display: inline-block;
}

input[type=radio] {
    width: auto;
    height: auto;
    display: inline-block;
    margin-right: 5px;
}

button,
.more {
    width: auto;
    background: #2196f3;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s;
    display: inline-block;
    font-size: 15px;
}

a.more {
    line-height: 15px;
    background: #9fadb9;
}

button:hover,
.more:hover {
    background: #0c83e2;
}

.table-scroll {
    overflow-x: scroll;
}

.title {
    width: 100%;
    /* height: 70px; */
    height: 61px;
    /*	overflow: hidden;*/
    padding: 0;
    background: linear-gradient(to right, #133393 0%, #0199db 100%);
    border-bottom: 1px solid #ccc;
    /*	border-top: 4px solid #0073aa;*/
    z-index: 99;
    position: fixed;
}

.title h1 {
    display: block;
    color: #f6f6f6;
    font: 600 20px/30px 'Open Sans', sans-serif;
}

.title h1 a {
    color: #f6f6f6;
}

.title .date {
    float: right;
}

.title .time {
    float: right;
    width: 60px;
    margin-top: 3px;
    ;
}

.title .time img {
    width: 100%;
    height: auto;
}

.title .user {
    float: left;
    position: relative;
}

.title .user .logout {
    /* background: #0c83e2; */
    background: #076ec1;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
}

#date {
    float: right;
    margin-bottom: 5px;
    color: #eee;
}

.logout img {
    width: auto;
    height: 13px;
}

#menu-open {
    font-size: 0;
    padding: 7px;
    box-sizing: border-box;
}

.dropdown {
    position: absolute;
    z-index: 999;
    background: rgba(12, 131, 226, 0.89);
    padding: 10px;
    box-sizing: border-box;
    width: 170px;
    border-radius: 5px;
    display: none;
}

.opened {
    display: block;
}

.closed {
    display: none;
}

.dropdown a {
    display: block;
    color: #fff;
    text-transform: capitalize;
    font-size: 15px;
    margin: 14px 0;
    border-bottom: 1px solid #f2f4f7;
}

.dropdown a:hover {
    color: #ccc;
}


/*--------------------------------login-----------------------------*/

.login {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.login .img {
    width: 70%;
    height: 100vh;
    position: relative;
    float: left;
    overflow: hidden;
    box-sizing: border-box;
    background: url(../images/bg.jpg)no-repeat center;
    background-size: cover;
    background-position-x: center;
}

.login .login-logo {
    position: absolute;
    left: 45%;
    top: 45%;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
    display: none;
}

.login .login-logo img {
    width: 100%;
    height: auto;
}

.login .login-form {
    width: 30%;
    height: auto;
    overflow: hidden;
    float: left;
    padding: 100px 30px;
    box-sizing: border-box;
}

.login-form h4 {
    margin-bottom: 50px;
}


/*-----------------------------------home page-------------------------------*/

.home {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 120px;
    background: #f9fafb;
}

.home h1 {
    margin-bottom: 20px;
}

.home ul {
    width: 100%;
}

.home ul li {
    width: 25%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 3px;
    float: left;
}

.home ul li div {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .0625);
    position: relative;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: scroll;
}

.home ul li div img {
    width: 50px;
    height: auto;
    float: right
}

.home ul li .nbr {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid #4caf50;
    display: block;
    right: 0;
    top: 0;
    padding: 22px 0;
    box-sizing: border-box;
    margin-bottom: 10px;
    background: #e8f5e9;
    text-align: center;
    float: right;
}

.home li .nbr p {
    margin: 0;
}

.home li .nbr p b {
    color: #ff0000;
    font-size: 30px;
    font-weight: 700;
}

.home .more {
    padding: 7px;
    margin-top: 10px;
}

.home li p b {
    color: #2196f3;
}


/*--------------------------------------------menu button---------------------------------------*/

.menu-open {
    width: 25px;
    height: 25px;
    display: none;
    position: fixed;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #000;
    padding: 3px;
    box-sizing: border-box;
}

.menu-open img {
    width: 100%;
}

.menu-close {
    position: absolute;
    right: 10px;
    top: 7px;
    color: #fff;
    display: block;
}


/*--------------------------------------------service page---------------------------------------*/

.token {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 110px 0 40px 0;
}

.token h1 {
    margin-bottom: 20px;
}

.half {
    width: 33.333%;
    float: left;
    padding: 0 25px 0 0;
    box-sizing: border-box;
}

.half form {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
    padding: 10px;
    box-sizing: border-box;
    margin-top: 40px;
}

.half form input,
.half form .more {
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

.w-25 {
    width: 25%;
}


/*--------------------------------------------docs popup-----------------------------------------*/

.block,
.prevent {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.09);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.docs {
    width: 500px;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    position: absolute;
    top: 240px;
    left: 30%;
    background: #ccc;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
    z-index: 99;
    display: none;
}

.docs .title-bar {
    display: block;
    background: #fff;
    padding: 2px 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.docs .title-bar h1 {
    font-size: 19px;
    line-height: 30px;
    font-weight: 400;
    float: left;
}

.docs .title-bar i {
    display: block;
    float: right;
    font-weight: 600;
    cursor: pointer;
    color: #f00;
    font-size: 20px;
}

.docs ol {
    padding: 10px 10px 3px 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.docs li {
    display: block;
    width: 100%;
    float: left;
    line-height: 28px;
}

.docs li img {
    width: 20px;
    height: auto;
}

.docs p {
    margin: 0px 0 8px 4px;
    text-decoration: none;
    font-weight: 600;
}


/*-----------------------------------master admin--------------------------------*/

.master {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    padding-top: 62px;
}

.master .side-menu {
    width: 17%;
    overflow-y: hidden;
    height: 100%;
    padding: 0px 0 10px 0;
    float: left;
    position: fixed;
    box-sizing: border-box;
    background: #15298c;
    z-index: 9;
}

.side-menu p {
    padding: 14px 0 14px 30px;
    color: #fff;
    background: #0073aa;
    /* background: linear-gradient(to right, #0099db 0%, #15298c 100%); */
}

.side-menu li {
    display: block;
    padding: 7px 0 7px 10px;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}

.side-menu li i {
    font-size: 24px;
    line-height: 18px;
    color: #9eaae6;
    width: 20px;
    transition: all 0.2s ease-in-out 0s;
    margin-right: 10px;
}

.side-menu li span {
    -webkit-transition: -webkit-transform 0.15s;
    -o-transition: -o-transform 0.15s;
    transition: transform .15s;
    position: absolute;
    right: 10px;
    display: inline-block;
    text-rendering: auto;
    line-height: 40px;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    line-height: 14px;
    top: 9px;
    font-weight: 400;
    color: #fff;
}

.side-menu li a {
    color: #eee;
    display: inline-block;
    text-transform: capitalize;
    font-size: 14px;
    /* padding: 9px 10px 9px 50px; */
    font-weight: 600;
}

.side-menu li a:hover {
    color: #0296d9;
}

.side-menu li ul {
    display: none;
    margin-top: 15px;
}

.side-menu li ul li {
    padding: 0;
}

.side-menu li ul a {
    padding: 9px 10px 9px 34px;
    box-sizing: border-box;
}


/* .side-menu li:hover{background:#000;} */

.side-menu hr {
    border-color: #3e3e3e;
    margin: 7px 0;
}

.master .wrapper {
    width: 83%;
    float: right;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    background: #f1f1f1;
    min-height: 88vh;
}

.wrapper ul {
    margin-top: 20px;
    clear: both;
    overflow: hidden;
}

.wrapper li {
    width: 25%;
    padding: 5px 10px;
    box-sizing: border-box;
    float: left;
    overflow: hidden;
}

.wrapper li a {
    width: 100%;
    height: 130px;
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    transition: all 0.5s;
    cursor: pointer;
    overflow: hidden;
    display: block;
    text-align: center;
    font: 600 22px/23px 'Open Sans', sans-serif;
    color: #82878c;
    text-transform: capitalize;
}

.wrapper li:hover a {
    background: #f8f8f8;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
    border-color: #fff;
    color: #000;
}

.wrapper li a span {
    background-color: #0198da;
    border-radius: 100%;
    color: #eef1ff;
    display: block;
    font-size: 25px;
    height: 50px;
    line-height: 60px;
    text-align: center;
    width: 50px;
    margin: 0 auto;
    float: left;
}

.wrapper li a span i {
    line-height: 52px;
}

.wrapper li a h3 {
    display: block;
    font-size: 18px;
    clear: both;
    float: right;
}

.wrapper li a p {
    display: block;
    font-size: 15px;
    line-height: 25px;
    clear: both;
    float: right;
    text-transform: capitalize;
}

.wrapper form {
    margin-top: 15px;
}

.wrapper button {
    padding: 6px 10px;
}

.wrapper input {
    display: inline-block;
    width: auto;
    height: 30px;
}

.display {
    width: 16.666%;
    height: auto;
    float: left;
    text-align: center;
    border: 1px solid #000;
    padding: 5px;
    box-sizing: border-box;
}

.setacc {
    width: 25%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccccc9;
}

.reloader {
    position: fixed;
    width: 100%;
    overflow: hidden;
    left: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    text-align: center;
    display: none;
}

.reloader div {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20%;
    background: #0c83e2;
    border: 3px solid #dbd8d8;
    border-radius: 10px;
}

.reloader p {
    display: block;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
}

.reloader a {
    display: inline-block;
    margin-top: 10px;
    float: none;
    border: 1px solid #fff!important;
}

.checker {
    position: fixed;
    width: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.1);
    top: 0;
    bottom: 0;
    left: 0;
}

.checker form {
    width: 50%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 200px;
}

.checker h2 {
    text-align: center;
}

.checker p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.checker hr {
    margin: 10px 0;
}

.checker .more {
    background: #0c83e2;
    margin: 15px auto 0 auto;
    width: 150px;
    text-align: center;
    display: none;
}

.checker label {
    display: inline;
    margin-left: 15px;
}

.checker label input {
    margin: 0;
}

.toast {
    width: 100%;
    position: fixed;
    bottom: 120px;
    display: none;
}

.toast div {
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    background: #15298c;
    text-align: center;
    width: 500px;
    border-radius: 5px;
}

.toast p {
    color: #fff;
    margin: 0;
}

.notification {
    width: 28px;
    height: auto;
    overflow: hidden;
    display: inline-block;
    margin-left: 10px;
    position: relative;
    cursor: pointer;
}

.notification img {
    width: 100%;
    height: auto;
}

.notification b {
    position: absolute;
    color: #fff;
    left: 8px;
    top: 0;
    font-size: 16px;
}

#drop-notification {
    left: 120px;
}

.todo {
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 90px;
    background: rgba(0, 0, 0, 0.5);
    height: 100vh;
    display: none;
    overflow-y: auto;
}

.todo b.close {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    cursor: pointer;
    width: 40px;
    height: 44px;
    text-align: center;
    line-height: 38px;
    font-size: 17px;
    border-left: 1px solid #4055c1;
    transition: all 0.3s;
}

.todo b.close:hover {
    transition: all 0.3s;
    background: red;
}

.todo .box {
    width: 80%;
    height: auto;
    background: #fff;
    overflow: hidden;
    margin: 100px auto 0 auto;
    border-radius: 5px;
    position: relative;
    margin-bottom: 150px;
}

.todo .box ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.todo .box ul li {
    padding: 10px;
    box-sizing: border-box;
    background: #ccc;
    border-bottom: 1px solid #bbb1b1;
    transition: all 0.3s;
    cursor: pointer;
}

.todo .box ul li:hover {
    background: #fff;
    transition: all 0.3s;
}

.todo h3 {
    font-size: 25px;
    padding: 5px 10px;
    background: #15298c;
    color: #fff;
}

.todo label {
    font-size: 18px;
    position: relative;
    margin: 0;
    cursor: pointer;
    text-transform: none;
}

.todo label:after {
    position: absolute;
    right: 0;
    top: 0;
    content: '+';
    display: block;
    font-size: 25px;
    cursor: pointer;
}

.todo p {
    display: none;
    margin-top: 8px;
    text-transform: none;
    font: 400 16px/22px 'Open Sans', sans-serif;
}

.todo p a {
    display: block;
    margin-top: 10px;
    width: 130px;
    text-align: center;
    font-size: 14px;
    padding: 5px;
    background: #0c83e2;
}

.share{width:100%;height:auto;overflow:hidden;box-sizing:border-box;padding:97px 0 0 0;}
.share hr{margin:0;}
.chat{width:75%;overflow:hidden;box-sizing:border-box;float:left;padding:20px 20px 0 20px;position:relative;overflow-y:scroll;background:url("../images/wa-bg.png")repeat #e3e3e3;}
.chat .message{display:block;width:100%;height:auto;overflow:hidden;}
.chat p{max-width:75%;position:relative;font-size:14px;text-transform:none;display:block;width:auto;padding:10px;box-sizing:border-box;border-radius:15px;color:#000;}
.chat p img{width:100px;display:block;margin:5px 0;}
.chat p img.picc{width:150px;}
.chat p b{display:block;margin-bottom:5px;color:#000;}
.chat p i{color:#536d73;text-decoration:none;display:block;font-size:11px;margin-top:5px;}
.chat p::before{border:11px solid #000;content:'';height:0;position:absolute;top:40%;}

.chat a{width:20px;height:auto;overflow:hidden;display:block;position:absolute;top:0;right:5px;}
.chat a img{width:100%;height:auto;}
.chat a:hover > img{background:#fff;border-radius:50%;}

p.others{float:left;background:#fff;margin-left:12px;}
p.others::before{border-color:transparent #fff transparent transparent;left:-22px;}
p.me{background:#dcf8c6;float:right;margin-right:22px;}
p.me::before{right:-22px;border-color:#0000 #0000 #0000 #dcf8c6;}

.share .reply{width:70%;overflow:hidden;padding:15px 10px 5px 0;box-sizing:border-box;position:fixed;bottom:0;background:#fff;border-top:1px solid #000;}

.my-text{width:75%;float:left;overflow:hidden;}
.my-attach{width:35px;height:auto;overflow:hidden;float:left;margin-left:10px;position:relative;}
.share img{width:100%;height:auto;cursor:pointer;}
.share [type=file]{position:absolute;top:0;margin:0;opacity:0;cursor:pointer;}
.share .share-btn{margin-left:10px;float:left;}

.home-graph {
    width: 50%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 15px;
}

.home-graph .graph {
    width: 100%;
    background: #fff;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
}

canvas {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}




.model-wrap{z-index:99;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4);box-sizing:border-box;}
.model-wrap .model{margin:auto;width:80%;height:auto;overflow:hidden;position:relative;animation:animatetop 0.5s;margin-bottom:25px;}
@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.model-wrap .model p{margin:0;text-transform:none;}
.model-wrap .model-header{background:#0199db;color:#fff;padding:20px 50px 20px 10px;;box-sizing:border-box;width:100%;font-size:20px;}
.model-wrap .model span.model-close{position:absolute;top:0;right:0;color:#fff;cursor:pointer;user-select:none;font-weight:bold;;box-sizing:border-box;padding:7px 10px 10px;}
.model-wrap .model span.model-close:hover{background:#b0b0b0;}
.model-wrap .model-header{background:#0199db;color:#fff;padding:13px 50px 13px 10px;box-sizing:border-box;width:100%;font-size:20px;}
.model-wrap .model-body{width:100%;height:auto;background:#fff;overflow:hidden;padding:20px 10px;box-sizing:border-box;}
.model-wrap .model-body table{width: 100%;}

p.info{font-size:12px;margin:2px 0;text-transform:none;}

.redbg{background:#f00!important;}
.blebg{background:#15298c;}

.scroll{overflow-x:scroll;}


.earning{width:auto;margin-top:4px;margin-left:10px;}
.earning span{font-weight:700;font-size:20px;}
.earning P.cmp{color:#fff;}
.earning P.mob{display:none;color:#fff;}


/*--account history--*/
.row-1{padding:5px;box-sizing:border-box;padding:10px;box-sizing:border-box;}
.row-1 div{border:1px solid #000;padding:5px;box-sizing:border-box;height:220px;}
.row-1 h2{color:white;text-transform:uppercase;background:#3315c3;text-align:center;border-radius:14px;}
.row-1 table{border:1px solid #000;width:100%;text-align:left;}
.row-1 td, .row-1  th{padding:5px;box-sizing:border-box;vertical-align:middle;border:1px solid #000;text-transform:uppercase;}
.row-1 tr:last-child td,.row-1 tr:last-child th{background:#ffd7d7;}
.row-1 td{text-align:center;}


