/* variables */
:root {
  --color-primary: #EB0023; 
  --color-primary-hover: #b3000f; 

  --color-body: #2d2d2d;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* general setup */
*,
*:before,
*:after {
  box-sizing: border-box; 
  margin: 0;}

*:focus {
  outline: none; }

  html {
    font-size: 100%;
    scroll-behavior: smooth;
  }

body {
  font-family: "Open Sans", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-body); 
  line-height: 1.6;
  min-height: 90vh;
  font-size: 1rem;
  font-weight: 400;
}

table{
  font-size: 14px;
}



.pagecontainer {
  position: relative;
  min-height: 100vh;
}

.outer-box {
 padding-bottom: 4rem;
}

#id_simulator {
  margin: 0 40px;
}

/* scrollbar */

::-webkit-scrollbar-track
{
  background-color: #f2f2f2;
}

::-webkit-scrollbar
{   
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb
{
  border-radius: 10px;
    background-color: #8A8C8E;
}


/* navigation & header */
header .top-nav, header .main-nav {
  padding: 0 40px; 
  line-height: 24px;
}

header .top-nav {
  position: relative;
  z-index: 1004;
  background: white;
}

header .top-nav .logo {
  padding: 0.75rem 0 0.25rem 0.5rem;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  outline: none;
}

header .top-nav a {
  text-decoration: none;
  background-color: transparent;
  font-size: 14px;
}

header .link-items div{
  margin-left: 0.125rem;
  color: var(--color-body);
  padding: 12px 16px;
  height: 100%;
}

header .link-items a{
  background-color: transparent;
  color: inherit;

}

header .link-items a:hover{
  text-decoration: underline;
}

.login a{
  color: var(--color-primary) !important;
}

header .main-nav {
  height: 3rem;
    padding: 0 2.5rem;
    color: #2d2d2d;
    background-color: #f2f2f2;
    box-shadow: 0 0 0.125rem 0;
    width: 100%;
    position: relative;
    z-index: 1003;
}

header .main-nav .logo {
  padding: 10px 0;
  display: inline-block;
} 

.main-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  border-top: 0.25rem solid transparent;
  margin: 0 auto 0 0;
  font-weight: 700;
  border-bottom: 0.25rem solid transparent;
}

.main-nav li:hover {
  background: var(--color-primary);
  color: white;
  border-top: 0.25rem solid #f2f2f2;
  border-bottom: 0.125rem solid var(--color-primary);
}

.main-nav ul a {
  padding: 7px 16px;
  display: inline-block;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  background-color: transparent;
}


/* Topology Nav Overlay */

.topology_selection .tablist{
  border-bottom: none;
  margin: 0 0;
}

.topology_selection{
  width:100%;
  background-color: #fff;
  z-index: 1002;
  position:absolute;
}

.topology_list {
  margin: 0 20px;
}

.delete_button{
  color: var(--color-primary);
  font-weight: bold;
  font-stretch: expanded;
  margin: 0 auto;
  width: 20px;
  text-align: center;
  cursor: pointer; 
  font-size: 16px;
  margin-left: 10px;
}


/* footer */

  footer{
    text-align:center;
    padding: 8px 16px;
    z-index: 1001;
    height: 3rem;
    padding: .8rem;
    color: var(--color-body);
    background-color: #f2f2f2;
    box-shadow: 0 0 0.125rem 0;

    position: absolute;
    bottom: 0;
    width: 100%; 
  }

  footer a{
      display: inline-block;
      color: var(--color-body);
      text-decoration: none;
      transition: transform 0.1s ease 0s, transform 0.1s ease 0s;
  }
  footer a:hover{
      color: var(--color-primary);
      text-decoration: underline;
  }


/* typo */

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 1rem; }

h2 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 1rem;  }


/* Login */

.login_box {
  padding: 2rem;
  width: 50%;
  margin: 3rem auto;
}

.login_box p {
  margin-bottom: 1rem;;
}

/* plots */

.plots_section .js-plotly-plot {
  padding: 10px;
  height: 350px;
  margin-bottom: 20px;

}

.plot_wrapper{
  height:auto;
  width:49%
}

/* Loadin Animation */
.loading_animation{
  display:none;
  position: absolute;
  height: 100%;
  width: calc(100% - 1.25rem);
  background-color: white;
  opacity: 0.8;
  z-index: 1000;
  margin: 1px auto;
}

