
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    margin: 0;
    min-width: 1000px;
    padding-bottom: 30px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

label {
    font-weight: bold;
}

/* global styles for breadcrumb component */

.el-breadcrumb {
    padding: 10px;
    background: #DCDFE6;
    border-radius: 5px;
    margin-bottom: 16px;
}

.el-breadcrumb__separator {
    color: #606266;
}

/* fix message text for $notify component */

.el-notification__content {
    text-align: left;
}

/* transaction status background */

.paid {
    background-color: #dff0d8;
}

.refunded {
    background-color: #d9edf7;
}

.declined {
    background-color: #f2dede;
}

.chargeback {
    background-color: #DECCCC;
}

.win_chargeback {
    background-color: #fcf8e3;
}

.created {
    background-color: #fcf8e3;
}

.expired {
    background-color: #fff;
}

.blocked {
    background-color: #e0dddd;
}

.retrieved {
    background-color: #e0dddd;
}

/* title in jsp */

.title {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.navbar {
    margin-bottom: 20px;
}

/* fix link component */

.el-link {
    font-weight: 400;
}

.el-link:hover:after {
    content: none !important;
}

.el-link:hover {
    text-decoration: underline;
}

/* bootstrap breadcrumb */

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

.col-12 {
    width: 100%;
}

/* fix for form labels */

.el-form--label-top label {
    line-height: normal;
    margin: 0;
}

