/*SMART-TABLE*/
@media only screen and (min-width: 645px) {
    .smart-table {
        display: table;
        width: 100%;
    }

    .smart-table-row {
        display: table-row;
    }

    .smart-table-cell {
        display: table-cell;
    }
}

@media only screen and (min-width: 0px) {
    .smart-table {
        width: 100%;
    }

    .smart-table-row {
    }

    .smart-table-cell {
        margin-bottom: 3px;
    }
}


/*Адаптивность*/

@media only screen and (min-width: 645px) {
    .login-form {
        position: absolute;
        width: 460px;
        top: 50%;
        left: 50%;
        margin-top: -130px;
        margin-left: -230px;
    }

    .login-form .content {
        border-bottom: 1px solid #9c9c9c;
        border-left: 1px solid #9c9c9c;
        border-right: 1px solid #9c9c9c;
        padding-left: 20px;
        padding-right: 20px;
        width: 418px;
    }

    .login-form .content h1 {
        padding-top: 15px;
        padding-bottom: 6px;
        margin-bottom: 9px;
        font-size: 28px;
        border-bottom: 3px solid #ffa161;
        cursor: default;
    }

    .label {
        vertical-align: middle;
        text-align: right;
        padding-right: 18px;
        font-size: 14px;
    }

    .label-cell {
        width: 95px;
    }

    .login-form .content input {
        height: 12px;
        padding: 4px 3px 6px 3px;

    }

    .wide-input {
        width: 241px;
    }

    .wide-btn {
        width: 249px;
        height: 22px;
        font-size: 12px;
    }


    .inner-error {
        font-size: 14px;
    }

}

@media only screen and (min-width: 0px) and (max-width: 644px) {

    .login-form {
        width: 100%;
        height: 100%;
    }

    .login-form .content {
        margin-left: 10px;
        margin-right: 10px;
    }

    .login-form .content h1 {
        padding-top: 15px;
        padding-bottom: 6px;
        margin-bottom: 9px;
        font-size: 28px;
        border-bottom: 3px solid #ffa161;
        cursor: default;
    }

    .wide-input {
        width: 100%;
    }

    .wide-btn {
        width: 100%;
        height: 38px;
        font-size: 15px;
    }


    .login-form .content input {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        height: 26px;
        padding: 0px 3px 2px 4px;
        font-size: 17px;
    }

    .only-wide-screen {
        display: none;
    }
}

html, body {
    height: 100%;
    min-height: 260px;
}

.page-top-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #c653ff;
    z-index: 100;
}

.clear {
    clear: both;
    height: 0;
}

.fl_r {
    float: right;
}

.login-form .header {
    background: #2d2d2d;
    height: 25px;
    line-height: 25px;
    border-left: 1px solid #2d2d2d;
    border-right: 1px solid #2d2d2d;
}

.content .smart-table {
    margin-bottom: 31px;
}

.login-form .header h1 {
    color: #fff;
    padding-left: 23px;
    margin-left: 7px;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
    background-image: url('/img/retina/logo.png');
    background-size: 16px 16px;
    background-position: 0 49%;
    background-repeat: no-repeat;
    cursor: default;
}

@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
    .login-form .header h1 {
        background-image: url('/img/retina/logo@2x.png');
    }
}

.login-form .content input {
    outline: none;
    border: 1px solid #c0c0c0;
    border-radius: 1px;
}

.wide-btn {
    text-align: center;
}

.login-form .content table {
    width: 290px;
    margin: 0 38px 25px;
    font-size: 13px;
}


.pad23 {
    padding-bottom: 23px;
}

.pad9 {
    padding-bottom: 9px;
}

button {
    background-color: #f3f3f3;
    border: 1px solid #c6c6c6;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s;
    padding-bottom: 3px;
}

button:active {
    background-color: #dddddd;
    padding: 1px 0 0 1px;
}

.login-form .content table button:hover {
    border: 1px solid #acacac;
}

.login-form .content table .p9.small button {
    width: 95px;
}

.login-form .content table .big button {
    width: 100%;
}


.error-msg {
    color: #800080;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-align: center;
}

/*table .error-msg  p */
.inner-error {
    background: RGB(245, 232, 245);
    border: 1px solid RGB(202, 148, 202);
    padding: 3px 2px 4px 3px;
}

.inner-info {
    background: #F9F6E7;
    border: 1px solid #D4BC4C;
    padding: 3px 2px 4px 3px;
    color: black
}

.hided {
    display: none;
}

.h20 {
    height: 20px;
}