.loading_animation:after {
  background-image: url(../icon/HE_Loading_4.gif);
  background-repeat: no-repeat;
  background-position: 25% 30vh;
  position: fixed;
  height: 100%;
  width: 100%;
  content: "";
}


/* forms */
label {
  color: var(--color-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"], select  {
  background-color: white;
  height: 1.9rem;
  padding: 0 0.75rem;
  border: 1px solid #4d4d4d;
  width: 100%;
  /*margin-bottom: 1rem;*/
}

input[type="text"]:focus , input[type="email"]:focus , input[type="password"]:focus, input[type="number"]:focus  {
  outline-width: .125rem;
  outline-color: #4d4d4d;
  outline-style: solid;
  box-shadow: 0 0.125rem .75rem 0.125rem rgba(0, 0, 0, 0.4);
}


/* tables */
.fieldset {
  margin-top: 1.65rem;
}

.table_data_current{
  min-width:100%;
}

#Conv_Switch {

}

/* buttons & link */

button, .button, .simulate_button, .simulate__miss_profile_button {
  text-align: center;
  color: white;
  padding: .438rem 1.375rem;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  cursor: pointer;
  margin-bottom: 1rem;
  margin-top: 20px;
}

.button-primary{
  display:inline;
  text-align: center;
  color: white;
  padding: .438rem 1.375rem;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  cursor: pointer;
  margin-bottom: 1rem;
  margin-top: 20px;
  margin-left:10px;
  margin-right: 10px;
}


.pdf_button{
  text-align: center;
  color: var(--color-primary);
  padding: .438rem 1.375rem;
  background-color: white;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  margin-bottom: 1rem;
  margin-top: 20px;
}

.simulate_button, .simulate__miss_profile_button {
  margin-left: auto;
margin-right: auto;
display: block;
}

button:hover, .button:hover, .simulate_button:hover, .button-primary:hover, .simulate__miss_profile_button:hover {
  background-color: var(--color-primary-hover);
}

.pdf_button:hover {
  background-color: var(--color-primary-hover);
  color: white;
}

a:not(header a, footer a) {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: underline;
  transition: transform 0.1s ease 0s, transform 0.1s ease 0s;
}

a:not(header a, footer a):hover {
  color: var(--color-body);
}

/* misc */
.displayblock {
  display: block;
}

.bold{
  font-weight: 700;
  
}

.center {
  text-align: center;
}

.margin-lr-40 {
  margin: 0 40px;
}

.overflow {
  overflow: scroll;
}

/*----------------------- PE SYS STYLES --------------------*/
.w-70{
  width: 70% !important;
}

