
.navbar .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.orders{
    margin-left: auto;
    margin-right: auto;
}

.order{
    cursor: pointer;
}

.order:hover{
    background: #eee;
}

.order .info{
    display: none;
    padding: 10px;
    background: #eee;
    font-size: 13px;
}

.order.active > .order-header{
    /*background: #f3f3f3;*/
}

.order-wrapper {
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.order .address {
    color: #919090;
    font-weight: 300;
    width: auto;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.order .sum {
    /*color: #919090;*/
    font-weight: 500;
}

.order .timer {
    color: #919090;
    font-weight: 300;
}

.order .number {
    font-weight: 500;
}

.order .status {
    font-weight: 500;
}

.total-sum-orders li{
    font-size: 14px;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}
.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}

.security-code .numbers,
.security-code .login{
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 25px;
}

.security-code .login{
    color: #4caf50;
}

.security-code .reset {
    color: #ff9800;
}

.security-code .numbers:hover,
.security-code .login:hover
{
    background: #ffffff63;
    cursor: pointer;
}


.security-code {
    background: #000000;
    max-width: 500px;
    margin: 0px auto;
}

.security-code .code {
    padding: 20px 20px 0;
    position: relative;
}

.security-code .code label {
    color: #9e9e9e;
}


.security-code .code input,
.security-code .code input:focus {
    background: #000000;
    border: none;
    color:white;
    font-size: 50px;
    text-align: center;
}

.security-code .code.error input{
    color: red;
}

.security-code .code:before {
    content: 'Неверный код';
    position: absolute;
    bottom: 0;
    left: 0px;
    color: red;
    font-size: 10px;
    width: 100%;
    text-align: center;
    transition: transform .3s;
    transform: scale(0) translate(-50%, -50%);
}

.security-code .code.error:before {
    transform: scale(1) translate(0%, 0%);
}

.security-code .row{
    margin: 0;
}
