*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html, body{
    font-size: 14px;
}
body{
    font-size:1rem;
    font-weight:400;
    line-height:1.5;
    color:#212529;
}

ul,li,ol{
    list-style: none;
}

a{
    text-shadow: none;
    color: #666;
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}
.form-control{
    height: 34px;
    line-height: 34px;
    border-radius: 0;
}
input, input:focus, input:active, textarea, textarea:focus, textarea:active, select, select:focus, select:active,
.form-control, .form-control:focus, .form-control:active{
    border: 1px solid #c3ccda;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.form-item {
    margin-bottom: 15px;
    clear: both;
    display: flex;
    flex-wrap: nowrap;
    box-sizing: border-box
}

.form-item .form-label {
    width: 140px;
    flex: 0 0 140px;
    padding: 9px 15px;
    line-height: 20px;
    text-align: left;
    box-sizing: border-box;
    position: relative
}

.form-item .form-label[required]:after {
   /* content: "*";
    color: red;
    padding-left: 5px*/
}

.form-item .form-input {
    flex: 1
}
.form-item .form-input .form-control{
    width: 250px;
    max-width: 100%;
}


.table.s3{
    border: 1px solid #dee2e6;
}
.table.s3 thead th,
.table.s3 thead td {
    border-bottom-width: 2px;
}
.table.s3 th,
.table.s3 td {
    border: 1px solid #dee2e6;
}
.error_info{
    position: relative;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
    border-radius: 0.25rem;
    color: #721c24;
    background-color: #f8d7da;
    font-size: 0.85rem;
    display: none;
}
.error_info.active{
    display: block;
}