.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}

.btn-secondary {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    color: #fff;
    background-color: var(--secondary-color-hover);
    border-color: var(--secondary-color-hover);
}

body {
    font-family: 'Open Sans', sans-serif !important;
    background-color: #f2f3f4;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-color) !important;
}

.logo-centered, .logo-centered img {
    width: 240px;
}

.login-page {
    background: var(--bg-color);
}

.widget-header h1, .widget-header h2, .widget-header h3, .widget-header h4, .widget-header h5, .widget-header h6 {
    color: var(--primary-color-hover);
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color-hover);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

input[type="submit"] {
    font-weight: 600!important;
}

.db-modern .header {
    background: #fff;
}

.horizontal-menu {
    background: var(--primary-color);
}

.horizontal-menu .main-menu .collapse ul ul,
.horizontal-menu .main-menu .collapse ul ul.dropdown-menu {
    background: var(--primary-color);
}

.horizontal-menu a {
    color: #fff !important;
}

.horizontal-menu a:hover {
    background: var(--primary-color-hover);
}

.bg-dark-grey {
    background: darkslategrey;
}

.bg-dark-grey h2 {
    color: #fff;
}
.bg-primary {
    background: var(--primary-color) !important;
}

.bg-primary h2 {
    color: #fff !important;
}

.reorder-icon-cell:hover {
    cursor: move;
}

.a-primary {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.a-primary:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.a-info {
    color: #5bc0de;
    text-decoration: none;
}

.a-info:hover {
    color: #5bc0de;
    text-decoration: underline;
}

.a-danger {
    color: #fe195e;
    text-decoration: none;
}

.a-danger:hover {
    color: #fe195e;
    text-decoration: underline;
}

.btn-outline-light {
    color: #fff;
}

input[type="color"] {
    visibility: hidden;
}

label.colour-picker-label {
    height: 32px;
    width: 32px;
    border: 1px solid #333;
}

.page, .page-content, .content-inner, .content-inner > .container {
    height: 100%;
}

.alert {
    border-radius: unset;
}

.alert-success {
    border: 1px solid #5cb85c;
    border-left: 10px solid #5cb85c;
    background: #cee9ce;
    color: #1b371b;
}

.alert-warning {
    border: 1px solid #f0ad4e;
    border-left: 10px solid #f0ad4e;
    background: #fae6c9;
    color: #483317;
}

.alert-danger {
    border: 1px solid #c9302c;
    border-left: 10px solid #c9302c;
    background: #eec0bf;
    color: #3c0e0d;
}

.page-breadcrumb {
    background: #f4f4f4;
    border: 1px solid #eaeaea;
    padding: 6px 14px;
    margin-bottom: 25px;
}

.leagues-holder {
    width: 100%;
    background-color: #f2f3f4;
    padding: 1px 15px;
    min-height: 300px;
}

.league-item {
    padding: 18px 18px 18px 80px;
    width: 100%;
    margin: 15px 0;
    background: #fff;
    border-radius: 14px !important;
    -webkit-box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
    position: relative;
}

.league-item h2 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
    color: #2b2b2c!important;
    margin-bottom: 2px;
}

.league-item p {
    font-size: 12px;
    text-transform: uppercase;
    color: #848484;
    margin-bottom: 0;
}

.league-item img {
    max-width: 50px;
    width: auto!important;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
}