.card_filter {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.filter_intro {
  flex: 1 1 100%;
  width: 100%;
}

.card_filter_dropdown {
  flex: 0 1 378px;
  display: flex;
  border: 1px solid #d5d5d5;
  position: relative;
  max-height: 54px;
}

.card_filter_dropdown:after {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  background: url('/wp-content/themes/maxomedia-starter-child/assets/images/sort-by-arrow-down.png') center no-repeat;
  background-size: auto;
  width: 13px;
  height: 8px;
  transition: all 0.3s;
  top: 0;
  bottom: 0;
  padding: 15px 10px;
  margin: auto;
  cursor: pointer;
  pointer-events: none;
}

.card_filter_dropdown.active:after {
  transform: rotate(180deg);
}

.card_filter_dropdown select {
  background: transparent;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  padding-right: 36px;
  cursor: pointer;
}

.printer_icon {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: unset !important;
  background: url('/wp-content/uploads/2022/01/print_50.png');
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 20px;
}
.printer_icon svg {
  display: none;
}
.card_filter_old_data {
  padding: 0 20px;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #aaa;
}

.card_filter_old_data.active {
  display: flex;
}

.card_filter_old_data a {
  padding: 5px 10px;
  text-align: center;
  height: 54px;
  background: #f69f29;
  display: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s;
}

.card_filter_old_data a.active {
  display: flex !important;
}

.card_filter_old_data a:hover {
  background: #d27c00;
}

.card_filter_old_data a.card_filter_old_data_back_btn {
  display: none;
}

table.vis_table {
  border: none !important;
  border-collapse: collapse;
  margin: 50px 0 0 0;
  padding: 0;
  width: 100%;
  table: fixed;
  display: none;
  letter-spacing: 0;
  font-size: 1rem;
}

table.vis_table.active {
  /* display: table; */
  display: block;
}

table.vis_table thead {
  border: none !important;
}

table.vis_table thead th,
table.vis_table thead tr {
  border-top: none !important;
  letter-spacing: 0;
}

table.vis_table thead th {
  width: 20%;
}

table.vis_table tbody {
  border: none !important;
}

table.vis_table tbody > tr:nth-child(2n + 1) > td,
table.vis_table tbody > tr:nth-child(2n + 1) > th {
  background: transparent;
}

table.vis_table tr {
  background-color: transparent;
  border-top: 1px solid #ddd;
  padding: 0.35em;
}

table.vis_table th,
table.vis_table td {
  padding: 0.625em;
  text-align: left;
  border: none;
}

table.vis_table td {
  border: none;
  padding: 20px 10px;
}

table.vis_table th {
  letter-spacing: 0.1em;
}

.issuer_details {
  margin-top: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.issuer_logo img {
  width: 100%;
  height: auto;
}

.tick_image {
  margin-bottom: -5px;
  width: 20px;
}

.lds-dual-ring {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 15px;
  top: 0;
  display: none;
}
.lds-dual-ring.active {
  display: inline-block;
}
.lds-dual-ring:after {
  content: ' ';
  display: block;
  width: 25px;
  height: 25px;
  margin: 8px;
  border-radius: 50%;
  border: 2px solid #2a2a2a;
  border-color: #2a2a2a transparent #2a2a2a transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 600px) {
  .lds-dual-ring {
    right: 15px;
    top: 5px;
  }
  table.vis_table {
    border: 0;
  }

  table.vis_table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table.vis_table tr {
    /*border-bottom: 3px solid #ddd;*/
    display: block;
    margin-bottom: 0.625em;
  }

  table.vis_table tr.mobile_hide {
    display: none !important;
  }

  table.vis_table td {
    /*border-bottom: 1px solid #ddd;*/
    display: block;
    text-align: left;
  }

  table.vis_table td::before {
    /*
        * aria-label has no advantage, it won't be read inside a table.vis_table
        content: attr(aria-label);
        */
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }

  table.vis_table td:before {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
  }

  table.vis_table td:last-child {
    border-bottom: 0;
  }

  .issuer_details {
    border-bottom: none;
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 10px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-box-shadow: inset 0px 1px 5px 0px rgba(204, 204, 204, 1);
  -moz-box-shadow: inset 0px 1px 5px 0px rgba(204, 204, 204, 1);
  box-shadow: inset 0px 1px 5px 0px rgba(204, 204, 204, 1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #f69f29;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*input:checked + .slider {*/
/*    background-color: #2196F3;*/
/*}*/

/*input:focus + .slider {*/
/*    box-shadow: 0 0 1px #2196F3;*/
/*}*/

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.data_labels.active {
  color: #f69f29;
}

.card_term_details {
  margin-top: 100px;
}

.card_term_details ul,
.card_term_details ol {
  margin-bottom: 0.9rem;
  flex: 1 1 100%;
}

.card_term_details ol.first_level {
  list-style-type: none;
  padding-left: 0;
  counter-reset: listNumbering;
}

.card_term_details ol.first_level > li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.card_term_details ol.first_level {
  counter-reset: listNumbering;
}

.card_term_details ol.first_level > li {
  counter-increment: listNumbering;
}

.card_term_details ol.latin_nums.first_level {
  counter-reset: latinNumbering;
}

.card_term_details ol.latin_nums.first_level > li {
  counter-increment: latinNumbering;
}

.card_term_details ol.first_level > li:before {
  content: counter(listNumbering, decimal) '.';
  position: relative;
  padding-right: 5px;
  /*top: 3px;*/
  flex: 0 1;
  align-self: flex-start;
  /*color: #fff;*/
  /*background: #cacaca;*/
  line-height: 33.6px;
  margin: 58px auto 30px;
  /*padding-left: 15px;*/
  z-index: 1;
}

.card_term_details ol.latin_nums.first_level > li:before {
  content: counter(latinNumbering, upper-latin) '.';
  padding-right: 15px;
}

.card_term_details ol li div {
  flex: 1 1 100%;
}

.card_term_details h3 {
  /*display: block;*/
  width: auto;
  flex: 1;
  /*color: #fff;*/
  /*background: #cacaca;*/
  position: relative;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  margin: 60px auto 30px;
  align-self: auto;
}

.card_term_details h3:before {
  content: '';
  display: block;
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  /*background: #cacaca;*/
  z-index: 0;
}

.card_term_details h5 {
  font-weight: 700;
}

.card_term_details .new_data,
.card_term_details .old_data {
  display: none;
}

.card_term_details .new_data.active,
.card_term_details .old_data.active {
  display: block;
}

.terms-section h1 {
  /*padding: 0 10px;*/
  /*color: #fff;*/
  /*background: #ffa73d;*/
  /*margin-bottom: 0;*/
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  margin: 60px auto 30px;
}
.inhalt_wrapper {
  margin-bottom: 7em;
}

.inhalt_wrapper a {
  display: block;
  text-decoration: none;
  color: #74a0ca;
  transition: all 0.3s;
  font-weight: 600;
  text-transform: unset !important;
  font-size: 23px;
}

.inhalt_wrapper ol li {
  color: #74a0ca;
  font-weight: 600;
  margin-bottom: 15px;
}
.inhalt_wrapper a:hover {
  color: #5880b6;
}

.inhalt_wrapper .main_sections {
  margin-bottom: 20px;
}

.second_level {
  padding-left: 23px;
}
table.vis_table.procedure_table {
  margin-bottom: 30px !important;
}
.procedure_table tr:nth-child(even) {
  background: #f6f6f6;
}

.main_section_t {
  display: block;
  padding: 5px;
  /*background: #ffa73d;*/
  /*color: #fff !important;*/
  font-weight: 300 !important;
  text-transform: uppercase;
  margin-bottom: 10px;
  /*border-bottom: 1px solid #cecece;*/
}
.content_table {
  overflow: hidden;
}
.content_table > li {
  position: relative;
}
.content_table li a {
  font-weight: 300 !important;
}
.content_table > li > a {
  /*background: #cacaca;*/
  position: relative;
  display: block;
  /*color: #fff !important;*/
  text-transform: uppercase;
}

table.vis_table.procedure_table td {
  text-align: left;
}

@media all and (max-width: 670px) {
  .card_filter {
    flex-direction: column;
  }
  .card_filter_dropdown {
    margin-bottom: 15px;
  }
  .card_filter_old_data {
    padding: 0;
    margin-bottom: 15px;
  }

  .print_card_details {
    margin-left: unset;
  }
}

@media all and (max-width: 375px) {
  .card_filter_dropdown {
    flex: 0 1 240px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2 !important;
}

h1,
h2 {
  letter-spacing: -1px;
}



/* Styling for table (mainly override because predecessors didnt know how to write css) */

@media screen and (min-width: 1200px) {

    .vis_table:not(.procedure_table) {

        display: flex !important;
    }
    
    .vis_table:not(.procedure_table) > tbody {

        flex: 1;
    }

    .vis_table:not(.procedure_table) > tbody > tr {

        display: grid;
        grid-template-columns: 33% 220px 200px 150px auto;
    }

}
