﻿.command{}
.command .tools a {
    padding: 5px
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1040;
    top: 0px;
    right: 0;
    background-color: #fff; /*#174b75;*/
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 0 0 15px rgba(0,0,0,.35)
}
.sidenav-open {
    width: calc(100% - 230px);
}
@media only screen and (max-width: 768px) {
    .sidenav-open {
        width: calc(100% - 0px);
    }
}
    .sidenav .doc-title {
        font-size: 14px;
        font-weight: bold;
        padding-bottom: 20px
    }

    .sidenav a, .sidenav label {
        /*padding: 8px 8px 8px 32px;*/
        text-decoration: none;
        font-size: 15px;
        display: block;
        transition: 0.3s;
    }

        .sidenav a:hover {
            color: #174b75;
        }

    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }
.image-profile {
    height: 300px;
}
.margin-right-20{margin-right:20px;}
@media only screen and (max-width: 600px) {
    .profile-dashboard .declare {
        margin-left: -15px;
        margin-right: -15px
    }
    .profile-dashboard h2.bold{font-size:27.5px;padding-bottom:15px;margin-top:0px}
    .profile-dashboard .content, .profile-dashboard .container-fluid{padding:0px;margin-top:-3px}
}
.ban-dashboard {
    margin: auto;
    width: 60%;
    padding: 30px;
    text-align: center;
    color:#ff0000;
    font-size:100px;
}
.header-title {
    padding: 12px 0px 10px 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
}

.progressbar {
    counter-reset: step;
    padding: 0;
    /* for demo */
    margin: 10px auto 0;
    width: 100%;
}

    .progressbar li {
        float: left;
        list-style: none;
        position: relative;
        text-align: center;
        width: calc(100% / 5);
    }

        .progressbar li:before {
            background: #fff;
            border: 2px solid #bebebe;
            border-radius: 50%;
            color: #bebebe;
            content: counter(step);
            counter-increment: step;
            display: block;
            font-weight: 700;
            height: 30px;
            line-height: 27px;
            margin: 0 auto 10px;
            text-align: center;
            width: 30px;
        }

        .progressbar li:after {
            background: #979797;
            content: '';
            height: 3px;
            left: -50%;
            position: absolute;
            top: 15px;
            width: 100%;
            z-index: -1;
        }

        .progressbar li:first-child:after {
            content: none;
        }

        .progressbar li.active:after,
        .progressbar li.complete:after {
            background: #3aac5d;
        }

        .progressbar li.active:before,
        .progressbar li.complete:before {
            background: #3aac5d;
            border-color: #3aac5d;
            color: #fff;
        }

        .progressbar li.active {
            color: #3aac5d;
            font-weight: 700;
        }