ul.tablist {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 0;
  list-style: none;
  white-space: nowrap;
  margin: 0;
  width: 100%;
  position: relative;
  border-bottom: 3px solid var(--color-primary); }
  ul.tablist li {
    color:var(--color-primary);
    font-size: 16px;
    border-top: 1px solid var(--color-primary);
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    background: #fff;
    margin-right: 0.7rem;
    padding: 0.5rem 2rem;
    cursor: pointer; }
    ul.tablist li a {
      color: var(--color-primary);
      text-decoration: none;
      font-weight: 700;
      width: 100%;
      padding: 0.5rem 2rem; }
    ul.tablist li.active {
      background: var(--color-primary);
      color: #fff; }
      ul.tablist li.active:hover {
        background: var(--color-primary-hover);
        color: #fff; }
      ul.tablist li.active a {
        color: #fff;
        padding: 0.75rem 2rem; }


.plots .tablist {
  border-bottom: 0px; }
  .plots .tablist li {
    border-top: 0;
    border-bottom: 1px solid var(--color-primary);
    cursor: pointer; 
    color: var(--color-primary)
  }
  .plots .tablist li:hover {
    border-color: var(--color-primary-hover);
    color: var(--color-primary-hover)
  }

.device_table, .device_table, .device_table_SwitchingCell {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
  width: 100%;
  border-collapse: collapse;
  background: #fff; }
  .device_table th, .device_table th, .device_table_SwitchingCell th {
    white-space: nowrap;
    border-collapse: collapse;
    border-spacing: 0px 0px;
    color: #2e2e2e;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    overflow-wrap: break-word;
    text-align: center;
    vertical-align: top;
    padding: 1rem 1.5rem; }
  .device_table td, .device_table td, .device_table_SwitchingCell td {
    border-bottom: 1pt solid #DCDDDE;
    padding: 3px 8px;
    text-align: center; }
    .device_table td:nth-last-child, .device_table td:nth-last-child, .device_table_SwitchingCell td:nth-last-child {
      border: none; }
  .device_table.simplify, .device_table.simplify, .device_table_SwitchingCell.simplify {
    margin-bottom: 0; }
  .device_table.simplify th, .device_table.simplify th, .device_table_SwitchingCell.simplify th {
    padding: 0.2rem;
    font-size: 14px; }
    .device_table.simplify th.th_number, .device_table.simplify th.th_number, .device_table_SwitchingCell.simplify th.th_number {
      width: 150px; }
      .device_table.simplify th.th_number input, .device_table.simplify th.th_number input, .device_table_SwitchingCell.simplify th.th_number input {
        width: 50px !important; }
  .ui-slider {
    width: 100%;
    margin: 10px auto 0 auto; }
  .ui-slider .ui-widget-header {
  background: var(--color-primary); }
  .device_table.simplify td, .device_table.simplify td, .device_table_SwitchingCell.simplify td {
    padding: 0.2rem;
    font-size: 14px; }
    .device_table.simplify td.tools, .device_table.simplify td.tools, .device_table_SwitchingCell.simplify td.tools {
      width: 30px !important;
      vertical-align: middle; }
      .device_table.simplify td.tools .radio, .device_table.simplify td.tools .radio, .device_table_SwitchingCell.simplify td.tools .radio {
        color: var(--color-primary);
        display: grid; }
      .device_table.simplify td.tools .radio__input, .device_table.simplify td.tools .radio__input, .device_table_SwitchingCell.simplify td.tools .radio__input {
        display: flex; }
        .device_table.simplify td.tools .radio__input input, .device_table.simplify td.tools .radio__input input, .device_table_SwitchingCell.simplify td.tools .radio__input input {
          opacity: 0;
          width: 0;
          height: 0;
          display: none; }
      .device_table.simplify td.tools .radio__control, .device_table.simplify td.tools .radio__control, .device_table_SwitchingCell.simplify td.tools .radio__control {
        width: 1em;
        height: 1em;
        border-radius: 50%;
        border: 0.1em solid currentColor;
        transform: translateY(-0.05em);
        display: grid;
        place-items: center;
        margin: 0 auto; }
      .device_table.simplify td.tools .radio__label, .device_table.simplify td.tools .radio__label, .device_table_SwitchingCell.simplify td.tools .radio__label {
        line-height: 1; }
      .device_table.simplify td.tools input + .radio__control::before, .device_table.simplify td.tools input + .radio__control::before, .device_table_SwitchingCell.simplify td.tools input + .radio__control::before {
        content: "";
        width: .5em;
        height: .5em;
        box-shadow: inset .5em .5em currentColor;
        border-radius: 50%;
        transform: scale(0); }
      .device_table.simplify td.tools input:checked + .radio__control::before
      , .device_table.simplify td.tools input:checked + .radio__control::before
      , .device_table_SwitchingCell.simplify td.tools input:checked + .radio__control::before
       {
        transform: scale(1); }
      .device_table.simplify td.tools input:checked + .radio__control, .device_table.simplify td.tools input:checked + .radio__control, .device_table_SwitchingCell.simplify td.tools input:checked + .radio__control {
        background: currentColor; }
      .device_table.simplify td.tools span.delete, .device_table.simplify td.tools span.delete, .device_table_SwitchingCell.simplify td.tools span.delete {
        color: var(--color-primary);
        font-weight: bold;
        font-stretch: expanded;
        font-size:14px;
        margin: 0 auto;
        display: block;
        width: 20px;
        text-align: center;
        cursor: pointer; }

        span.delete:hover{
          color: var(--color-primary-hover) !important;
        }

        .switch{
          color: var(--color-primary);
          font-weight: bold;
          font-stretch: expanded;
          font-size:14px;
          margin: 0 auto;
          text-align: center;
          cursor: pointer; 
      }
      .switch:hover{
        color: var(--color-primary-hover) !important;
      }

.device_table_SwitchingCell .addhighside,
.device_table_SwitchingCell .addlowside {
  text-indent: -5000px;
  display: inline-block;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: url(img/add-high-side.svg) no-repeat; }

.device_table_SwitchingCell .addhighside {
  margin-right: 4px; }

.device_table_SwitchingCell .addlowside {
  background-image: url(img/add-low-side.svg); }

.nowrap {
  white-space: nowrap; }

td label {
  position: relative; }
  td label input[type=button] {
    color: var(--color-primary);
    border: none;
    border-radius: 0;
    background: #fff;
    font-size: 22px;
    line-height: .7;
    cursor: pointer;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    font-weight: 900;
    vertical-align: initial;
    padding: 0 2px;
    display: inline-block;
  }
  td label input[type=button]:hover {
    color: var(--color-primary-hover);
  }
#id_selected_devices_box, #id_devices_box {
  width: 100%;
  min-width: 433px;
  margin-bottom: 1rem;}

.matching_devices{
  border-top: 2px solid rgb(235, 0, 35);
  margin-top: 3rem;
}
.matching_devices .tablist{
  font-size:large;
}
.inputParameters {
  margin-bottom: 50px; }
  .inputParameters label {
    font-size: 1.2rem;
    font-weight: bold; }
  .inputParameters input {
    padding: 0.5rem;
    display: block;}



.flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative; }
  .flex .flexLeft {
    border-right: solid 1px #DCDDDE;
    padding-right: 40px;
    width: 35%;
    min-width: 500px; }
    .flex .flexLeft ul.tablist {
      border-bottom: none; }
      .flex .flexLeft ul.tablist li {
        border-top: none;
        border-color: var(--color-primary);
        color: var(--color-primary);
        border-bottom: 1px solid var(--color-primary);
        padding: 0.35em 0.5em;
        cursor: pointer;
        font-size: 0.8em; }
        .flex .flexLeft ul.tablist li.active {
          background: var(--color-primary);
          color: #fff; }
  .flex .flexRight {
    width: 65%;
    min-width: 430px;
    padding: 0 0 0 1.25rem; 
    position: relative;
  }

#current_plots .plots_box, #compare_plots .plots_box {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
  scroll-behavior: smooth; }
  #current_plots .plots_box section, #compare_plots .plots_box section {
    display: block;
    width: 100%;
    min-width: 350px; }
  #current_plots .plots_box .plots_section, #compare_plots .plots_box .plots_section {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%; }



