/* ---------- Main ---------- */
body {
    font-family: Arial;
    font-size: 14px;
    background: #ffffff;
}

table {
    font-family: Arial;
    background: #ffffff;
    max-width: 100%;
    border-collapse: collapse;
    text-align: left;
    padding-top: 12px;
    padding-bottom: 12px;
}

th {
    font-weight: bold;
    color: #292829;
    padding: 5px 10px;
    border-bottom-width: 1px;

}

td {
    color: rgba(109, 106, 109, 0.86);
    border-top: 1px solid #e8edff;
    padding: 5px 10px;
}

tr:hover td {
    background: rgba(0, 179, 65, 0.15);
}

h1 {
    font-size: 20px;
    font-weight: bold;
}

/* ---------- Blocks ---------- */

.results {
    background:#ffffff;
    margin: 0 auto;
    min-width:850px;
    max-width: 1200px;
    position: absolute;
    top: 10%;
    left: 10%;
    padding: 12px 24px 24px 24px;
    -webkit-box-shadow:0 0 10px rgba(0,0,0,0.4);
    -moz-box-shadow:0 0 10px rgba(0,0,0,0.4);
    box-shadow:0 0 10px rgba(0,0,0,0.4);
}

.results.display {
    display: flex;
}

.r_c1 {
    float: left;
    clear: both;
    margin-right: 24px;
}

.r_c2 {
    margin-top: 56px;
    margin-left: 24px;
    width: 350px;
    float: left;
    clear: both;
}

.results_main_line {
    overflow: auto;
    width: 100%;
}

.header_str {
    font-size: 20px;
    font-weight: bold;
}

.results_back {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.7
}

.footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 30px;
    padding: 0px;
    background: #999899;
    font-size: 10px;
    color: #555555;
    text-align: center;
}

fieldset {
    border-radius: 5px;
    border: solid 1px;
    border-color: #999899;
}

a.footer:link {
    color: #555555;
}
.main {
    display: flex;
    height: 100%;
}

.column1 {
    float: left;
    width: 400px;
    height: 100%;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 5px;
    margin-right: 12px;
    clear: left;
}

.column2 {
    float: left;
    height: 100%;
    margin-left: 12px;
    clear: left;
}

.row:after {
    content: "";
    display: table;
    clear: both;
    height: 100%;
}

.select-css {
    font-family: Arial;
    line-height: 1.6;
    height: 28px;
    padding: .12em 1.4em .5em .24em;
    box-sizing: border-box;
    margin: 0;
    /*border: 1px solid #aaa;*/
    background-color: #fff;
}

/* ---------- Buttons ---------- */
button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    /*display: inline-block;*/
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.clear {
    background-color: #af2d32;
}

.clear:enabled:hover{
    background-color: #581519;
}

button:disabled, button[disabled]{
    background-color: #999899;
    color: white;
}

button:enabled:hover{
    background-color: #2e6f2e;
}

/* ---------- Inputs ---------- */
input {
    padding: 5px 5px;
    margin: 8px 0;
    box-sizing: border-box;
}

select {
    padding: 5px 5px;
}

* {
    box-sizing: border-box;
}

/* ---------- Loader background ---------- */
.loader_back {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0.7
}
/* ---------- Loader animation ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    /*margin: 0 12.5% 100px;*/
    width: 50px;
    height: 50px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    animation: spin 0.75s infinite linear;
}
.loader::before,
.loader::after {
    left: -2px;
    top: -2px;
    display: none;
    position: absolute;
    content: '';
    width: inherit;
    height: inherit;
    border: inherit;
    border-radius: inherit;
}

.loader {
    border-top-width: 0;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
