:root {
    --font-family: Ubuntu, Arial, Helvetica, sans-serif;
    --main-color: #b52743;
    --secondary-color: #a02237;
    --bs-border-radius: 2px;
    --bs-body-color: #000;
    --border-color: #e7e7e7;
    --bg-grey-color: #eee;
    --thumb-width: 60px;
    --thumb-height: 60px;
}

* {
    font-family: var(--font-family);
}

body {
    font: 13px/20px var(--font-family)!important;
}
a {
    text-decoration: none;
    color: var(--bs-body-color);
}
a:hover {
    color: var(--main-color);
}
a.txt_white:hover {
    color: #fff;
}
a.txt_main:hover {
    color: var(--bs-body-color);
}

form {
    margin: 0px;
}

.form-control {
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #eee;
}
.form-control:focus {
    border-color: var(--bs-border-color);
    outline: 0;
    box-shadow: none;
    background-color: #eee;
}
.btn-outline-input {
    --bs-btn-border-color: var(--bs-border-color);
    background-color: #eee;
}
.btn-outline-input:hover {
    --bs-btn-hover-border-color: var(--bs-border-color);
    background-color: #eee;
}
.btn-outline-input:active {
    --bs-btn-active-border-color: var(--bs-border-color);
    background-color: #eee !important;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-left: none;
}
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-right: none;
}

.main_wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.top_wrapper {
    flex: 1 0 auto;
}
.footer_wrapper {
    flex: 0 0 auto;
}

ul.menu {
    display: flex;
    margin: 0px;
    padding: 0px;
}
ul.menu li {
    list-style-type: none;
}
ul.menu li a {
    display: inline-block;
    white-space: nowrap;
}

.txt_white {
    color: #fff !important;
}
.txt_white a {
    color: #fff !important;
}
.txt_white a:hover {
    color: var(--main-color) !important;
}
.txt_main {
    color: var(--main-color) !important;
}
.txt_muted {
    color: #888 !important;
}
a.txt_muted:hover {
    color: var(--main-color) !important;
}

.txt_small {
    font-size: 11px;
}

.button {
    padding: 14px 20px 13px;
    text-decoration: none;
    cursor: pointer;
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    background: #ddd;
    color: #000;
    text-decoration: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    display: inline-block;
    border: none;
    outline: 0;
    position: relative;
    font-family: Ubuntu, Arial, Helvetica, sans-serif;
    letter-spacing: .4px;
    width: auto;
    vertical-align: middle;
}
.button-primary {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}
.button-primary:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
}
.button-primary-outline {
    background-color: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.button-primary-outline:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
}
.button-secondary-outline {
    background-color: #fff;
    border: 1px solid var(--border-color);
    color: #888;
}
.button-secondary-outline:hover,
.button-secondary-outline.active {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
}

.button-small {
    padding: 7px 11px;
}
.button-large {
    font-size: 13px;
    font-weight: 600;
}

h1 {
    clear: both;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    margin: 0 0 39px;
}

table {
    font-size: 13px;
}

.delete_cross {
    width: 17px;
    height: 17px;
    display: flex;
    color: #888;
    font-size: 12px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    right: 0px;
}
.delete_cross i {
    line-height: 11px;
}
.delete_cross:hover {
    color: #fff;
    background-color: var(--main-color);
}

.grey_bg {
    background: #f7f7f9;
}