.anchor_navigation {
  font-size:small;
  position: absolute;
  top: 5px;
  right: 0;
  background: #ffffff;
  padding: 5px; }
  .anchor_navigation a {
    color: #555;
    text-decoration: none;
    position: relative;
    display: inline;
    padding: 3px 5px;
    font-size: 0.8em; }
    .anchor_navigation a:hover {
      color: var(--color-primary); }
    .anchor_navigation a.active {
      color: var(--color-primary); }

.topoWithInputs {
  position: relative; }
  .topoWithInputs .high_side, .topoWithInputs .low_side, .topoWithInputs .half_bridge {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 350px;
    display: block;
    margin-top: 40px; }
    .topoWithInputs .high_side label, .topoWithInputs .low_side label, .topoWithInputs .half_bridge label {
      position: absolute;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.2);
      padding: 5px;
      font-size: 0.8em; }
      .topoWithInputs .high_side label:hover, .topoWithInputs .low_side label:hover, .topoWithInputs .half_bridge label:hover {
        background: rgba(0, 0, 0, 0.2);
        cursor: pointer; }

td.device_letter {
  font-weight: bold;
  color: #fff; }


.form3spalter, .inputParameters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .form3spalter p, .inputParameters p {
    margin-top: 10px;
    width: 30%;
    min-width: 100px; }
    .form3spalter p label, .form3spalter p input, .inputParameters p label, .inputParameters p input {
      width: 100%;
      display: block; }
    .form3spalter p label, .inputParameters p label {
      font-size: 0.8em;
      margin-bottom: 8px;
      background: #8A8C8E;
      color: #fff;
      width: 100%;
      padding: 2px 3px; }
      .form3spalter p label:hover, .inputParameters p label:hover {
        background: var(--color-primary);
        transition: background 1s; }
    .form3spalter p:hover label, .form3spalter p:focus-within label,
    .form3spalter p label[for]:focus,
    .form3spalter p label[for]:active, .inputParameters p:hover label, .inputParameters p:focus-within label,
    .inputParameters p label[for]:focus,
    .inputParameters p label[for]:active {
      background: var(--color-primary);
      transition: background 1s; }



form h2 {
  font-weight: normal; }

  .filter_slider{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.sliderInputField{
    max-width:80px;
    border: 1pt solid #DCDDDE;
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
    margin-bottom: 10px;
}

.title_line{
  width: 100%;
  text-align: left;
  margin-bottom: 0.5rem;
  margin-top: 30px;
}

.title_line h1{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 15px;
}

.title_line h2{
  font-size: 1.225rem;
  line-height: 2.125rem;
  font-weight: 400;
  padding-bottom: .8rem;
  margin-top: 30px;

}

table th span{
  font-size: 16px;
font-weight: 400;
}

.itable_data th, .itable_data td{
  text-align: left;
  padding-left: 8px;
  padding-right: 8px;
}

table tr:nth-child(1) th{
  border-bottom: 2px solid rgb(235, 0, 35);
}

.device_data_table th, td{
  border-bottom: 1px solid #DCDDDE;
}

.device_data_table th{
  border-bottom: 0.25rem solid var(--color-primary);
}

.parameters{
  display:none;
}

.open_parameters{
  cursor: pointer;
  margin-left: 5px;
  color: #EB0023;
  font-weight: bold;
}
.close_parameters{
  cursor: pointer;
  margin-left: 5px;
  color: #EB0023;
  font-weight: bold;
}
.title_cell{
  cursor: pointer;
  padding: 5px;
  padding-bottom: 6px;
  font-size:16px;
  font-weight: 400;
  border: none;
  background: #f2f2f2;
}



.title_cell span{
  font-size:larger;
  font-weight: 700;
  width: 15px;
  height: 15px;
  font-family: sans-serif;
  font-style: normal;
  font-weight: 400;
}
.title_cell span::before{
  content: "+";
  display:inline-block;
  width: 20px;
  margin-right: 15px;
  color: var(--color-primary)
}

.title_cell span::before:hover{
  color: var(--color-primary-hover)
}

.main_title_cell{
  cursor: pointer;
  padding-top: 6px;
  font-size:large;
  font-weight: 800 !important;
  border: none;
}

.hidden{
  display:none;
}

.active_title_cell span::before{
  content: "-";
  display:inline-block;
  width: 20px;
  margin-right: 15px;
  padding-left: 4px;
}

.title_cell_compare{
  cursor: pointer;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size:16px;
  font-weight: 400;
  border: none;
}
.title_cell_compare span{
  font-size:16px;
  font-weight: 400;
  width: 15px;
  height: 15px;
  font-family: sans-serif;
  font-style: normal;
  font-weight: 400;
}
.title_cell_compare span::before{
  content: "+";
  display:inline-block;
  width: 20px;
  margin-right: 15px;
}


.active_title_cell_compare span::before{
  content: "-";
  display:inline-block;
  width: 20px;
  margin-right: 15px;
  padding-left: 4px;
}



.text_filter{
  border: 1px solid #DCDDDE;
  font-size: 1rem;
  font-weight: 400;
  padding: 5px;
}



.thermal_form{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}


.thermal_form label{
  width: 60%;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 8px;
  background: #DCDDDE;
  color: #000;
  padding: 4px 3px;
}
.thermal_form label:hover{
  background: var(--color-primary);
  transition: background 1s;
  color: white;
}

.thermal_form input, .thermal_form select{
  width: 38%;
  display: inline-block;
  font-size: 14px;
  border: none;
  border-bottom-color: currentcolor;
  border-bottom-style: none;
  border-bottom-width: medium;
  border-bottom: 1px solid #8A8C8E;
  padding: 3px;
}

.thermal_form select:hover{
  cursor: pointer;
}




.result_table{
  font-size: 14px;
  margin-left:auto;
  margin-right:auto;
  border-collapse: collapse;
  width: 80%;
}

.result_table th{
  text-align: left;
}



/*----------------------- PE SYS STYLES end--------------------*/


/* media queries */

@media (max-width: 1200px) {
  #anchor_navigation_current {
    display: none;
    }
  }
  


  @media (max-width: 1025px) {
    .flex.main-nav {
      flex-direction: column;
      height: auto;
    }
    }

  @media (min-width:960px) and (max-width:1200px) {
    .plots_section {
      flex-direction: column;
    }
    .plots_section  div{
      width: 100%;
    }
  }

  
  @media (max-width: 959px) {
    .login_box {
      width: 100%;
    }
    .flex {
      flex-direction: column;
    }
    .flexLeft, .flexRight {
      width: 100% !important;
    }
    .flexLeft {
      border-right: none !important; 
      padding-right: 0 !important;
    }
    .flexRight {
      padding: 2rem 0 !important;
    }
    #plots {
      border-top: 1px solid var(--color-primary);
    }
    #current_plots .plots_box {
      padding-right: 0;
    }
    .flex.link-items div:nth-child(n + 2) {
      display: none;
    }
    .flex.top-nav, .flex.main-nav {
      flex-direction: row;
    }
    
  }

  @media (max-width: 600px) {
    .form3spalter, .inputParameters{
      flex-direction: column;
    }
    .form3spalter p, .inputParameters p {
      width: 100%;
    }
    }
  



    .th_text input, .th_number input{
      width:100px
  }
  
  

