html,
body,
#app {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.33;
}

*,
:before,
:after {
    box-sizing: border-box;
}

/* display & container */

.modal-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1900px) {
    .container {
        max-width: 1600px;
    }
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.float-right {
    float: right;
}

/* !display & container */

/* color */

.color-green {
    color: #4dad37;
}

.color-red {
    color: #ad0100;
}

/* !color */

/* text */

.text-center {
    text-align: center;
}

.no-wrap {
    white-space: nowrap;
}

.text-overflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

a,
.link {
    text-decoration: none;
    /*color: #3a92c7;*/
    color: #3479a3;
}

a:hover,
.link:hover {
    /*color: #2d719a;*/
    color: #0a4d75;
}

.link {
    text-decoration: underline;
    cursor: pointer;
}

.link:hover {
    text-decoration: none;
}

blockquote {
    margin: 0;
    padding-left: 10px;
    border-left: 3px solid #2f75cd;
}

/* !text */

/* button */

button {
    outline: none !important;
}

button:not(:disabled) {
    cursor: pointer;
}

/* !button */

hr {
    border: none;
    border-top: 1px solid #333;
}

/* table */

table {
    width: 100%;
    padding: 0 0 10px;
    border-collapse: inherit;
    border-spacing: 0;
    font-size: 16px;
    line-height: 1.2;
}

table th,
table td {
    padding: 8px 12px;
}

table th {
    text-align: left;
    color: #555;
    background: #ccc;
    min-width: 120px;
}

table tr:nth-child(2n+1) {
    background: #f6f7f8;
}

table tr:hover {
    background: #eee;
}

/* !table */

/* ul/ol */

.list-unstyle {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* !ul/ol */

/* form */

input {
    outline: none;
}

.form-field {
    margin: 0 0 10px;
}

.form-field:last-of-type {
    margin: 0;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 7px;
    font-family: inherit;
    font-size: 18px;
    line-height: 1;
    outline: none !important;
    vertical-align: middle;
}

.form-field textarea {
    min-height: 90px;
}

.form-field input[type="checkbox"] {
    width: auto;
    margin: auto;
}

.form-field-label {
    display: block;
    padding: 7px 0;
    font-size: 18px;
    line-height: 1;
}

.disabled {
    color: #bbb;
}

.error-text {
    display: block;
    margin: 3px 0 0;
    color: #e33433;
}

.form-error {
    margin: 0 0 20px;
    padding: 20px;
    border: 1px solid #e33433;
    border-radius: 7px;
    color: #e33433;
    background: #efb9b9;
}

.form-error p {
    margin: 0 0 10px;
}

.form-error p:last-of-type {
    margin: 0;
}

/* !form */

/* sidebar */

.sidebar {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    top: 0;
    left: -62px;
    min-height: 150px;
    border-right: 1px solid #dee2e6;
}

.nav-sidebar-tab {
    margin: 0 -1px 4px 0;
    padding: 11px 9px;
    border: 1px solid #dee2e6;
    border-radius: 4px 0 0 4px;
    line-height: 1;
    color: inherit;
    background: #eee;
    transition: 0.3s ease;
    cursor: pointer;
}

.nav-sidebar-tab:hover {
    color: inherit;
    background: #ddd;
}

.nav-sidebar-tab.active {
    color: #495057;
    border-right-color: #fff;
    background: #fff !important;
    cursor: default;
}

/* !sidebar */