/*for header only 00 */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: WHITE;
    overflow-x: hidden;
    transition: 0.1s;
}
a:hover{
    text-decoration: none;
}
.sidenav a {
    padding: 10px 8px 10px 32px;
    text-decoration: none;
    font-size: 15px;
    color: #706f6f;
    display: block;
    transition: 0.1s;
    border-bottom: 1px solid  gainsboro;
}

.sidenav a:hover {
    color: #0465ac !important;
    cursor: pointer;
    background: #fafafa;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.disablebody{
    opacity: 0.6;
    width: 100%;
    height: 100%;
    z-index: 5;
    position: fixed;
    top: 0;
    background: black;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
.navlinks{
    padding: 18px 0px;
    font-weight: 600;
    color: gray;
}

/*for side navigation 01*/

.board {
    background:#0465ac;
    color:white;
}
.icon{
    padding: 0px 10px 0px 0px;
}
.icon-cross{
    color: white;
    font-size: 20px;
    float: right;
    padding: 0px 10px;
    cursor: pointer;
}
#loadingdisplay {
    background: white;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5;
    padding-top: 120px;
    margin-top:80px;
}
.bigpencil {
    float: right;
    font-size:22px;
    cursor:pointer;
}
.disablebody{
    opacity: 0.6;
    width: 100%;
    height: 100%;
    z-index: 5;
    position: fixed;
    top: 0;
    background: black;
}
.anchor {
    cursor: pointer;
    color: #0465ac;
}
.anchor :hover{
    cursor: pointer;
}
.desktopview {
    display:block;
}
.mobileview{
    display:none;
}
@media screen and (max-width:1220px) {
    .desktopview {
        display:none;
    }
    .mobileview{
        display:-webkit-inline-box;
        float: right;
        font-size: 27px;
        color:gray;
    }
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: #f5f5f5;
    /*border-bottom: 3px solid #8383e3;*/
    z-index: 2;

}
.headerlogoname {
    font-size: 3rem;
    font-weight: 700;
    padding-left: 35px;
}
.headericon{
    font-size: 26px;
    color: grey;
    padding: 16px 16px;
}

.navbreadcrumb{
    background: #0465ac;
    color: white;
    padding:10px;
    position: fixed;
    width: 100%;
    z-index: 2;
}
.footer {
    padding: 5px;
    font-size: 15px;
}
/*for header only 01 */


/*for user dashboard 00*/
.mycard{
    box-shadow: 2px 2px 2px gainsboro;
}
.scroll-card{
    max-height: 400px;
    overflow-y: auto;
    min-height: 349px;
}
.dashboard-profile{
    align-self:center;
    margin:-50px;
    background: white;
    width:90px;
    height:90px;
    border-radius: 50%;
    background: white;
}

.board-title{
    background:#0465ac;
    color:white;
    padding:1px;
}
.leaderboardMember{
    font-size:13px;
    border-bottom: 1px solid;
    padding: 3px 0px;
    padding-bottom: 17px;
}
.dashboard-leader-profile{
    border-color: #0465ac;
    font-size:16px;
    padding:2px;
    float:left;
    margin-right:6px;
    min-width: 35px;
}
.leaderboard-image{
    border-radius: 50%;
    width:30px;
    height:30px;
}
.small-scroll{
    max-height: 130px;
    overflow-y: auto;
    min-height: 129px;
}
.scroll-card-birthday{
    max-height: 170px;
    overflow-y: auto;
    min-height: 169px;
    
}
/*for user dashboard 01*/

/*for text blinking 00 */
.blink_me {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
/*for text blinking 01 */