.equivalent_circuit_img{
  width:70%;
  margin-bottom: 40px;
  margin-left:auto;
  margin-right: auto;
  display: block;
}



  .overlay{
      position: absolute;
      width: 100%;
      height:0;
      top:0;
      left:0;
      background: rgba(0,0,0,.75);
      z-index: 21;
      display:none;
  }

  .flex .topology_selection ul.tablist li.active {
    background: var(--color-primary);
    color: #fff;
  }

  .flex .topology_selection ul.tablist li {
    border-top: none;
    border-top-color: currentcolor;
    border-color: var(--color-primary);
    border-bottom-color: rgb(204, 0, 0);
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    padding: 0.35em 0.5em;
    cursor: pointer;
    font-size: 0.8em;
  }

.topology_list{
height: 0;
transition: height 4s;
}


.parent {
display: flex;
flex-wrap: wrap;
}

.child {
flex: 1 0 32%; 
max-width: 32%;
}

.parent .child p{
width: 100%;
padding: 2%;
}

.result_table th{
border-bottom: 0.25rem solid var(--color-primary);
}

.result_table th, .result_table td{
  border: 1pt solid #DCDDDE;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.result_table .row_title{
text-align: left;
}

.result_tables h2{
margin-top: 40px;
margin-bottom: 10px;
}

