@charset "UTF-8";
/*Variablen*/
@import url("https://fonts.googleapis.com/css2?family=Water+Brush&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background: #c9ddd9;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(left top, #aeccc7, #c9ddd9, #dbe8e6);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(bottom right, #aeccc7, #c9ddd9, #dbe8e6);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(bottom right, #aeccc7, #c9ddd9, #dbe8e6);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to bottom right, #aeccc7, #c9ddd9, #dbe8e6);
  /* Standard syntax */
}

/*FORMS*/
form {
  margin-top: 10px;
}

input {
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 13px;
  color: #5f5f5f;
  box-shadow: none !important;
  outline: none !important;
  background-color: #f3f3f3;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input:focus, textarea:focus {
  border-color: #c9ddd9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

textarea, input, input[type=text], input[type=submit], input[type=email], input[type=url], input[type=search], input[type=password],
input[type=color], input[type=date], input[type=datetime-local], input[type=file], input[type=image],
input[type=month], input[type=number], input[type=range], input[type=tel], input[type=time], input[type=week], input[type=reset] {
  -webkit-appearance: none;
}

textarea, input, input[type=text], input[type=search], input[type=email], input[type=password], input[type=date], input[type=date] {
  -webkit-transform: translateZ(0px);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #d8d8d8;
  -webkit-text-fill-color: #5f5f5f !important;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
  outline: none !important;
}

::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder {
  color: #c3c3c3;
  font-style: italic;
}

textarea:focus, input:focus, select:focus, .uneditable-input:focus, a:focus {
  box-shadow: none !important;
  outline: none !important;
}

select {
  color: #5f5f5f;
  font-weight: 500;
  background-color: #f3f3f3;
  border-color: #d8d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 6px 7px;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 100%;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
select option {
  font-weight: 500;
}

button, button:focus, button:active, button:visited {
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 500;
  background-color: #6A507C;
  border: none;
  color: white;
  padding: 6px 12px;
  height: 34px;
  line-height: 1.42857143;
  box-shadow: none;
  outline: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

button:hover {
  background-color: #9E82B0;
}

.input-group {
  margin-top: 5px;
  margin-bottom: 5px;
}

.input-group input {
  margin-top: 0px;
}

.input-group-addon {
  padding: 5px 16px;
  margin-top: 0px;
  /*width: 50%;*/
}

.form-control {
  background-color: #f3f3f3;
  color: #5f5f5f;
}

textarea {
  background-color: #f3f3f3;
  color: #5f5f5f;
  margin-top: 5px;
  margin-bottom: 5px;
  box-shadow: none;
  height: auto;
  font-family: inherit;
  overflow: auto;
  /*display: block;*/
  width: 100%;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.42857143;
  background-image: none;
  border: 1px solid #ccc;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input[type=submit], input[type=button] {
  width: auto;
  color: #fff;
  background-color: #6A507C;
  border: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

input[type=submit]:hover, input[type=button]:hover {
  background-color: #9E82B0;
}

.input-group-addon {
  color: #5f5f5f;
  background-color: #d8d8d8;
}

.link_button, .link_button:focus, .link_button:active, .link_button:visited {
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 600;
  background-color: #6A507C;
  border: none;
  color: white;
  padding: 6px 12px;
  height: 34px;
  line-height: 1.42857143;
  box-shadow: none;
  outline: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.link_button:hover {
  background-color: #9E82B0;
  color: #fff;
}

/*CHECKBOX*/
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  display: block;
  position: absolute;
  margin-top: 0;
}

input[type=checkbox] + label,
input[type=radio] + label {
  width: 100%;
  min-height: 25px;
  padding-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

input[type=checkbox] {
  display: none !important;
  left: -3000px;
}

input[type=checkbox] + label {
  position: relative;
  line-height: 15px;
  vertical-align: middle;
}

input[type=checkbox] + label span {
  display: inline-block;
  position: relative;
  height: 16px;
  width: 16px;
  margin-bottom: 5px;
  margin-right: 10px;
  top: 1px;
  vertical-align: text-top;
  background-color: #f3f3f3;
  border: 2px solid #aeccc7;
}

input[type=checkbox]:checked + label span {
  border: 2px solid #42887c;
}

input[type=checkbox]:checked + label:before {
  display: block;
  position: absolute;
  color: #0D6657;
  margin-left: 2.5px;
  margin-top: 1px;
  content: "";
  background-image: url("../includes/images/tick.svg");
  width: 14px;
  height: 14px;
  z-index: 10;
}

input[type=radio] {
  display: none !important;
  left: -3000px;
}

input[type=radio] + label {
  position: relative;
  line-height: 15px;
  vertical-align: middle;
}

input[type=radio] + label span {
  display: inline-block;
  position: relative;
  height: 18px;
  width: 18px;
  margin-bottom: 10px;
  vertical-align: text-top;
  margin-right: 8px;
  background-color: #f3f3f3;
  border: 2px solid #aeccc7;
}

input[type=radio]:checked + label span {
  border: 2px solid #42887c;
}

input[type=radio]:checked + label:before {
  display: block;
  position: absolute;
  color: #0D6657;
  margin-left: 3.5px;
  margin-top: 1px;
  content: "";
  background-image: url("../includes/images/tick.svg");
  width: 14px;
  height: 14px;
  z-index: 10;
}

.beyondchaos-form {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .beyondchaos-form {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.beyondchaos-form table {
  width: 100%;
}
.beyondchaos-form table tr td:first-of-type {
  padding-right: 10px;
}
.beyondchaos-form .add-padding {
  padding-top: 20px;
}
.beyondchaos-form .no-whitespace tr td:first-of-type {
  white-space: nowrap;
}

/*GENERAL*/
html {
  font-weight: 500;
  height: 100%;
  width: 100%;
  overflow-x: hidden !important;
  overflow-y: auto;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #5f5f5f;
  overflow-x: hidden !important;
  overflow-y: auto;
  height: 100%;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.mdrtools_main {
  float: none;
  margin: 0 auto !important;
  min-height: 0 !important;
  max-width: 1600px;
}

@media screen and (max-width: 768px) {
  .hide_mobile {
    display: none;
  }
}

.front_maxwidth {
  max-width: 1500px;
  margin: 0 auto;
  float: none;
}
@media screen and (max-width: 1250px) {
  .front_maxwidth {
    float: left;
  }
}
@media screen and (max-width: 600px) {
  .front_maxwidth {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

.container-fluid {
  padding: 0;
}
.container-fluid .row {
  margin-right: 0;
  margin-left: 0;
}
.container-fluid .row .content {
  max-width: 1575px;
  float: left;
}
.container-fluid .row .login {
  max-width: 1575px;
  float: left;
}
.container-fluid .row .footer {
  max-width: 1575px;
  float: left;
}

.container-fluid .row .sidebar {
  margin-left: 0;
}

@media screen and (max-width: 992px) {
  .desktop {
    display: none;
  }
}

.tablet {
  display: none;
}
@media screen and (max-width: 992px) {
  .tablet {
    display: block;
  }
}

.small_tablet {
  display: none;
}
@media screen and (max-width: 768px) {
  .small_tablet {
    display: block;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .mobile {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .hide_big {
    display: block !important;
  }

  .hide_small {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .full_width {
    padding: 0;
  }
}

/*.sidebar_clear { margin: 15px; }*/
.content {
  float: right;
  min-height: 100px;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-left: 40px;
}
@media screen and (max-width: 992px) {
  .content {
    padding-left: 15px;
  }
}
.content .base {
  padding: 20px;
  background-color: #fff;
  min-height: 100px;
}

.footer {
  float: right;
  margin-bottom: 25px;
  padding-left: 40px;
}
@media screen and (max-width: 992px) {
  .footer {
    padding-left: 15px;
  }
}
.footer .base {
  padding: 20px;
  background-color: #fff;
  text-align: center;
}

.frontpage_logo img {
  width: 100px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: -30px;
  margin-left: 25px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
@media screen and (max-width: 992px) {
  .frontpage_logo img {
    margin-left: 0;
  }
}
.frontpage_logo span {
  font-size: 10px;
  color: #42887c;
  display: block;
  margin-left: 220px;
  margin-top: -31px;
}
@media screen and (max-width: 992px) {
  .frontpage_logo span {
    margin-left: 100px;
  }
}
@media screen and (max-width: 400px) {
  .frontpage_logo span {
    font-size: 8px;
  }
}
.frontpage_logo h1 {
  display: inline-block;
  color: #0D6657;
  margin-top: 25px;
  margin-left: 15px;
  font-family: "Kaushan Script";
  font-size: 55px;
  font-weight: 600;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
@media screen and (max-width: 400px) {
  .frontpage_logo h1 {
    font-size: 40px;
  }
}
.frontpage_logo a:hover h1 {
  color: #0D6657;
}
.frontpage_logo a:hover img {
  background-color: rgba(255, 255, 255, 0.5);
}

/*FOOTER*/
@media screen and (max-width: 992px) {
  .footer .navigation_button a {
    display: block;
    margin-left: 3px;
  }
}

.beyondchaos_dropdown {
  height: 40px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  position: relative;
}
.beyondchaos_dropdown .dropdown_button {
  height: 40px;
  padding: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  background-color: #9E82B0;
  color: #fff;
}
.beyondchaos_dropdown .dropdown_button:after {
  content: "+";
  padding-right: 14px;
  float: right;
}
.beyondchaos_dropdown .dropdown_button:hover, .beyondchaos_dropdown.active .dropdown_button {
  background-color: #6A507C;
  color: #fff;
}
.beyondchaos_dropdown.active {
  height: inherit;
}
.beyondchaos_dropdown.active .dropdown_button:after {
  content: "−";
}

.tabset > input[type=radio] {
  position: absolute;
  left: -200vw;
}
.tabset > input[type=radio] ~ label {
  margin-top: 25px;
  padding: 12px 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  background-color: #42887c;
  color: #fff;
  width: inherit;
  font-weight: 600;
  margin-left: 8px;
}
.tabset > input[type=radio] ~ label img {
  width: 20px;
  display: inline-block;
  margin-right: 10px;
}
.tabset > input[type=radio]:checked + label:before {
  display: none;
}

.tabset .tab-panel {
  display: none;
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
  background-color: #0D6657;
}

.tabset {
  text-align: center;
}

.tab-panel {
  text-align: left;
  padding-top: 30px;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

.filter {
  background-color: #dbe8e6;
  margin-bottom: 30px;
  padding: 30px 20px;
}
.filter input[type=checkbox] + label {
  min-height: 21px;
  line-height: 18px;
}
@media screen and (max-width: 768px) {
  .filter .headline-padding {
    margin-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .filter table td {
    display: block;
  }
}

.table-space {
  padding-right: 10px;
}

.button-group {
  text-align: center;
  margin-top: 25px;
}

.button-group-notop {
  text-align: center;
}

/*TABLES*/
table,
.table {
  width: 100%;
  color: #5f5f5f;
}

table.standard {
  border-collapse: collapse;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 20px;
  max-width: calc(100% + 0.3px);
  width: calc(100% + 0.3px);
}
table.standard tbody {
  border: 2px solid #42887c;
}
table.standard thead {
  border: 2px solid #42887c;
}
@media screen and (max-width: 768px) {
  table.standard thead {
    border: none;
  }
}

.standard th {
  background-color: #42887c;
  color: #fff;
  font-weight: 600;
}
.standard th a {
  color: #fff;
}

.boxed_table {
  padding-left: 0;
  padding-right: 0;
}

.table-hover tbody tr,
.table-hover tbody tr td,
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover {
  background-color: #EEEEEE;
}

.table-hover > tbody > th:hover {
  background-color: #42887c;
}

.table > tbody > tr:first-child > td,
.table > thead > tr > th {
  border: 0;
}

.table > thead > tr > th {
  padding: 10px 8px;
}

table thead tr th,
table tbody tr td,
table p {
  font-size: 13px;
}

/*BOXENDATEN*/
@media screen and (max-width: 1200px) {
  #boxendaten table,
#boxendaten thead,
#boxendaten tbody,
#boxendaten th,
#boxendaten td,
#boxendaten tr {
    display: block;
  }

  #boxendaten thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #boxendaten tr {
    border-bottom: 1px solid #EEEEEE;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #boxendaten tr:last-child {
    border: 0;
    padding-bottom: 0px;
  }

  #boxendaten tr:first-child {
    padding-top: 0px;
  }

  #boxendaten td:before {
    content: attr(data-title);
  }

  #boxendaten td {
    border: none;
    border-bottom: none;
    position: relative;
    padding-left: 35%;
    white-space: normal;
    text-align: left;
  }

  #boxendaten td:before {
    position: absolute;
    left: 15px;
    width: 35%;
    padding-right: 5px;
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
  }
}
/*NO-MORE-TABLES*/
@media screen and (max-width: 768px) {
  .no-more-tables table,
.no-more-tables thead,
.no-more-tables tbody,
.no-more-tables th,
.no-more-tables td,
.no-more-tables tr {
    display: block;
  }

  .no-more-tables thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .no-more-tables.tablesorter thead,
.no-more-tables .tablesorter thead {
    border: none;
    padding-bottom: 20px;
  }
  .no-more-tables.tablesorter thead:before,
.no-more-tables .tablesorter thead:before {
    content: "Filter by:";
    font-style: italic;
  }
  .no-more-tables.tablesorter thead th,
.no-more-tables .tablesorter thead th {
    display: inline-block;
    cursor: pointer;
    padding: 0 7px;
    background-color: transparent;
    border-right: 1px solid #b9b9b9;
    color: #42887c;
  }
  .no-more-tables.tablesorter thead th:hover,
.no-more-tables .tablesorter thead th:hover {
    color: #42887c;
  }
  .no-more-tables.tablesorter thead th:first-child,
.no-more-tables .tablesorter thead th:first-child {
    padding-left: 0;
  }
  .no-more-tables.tablesorter thead th:last-child,
.no-more-tables .tablesorter thead th:last-child {
    border-right: none;
    padding-right: 0;
  }
  .no-more-tables.tablesorter .horselisthead th:first-child,
.no-more-tables .tablesorter .horselisthead th:first-child {
    position: absolute;
    padding: 0;
  }
  .no-more-tables.tablesorter .horselisthead th:nth-child(2),
.no-more-tables .tablesorter .horselisthead th:nth-child(2) {
    padding-left: 0;
  }
  .no-more-tables.tablesorter tr,
.no-more-tables .tablesorter tr {
    border-bottom: 2px solid #42887c;
    position: relative;
    left: 0;
    top: 0;
  }
  .no-more-tables.tablesorter tr:last-child,
.no-more-tables .tablesorter tr:last-child {
    border: 0;
  }

  .no-more-tables td {
    border: none;
    border-bottom: none;
    position: relative;
    padding-left: 35%;
    white-space: normal;
    text-align: left;
  }
  .no-more-tables td:before {
    position: absolute;
    left: 15px;
    width: 35%;
    padding-right: 5px;
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
    content: attr(data-title);
  }
}
@media screen and (max-width: 530px) {
  .no-more-tables td {
    padding-left: 45%;
  }

  .no-more-tables .user_success td {
    padding-left: 55%;
  }

  .no-more-tables.tab_newfoals td {
    padding-left: 45%;
  }
}
/*ALL KINDS OF TABLES*/
@media screen and (max-width: 768px) {
  .table-hover tbody tr:hover td,
.table-hover tbody tr:hover {
    background-color: transparent;
  }

  .table-striped tbody tr:nth-child(odd):hover {
    background-color: #F9F9F9;
  }

  .long_table > tbody > tr > td {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .long_table > tbody > tr {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .boxed_table {
    padding-left: 15px;
    padding-right: 15px;
  }

  .naked_table tr {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d8d8d8 !important;
  }
  .naked_table tr:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none !important;
  }
  .naked_table tr:first-child td {
    padding-top: 0px;
  }
  .naked_table tr:last-child td {
    padding-bottom: 0px;
  }
  .naked_table tr:first-child td:first-child {
    padding-top: 10px;
  }
  .naked_table tr:last-child td:last-child {
    padding-bottom: 20px;
  }
}
.mdr-info {
  background-color: #dad3d8;
  border: 1px solid #6A507C;
  padding: 15px 20px;
}
@media screen and (min-width: 1400px) {
  .mdr-info {
    width: 50%;
  }
}

/*Typo*/
p {
  margin: 0;
}

b, strong, .b {
  font-weight: 600;
  letter-spacing: 0 !important;
}

a, a:focus, a:visited, a:active {
  cursor: pointer;
  letter-spacing: 0 !important;
  color: #6A507C;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

a:hover {
  color: #9E82B0;
  text-decoration: none;
}

h2, h3, h4 {
  font-weight: 600;
  border-bottom: 3px solid #c9ddd9;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

h2.grey, h3.grey, h4.grey {
  border-bottom: 3px solid #EEEEEE;
  display: inline-block;
  margin-bottom: 3px;
}

h1 {
  font-family: "Amatic SC";
  font-weight: 700;
  font-size: 40px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 13px;
}

.news_sidebar h3, .news_sidebar h4 {
  border-bottom: 3px solid #EEEEEE;
}

.grey_link {
  color: #5f5f5f;
}
.grey_link:visited, .grey_link:active {
  color: #5f5f5f;
}
.grey_link:hover {
  color: #42887c;
}

@media screen and (max-width: 992px) {
  .linknotactive {
    pointer-events: none;
    cursor: default;
  }
}

.ok {
  color: #f1c20f;
  font-weight: 600;
}

.good {
  color: #41ce09;
  font-weight: 600;
}

.bad {
  color: #ea2400;
  font-weight: 600;
}

/*# sourceMappingURL=styles.css.map */