.parent .child p select{
width: 100%;
}

.parent .child input[type="checkbox"]{
display: block;
padding: unset;
font-size: unset;
-webkit-appearance: auto;
height: 20px;
width: 20px;
}



.row {
display: flex;
flex-flow: row wrap;
}
.item {
padding: .75rem;
margin-bottom: 2rem;
max-width: 20%;
}


.item > img {
margin-bottom: .75rem;
width: 100%;
padding: 10px;
}

.item > img:hover {
border: 1px solid var(--color-primary);
padding: 9px;
}


.item-text {
font-size: 85%;
}


.simulator_content{
margin-top: 2.5rem;
}


.device_table a{
    display: inline-block;
    color: var(--color-inspire-red-500);
    text-decoration: underline;
    transition: transform 0.1s ease 0s, transform 0.1s ease 0s;
}
.device_table a:hover{
    color: rgb(0, 0, 0);
}
.dsc_sort:after,
.asc_sort:after {
content: ' ';
position: relative;
left: 2px;
border: 8px solid transparent;
}

.sorting_header{
    cursor: pointer;
}

.dsc_sort:after {
top: 10px;
border-top-color: silver;
}

.asc_sort:after {
bottom: 15px;
border-bottom-color: silver;
}

.dsc_sort,
.asc_sort {
padding-right: 10px;
}



.device_table_box .filter_slider {
    width: 90%;
}

.filter_column input{
    width:100px;
}


.device_table a{
    display: inline-block;
    color: var(--color-inspire-red-500);
    text-decoration: underline;
    transition: transform 0.1s ease 0s, transform 0.1s ease 0s;
}
.device_table a:hover{
    color: rgb(0, 0, 0);
}
.dsc_sort:after,
.asc_sort:after {
content: ' ';
position: relative;
left: 2px;
border: 8px solid transparent;
}

.sorting_header{
    cursor: pointer;
}

.dsc_sort:after {
top: 10px;
border-top-color: silver;
}

.asc_sort:after {
bottom: 15px;
border-bottom-color: silver;
}

.dsc_sort,
.asc_sort {
padding-right: 10px;
}



.component_table_plugin{
    max-width:100%;
    overflow:auto;
}



.warningIcon{
  margin-top: 5px;
  position:absolute; 
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-image: url(../icon/Warning.svg);
}