/**
 * All of the CSS for the public-facing CSS source
 * for the MODEC actuator's specs.
 */



table.actuator-option-table {
  width: 100%;
  text-align: center;
  font-size: .9em;
  border-spacing: 0;
}

table.actuator-option-table, table.actuator-option-table th, table.actuator-option-table td {
  border-collapse: collapse;
  border: 1px solid #ccc;
}

table.actuator-option-table thead th {
  font-weight: 800;
  color: white;
  background-color:  var(--color-actuator);
  padding: 4px;
  width: 50%;
}
table.actuator-option-table thead tr:first-child th{

  font-weight: 800 !important;
      background: #cecece;
      border: 1px solid #afafaf;
      color: #333;
}

table.actuator-option-table thead tr:not(:first-child) th {
  font-weight: 600 !important;
  color: #374047;
  background-color: #e7e7e7;
}

table.actuator-option-table thead tr:not(:first-child) th {
  border-color: #afafaf;
}

table.actuator-option-table tbody th {
  font-weight: 600;
  color: #374047;
  background-color: #eee;
  width: 50%;
  padding: 4px;
  line-height: 1.6;
}
table.actuator-option-table tbody td {
  color: #374047;
  width: 50%;
}

table.actuator-option-table tbody th span{
  background-color: var(--color-actuator);
  color: white;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 4px;
  padding-left: 4px;
  padding-right: 4px;
}

table.actuator-option-table tbody th span.custom-color{
  background-color: var(--custom-color);
}

.actuator-option-table-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.actuator-option-table-container table{
  padding-right: 1em;
  width: 50% !important;
  height: max-content !important;
}

.actuator-option-table-container > img{
  width: 50% !important;
  padding-left: 1em;
  max-height: 250px;
  object-fit: contain;
}

.actuator-option-tables-container h2{
  color: var(--color-primary);
  margin-bottom: 10px;
}

/*** TABS ***/
/**/
/* main styles */
/**/

.pcss3t {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  text-align: left;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
.pcss3t input {
  position: absolute;
  left: -9999px;
}

.pcss3t > label {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  
}
.pcss3t > label i {
  display: block;
  float: left;
  margin: 16px 8px 0 -2px;
  padding: 0;
  border: 0;
  outline: none;
  font-family: FontAwesome;
  font-style: normal;
  font-size: 17px;
}
.pcss3t > input:checked + label {
  cursor: default;
}
.pcss3t > ul.tab-content-container {
  list-style: none;
  background-color: #f9f9f9;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  width: 100%;
}
.pcss3t > ul.tab-content-container > li {
  width: 100%;
  overflow: auto;

  box-sizing: border-box;
  -moz-box-sizing: border-box;
  opacity: 0;
  height: 0 !important;
  transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
}
.pcss3t > .tab-content-1:checked ~ ul.tab-content-container > .tab-content-1,
.pcss3t > .tab-content-2:checked ~ ul.tab-content-container > .tab-content-2,
.pcss3t > .tab-content-3:checked ~ ul.tab-content-container > .tab-content-3,
.pcss3t > .tab-content-4:checked ~ ul.tab-content-container >  .tab-content-4,
.pcss3t > .tab-content-5:checked ~ ul.tab-content-container > .tab-content-5,
.pcss3t > .tab-content-6:checked ~ ul.tab-content-container > .tab-content-6,
.pcss3t > .tab-content-7:checked ~ ul.tab-content-container > .tab-content-7,
.pcss3t > .tab-content-8:checked ~ ul.tab-content-container > .tab-content-8,
.pcss3t > .tab-content-9:checked ~ ul.tab-content-container > .tab-content-9,
.pcss3t > .tab-content-10:checked ~ ul.tab-content-container > .tab-content-last {
  top: 0;
  padding: 1em;
  left: 0;
  opacity: 1;
  /*-webkit-transform: scale(1,1);
	-webkit-transform: rotate(0deg);*/
  height: 100% !important;
  transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
}

/*----------------------------------------------------------------------------*/
/*                                 EXTENSIONS                                 */
/*----------------------------------------------------------------------------*/

/**/
/* auto height */
/**/
.pcss3t-height-auto > ul.tab-content-container {
  height: auto !important;
}
.pcss3t-height-auto > ul.tab-content-container > li {
  position: relative;
  display: none;
  height: auto !important;
}
.pcss3t-height-auto
  > .tab-content-1:checked
  ~ ul.tab-content-container > 
  .tab-content-1,
.pcss3t-height-auto
  > .tab-content-2:checked
  ~ ul.tab-content-container > 
  .tab-content-2,
.pcss3t-height-auto
  > .tab-content-3:checked
  ~ ul.tab-content-container > 
  .tab-content-3,
.pcss3t-height-auto
  > .tab-content-4:checked
  ~ ul.tab-content-container > 
  .tab-content-4,
.pcss3t-height-auto
  > .tab-content-5:checked
  ~ ul.tab-content-container > 
  .tab-content-5,
.pcss3t-height-auto
  > .tab-content-6:checked
  ~ ul.tab-content-container > 
  .tab-content-6,
.pcss3t-height-auto
  > .tab-content-7:checked
  ~ ul.tab-content-container > 
  .tab-content-7,
.pcss3t-height-auto
  > .tab-content-8:checked
  ~ ul.tab-content-container > 
  .tab-content-8,
.pcss3t-height-auto
  > .tab-content-9:checked
  ~ ul.tab-content-container > 
  .tab-content-9,
.pcss3t-height-auto
  > .tab-content-10:checked
  ~ ul.tab-content-container > 
  .tab-content-10 {
  display: block;
}

/**/
/* grid */
/**/
.pcss3t .grid-row {
  margin-top: 20px;
}
.pcss3t .grid-row:after {
  content: "";
  display: table;
  clear: both;
}
.pcss3t .grid-row:first-child {
  margin-top: 0;
}
.pcss3t .grid-col {
  display: block;
  float: left;
  margin-left: 2%;
}
.pcss3t .grid-col:first-child {
  margin-left: 0;
}
.pcss3t .grid-col .inner {
  padding: 10px 0;
  border-radius: 2px;
  background: #f2f2f2;
  text-align: center;
}
.pcss3t .grid-col-1 {
  width: 15%;
}
.pcss3t .grid-col-2 {
  width: 32%;
}
.pcss3t .grid-col-3 {
  width: 49%;
}
.pcss3t .grid-col-4 {
  width: 66%;
}
.pcss3t .grid-col-5 {
  width: 83%;
}
.pcss3t .grid-col-offset-1 {
  margin-left: 19%;
}
.pcss3t .grid-col-offset-1:first-child {
  margin-left: 17%;
}
.pcss3t .grid-col-offset-2 {
  margin-left: 36%;
}
.pcss3t .grid-col-offset-2:first-child {
  margin-left: 34%;
}
.pcss3t .grid-col-offset-3 {
  margin-left: 53%;
}
.pcss3t .grid-col-offset-3:first-child {
  margin-left: 51%;
}
.pcss3t .grid-col-offset-4 {
  margin-left: 70%;
}
.pcss3t .grid-col-offset-4:first-child {
  margin-left: 68%;
}
.pcss3t .grid-col-offset-5:first-child {
  margin-left: 85%;
}

/**/
/* typography */
/**/
.pcss3t .typography {
  color: #666;
}
.pcss3t .typography h1,
.pcss3t .typography h2,
.pcss3t .typography h3,
.pcss3t .typography h4,
.pcss3t .typography h5,
.pcss3t .typography h6 {
  margin: 40px 0 0 0;
  padding: 0;
  font-family: "AvanGarde Regul.tab-content-containerar";
  text-align: left;
  color: #333;
}
.pcss3t .typography h1 {
  font-size: 40px;
  line-height: 60px;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}
.pcss3t .typography h2 {
  font-size: 32px;
  line-height: 48px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.1);
}
.pcss3t .typography h3 {
  font-size: 26px;
  line-height: 38px;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}
.pcss3t .typography h4 {
  font-size: 20px;
  line-height: 30px;
}
.pcss3t .typography h5 {
  font-size: 15px;
  line-height: 23px;
  text-transform: uppercase;
}
.pcss3t .typography h6 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.pcss3t .typography p {
  margin: 20px 0 0 0;
  padding: 0;
  line-height: 20px;
  text-align: left;
}
.pcss3t .typography ul.tab-content-container,
.pcss3t .typography ol {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}
.pcss3t .typography li {
  position: relative;
  margin-top: 5px;
  padding-left: 20px;
}
.pcss3t .typography li ul.tab-content-container,
.pcss3t .typography li ol {
  margin-top: 5px;
}
.pcss3t .typography ul.tab-content-container li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 4px;
  background: #404040;
}
.pcss3t .typography ol {
  counter-reset: list1;
}
.pcss3t .typography ol > li:before {
  counter-increment: list1;
  content: counter(list1) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.pcss3t .typography a {
  text-decoration: underline;
  color: #1889e6;
}
.pcss3t .typography a:hover {
  text-decoration: none;
}
.pcss3t .typography .pic {
  padding: 4px;
  border: 1px dotted #ccc;
}
.pcss3t .typography .pic img {
  display: block;
}
.pcss3t .typography .pic-right {
  float: right;
  margin: 0 0 10px 20px;
}
.pcss3t .typography .link {
  text-decoration: underline;
  color: #1889e6;
  cursor: pointer;
}
.pcss3t .typography .link:hover {
  text-decoration: none;
}
.pcss3t .typography h1:first-child,
.pcss3t .typography h2:first-child,
.pcss3t .typography h3:first-child,
.pcss3t .typography h4:first-child,
.pcss3t .typography h5:first-child,
.pcss3t .typography h6:first-child,
.pcss3t .typography p:first-child {
  margin-top: 0;
}
.pcss3t .typography .text-center {
  text-align: center;
}
.pcss3t .typography .text-right {
  text-align: right;
}

/**/
/* steps */
/**/
.pcss3t-steps > label {
  cursor: default;
}

.pcss3t-theme-1 > label {
  /*margin: 0 5px 5px 0;*/
  border-radius: 2px;
  background: white;
  color: var(--color-actuator);
  box-shadow: none;
  opacity: 0.75;
  width: fit-content;
  flex-grow: 1;
}

/**/
/* animation effects */
/**/
.pcss3t-effect-scale > ul.tab-content-container > li {
  -webkit-transform: scale(0.1, 0.1);
}
.pcss3t-effect-rotate > ul.tab-content-container > li {
  -webkit-transform: rotate(180deg);
}
.pcss3t-effect-slide-top > ul.tab-content-container > li {
  top: -40px;
}
.pcss3t-effect-slide-right > ul.tab-content-container > li {
  left: 80px;
}
.pcss3t-effect-slide-bottom > ul.tab-content-container > li {
  top: 40px;
}
.pcss3t-effect-slide-left > ul.tab-content-container > li {
  left: -80px;
}

/*----------------------------------------------------------------------------*/
/*                                   LAYOUTS                                  */
/*----------------------------------------------------------------------------*/

/**/
/* top right */
/**/
.pcss3t-layout-top-right {
  text-align: right;
}

/**/
/* top center */
/**/
.pcss3t-layout-top-center {
  text-align: center;
}

/**/
/* top combi */
/**/
.pcss3t > .right {
  float: right;
}

/*----------------------------------------------------------------------------*/
/*                                    ICONS                                   */
/*----------------------------------------------------------------------------*/

/**/
/* icons positions */
/**/
.pcss3t-icons-top > label {
  text-align: center;
}
.pcss3t-icons-top > label i {
  float: none;
  margin: 0 auto -10px;
  padding-top: 17px;
  font-size: 23px;
  line-height: 23px;
  text-align: center;
}
.pcss3t-icons-right > label i {
  float: right;
  margin: 0 -2px 0 8px;
}
.pcss3t-icons-bottom > label {
  text-align: center;
}
.pcss3t-icons-bottom > label i {
  float: none;
  margin: -10px auto 0;
  padding-bottom: 17px;
  font-size: 23px;
  line-height: 23px;
  text-align: center;
}
.pcss3t-icons-only > label i {
  float: none;
  margin: 0 auto;
  font-size: 23px;
}

/*----------------------------------------------------------------------------*/
/*                               RESPONSIVENESS                               */
/*----------------------------------------------------------------------------*/

/**/
/* pad */
/**/
@media screen and (max-width: 1100px) {
  .pcss3t {
    flex-wrap: wrap;
    gap: 5px;
  }
  .pcss3t-theme-1  > label {
    min-width: 200px;
    flex-grow: 1;
  }
}

/**/
/* phone */
/**/
@media screen and (max-width: 767px) {
  /*.pcss3t label {
		display: block;
	}*/
  .pcss3t > .right {
    float: none;
  }
  .pcss3t-theme-1 > label {
    width: fit-content !important;
  }
}

@media screen and (max-width: 500px) {
  .pcss3t-theme-1 label {
    width: 100% !important;
  }
}

/*----------------------------------------------------------------------------*/
/*                                   THEMES                                   */
/*----------------------------------------------------------------------------*/

/**/
/* defaul.tab-content-containert */
/**/
.pcss3t > label {
  padding: 10px;
  background: var(--color-actuator)e;
  font-size: 1em;
  min-height: 30px;
  /*line-height: 1px;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.pcss3t > ul.tab-content-container {
  text-align: left;
  background: rgba(255, 255, 255, 75%);
}
.pcss3t-steps > label:hover {
  background: #e5e5e5;
}

/**/
/* theme 1 */
/**/
.pcss3t-theme-1 > label {
  transition: all .2s ease 0s;
  /*margin: 0 5px 5px 0;*/
  border-style: solid;
  border-width: 0px;
  font-weight: 600 !important;
  border-color: var(--color-actuator) !important;
  border-radius: 2px;
  background-color: white;
  background-position: 0 0, 0 0, 100% 0, 100% 0 !important;
  background-repeat: no-repeat !important;
  background-size: 0px 100%, 100% 0px, 0px 100%, 100% 6px !important;
  --color-stroke-primary: var(--color-actuator);
  --color-stroke-secondary: var(--color-actuator-light);
  background-image: repeating-linear-gradient( 45deg, transparent, transparent, transparent, transparent ), repeating-linear-gradient( 135deg, transparent, transparent, transparent, transparent ), repeating-linear-gradient( 225deg, transparent, transparent, transparent, transparent ), repeating-linear-gradient( 315deg, var(--color-stroke-primary), var(--color-stroke-primary) 5px, var(--color-stroke-secondary) 5px, var(--color-stroke-secondary) 10px ) !important;
  
  box-shadow: none;
  color: var(--color-actuator);
  opacity: 1;
}
.pcss3t-theme-1 > label:hover {
  transition: all .2s ease 0s;

  background: var(--color-actuator);;
  color: white;
  opacity: 0.75;
}
.pcss3t-theme-1 > input:checked + label {
  /*color:  var(--color-actuator) !important;
  background: #fff !important;*/
  background: var(--color-actuator)  !important;
  color: #fff !important;
  opacity: 1;
  transition: all .2s ease 0s;
}
.pcss3t-theme-1 > ul.tab-content-container {
  border-radius: 2px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
}
.pcss3t-theme-1 > .tab-content-1:checked ~ ul.tab-content-container {
  border-top-left-radius: 0;
}
@media screen and (max-width: 767px) {
  .pcss3t-theme-1 > label {
    margin-right: 0;
  }
  .pcss3t-theme-1 > input:checked + label {
    /*margin-bottom: 5px;*/

    border-radius: 2px;
  }
  .pcss3t-theme-1 > .tab-content-1:checked ~ ul.tab-content-container {
    border-top-left-radius: 5px;
  }
}
/*----------------------------------------------------------------------------*/
/*                               CUSTOMIZATION                                */
/*----------------------------------------------------------------------------*/

/**/
/* height */
/**/
.pcss3t > ul.tab-content-container,
.pcss3t > ul.tab-content-container > li {
  /*height: 50vh;*/
}

.tab-content {
  display: block !important;
  /*flex-direction: row;*/
}

.tab-content .image-container {
  width: 33%;
  padding: 0em 0em 2em 3em;
  display: flex;
  flex-direction: column;
  align-content: center;
  gap: 25px;
  float: right;
}

.tab-content .image-container img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .tab-content .image-container {
    width: 40%;
    padding: 0em 0em 1em 2em;
  }
}

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

  .normal-title {
    display: none;

  }
  .tab-content .image-container {
    width: 50% !important;
    padding: 0em 0em 1em 1em;
  }

  .pcss3t > .tab-content-1:checked ~ ul.tab-content-container > .tab-content-1,
  .pcss3t > .tab-content-2:checked ~ ul.tab-content-container > .tab-content-2,
  .pcss3t > .tab-content-3:checked ~ ul.tab-content-container > .tab-content-3,
  .pcss3t > .tab-content-4:checked ~ ul.tab-content-container > .tab-content-4,
  .pcss3t > .tab-content-5:checked ~ ul.tab-content-container > .tab-content-5,
  .pcss3t > .tab-content-6:checked ~ ul.tab-content-container > .tab-content-6,
  .pcss3t > .tab-content-7:checked ~ ul.tab-content-container > .tab-content-7,
  .pcss3t > .tab-content-8:checked ~ ul.tab-content-container > .tab-content-8,
  .pcss3t > .tab-content-9:checked ~ ul.tab-content-container > .tab-content-9,
  .pcss3t > .tab-content-10:checked ~ ul.tab-content-container >.tab-content-10 {
    padding: 1em;
  }
}

@media screen and (max-width: 600px) {
  .tab-content .image-container {
    width: 100% !important;
    padding: 0em 0em 2em 0em;
  }
}

/*second tab*/
/**
 * All of the CSS for the public-facing CSS source
 * for the MODEC actuator's specs.
 */
/*
:root {
  --color-actuator: var(--color-primary);
  --color-on-actuator: var(--color-on-primary);
}*/



table.actuator-option-table {
  width: 100%;
  text-align: center;
  font-size: .9em;
  border-spacing: 0;
}

table.actuator-option-table, table.actuator-option-table th, table.actuator-option-table td {
  border-collapse: collapse;
  border: 1px solid #ccc;
}

table.actuator-option-table thead th {
  font-weight: 800;
  color: white;
  background-color: var(--color-actuator);
  padding: 4px;
  width: 50%;
}
table.actuator-option-table thead tr:first-child th{

  font-weight: 800 !important;
      font-size: 1.2em;
      background: #cecece;
      border: 1px solid #afafaf;
      color: #333;
}


table.actuator-option-table thead tr:not(:first-child) th {
  font-weight: 600 !important;
  color: #374047;
  background-color: #e7e7e7;
}

table.actuator-option-table thead tr:not(:first-child) th {
  border-color: #afafaf;
}

table.actuator-option-table tbody th {
  font-weight: 600;
  color: #374047;
  background-color: #eee;
  width: 50%;
  padding: 4px;
  line-height: 1.6;
}
table.actuator-option-table tbody td {
  color: #374047;
  width: 50%;
}

table.actuator-option-table tbody th span{
  background-color: var(--color-actuator);
  color: white;
  font-size: .9em;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 4px;
  padding-left: 4px;
  padding-right: 4px;
}

table.actuator-option-table tbody th span.custom-color{
  background-color: var(--custom-color);
}

.actuator-option-table-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.actuator-option-table-container table{
  padding-right: 1em;
  width: 50% !important;
  height: max-content !important;
}

.actuator-option-table-container > img{
  width: 50% !important;
  padding-left: 1em;
  max-height: 250px;
  object-fit: contain;
}

.actuator-option-tables-container h2{
  color: var(--color-primary);
  margin-bottom: 10px;
}

/*** TABS ***/
/**/
/* main styles */
/**/

.pcss3t2 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 0;
  text-align: left;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.pcss3t2 input {
  position: absolute;
  left: -9999px;
}

.pcss3t2 > label {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  
}
.pcss3t2 > label i {
  display: block;
  float: left;
  margin: 16px 8px 0 -2px;
  padding: 0;
  border: 0;
  outline: none;
  font-family: FontAwesome;
  font-style: normal;
  font-size: 17px;
}
.pcss3t2 > input:checked + label {
  cursor: default;
}
.pcss3t2 > ul.tab-content-container2 {
  list-style: none;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 14px;
  width: 100%;
}
.pcss3t2 > ul.tab-content-container2 > li {
  width: 100%;
  overflow: auto;

  box-sizing: border-box;
  -moz-box-sizing: border-box;
  opacity: 0;
  height: 0 !important;
  transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
}
.pcss3t2 > .tab-content-1:checked ~ ul.tab-content-container2 > .tab-content-1,
.pcss3t2 > .tab-content-2:checked ~ ul.tab-content-container2 > .tab-content-2,
.pcss3t2 > .tab-content-3:checked ~ ul.tab-content-container2 > .tab-content-3,
.pcss3t2 > .tab-content-4:checked ~ ul.tab-content-container2 >  .tab-content-4,
.pcss3t2 > .tab-content-5:checked ~ ul.tab-content-container2 > .tab-content-5,
.pcss3t2 > .tab-content-6:checked ~ ul.tab-content-container2 > .tab-content-6,
.pcss3t2 > .tab-content-7:checked ~ ul.tab-content-container2 > .tab-content-7,
.pcss3t2 > .tab-content-8:checked ~ ul.tab-content-container2 > .tab-content-8,
.pcss3t2 > .tab-content-9:checked ~ ul.tab-content-container2 > .tab-content-9,
.pcss3t2 > .tab-content-10:checked ~ ul.tab-content-container2 > .tab-content-last {
  top: 0;
  padding: 1em;
  left: 0;
  opacity: 1;
  /*-webkit-transform: scale(1,1);
	-webkit-transform: rotate(0deg);*/
  height: 100% !important;
  transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
}

/*----------------------------------------------------------------------------*/
/*                                 EXTENSIONS                                 */
/*----------------------------------------------------------------------------*/

/**/
/* auto height */
/**/
.pcss3t2-height-auto > ul.tab-content-container2 {
  height: auto !important;
}
.pcss3t2-height-auto > ul.tab-content-container2 > li {
  position: relative;
  display: none;
  height: auto !important;
}
.pcss3t2-height-auto
  > .tab-content-1:checked
  ~ ul.tab-content-container2 > 
  .tab-content-1,
.pcss3t2-height-auto
  > .tab-content-2:checked
  ~ ul.tab-content-container2 > 
  .tab-content-2,
.pcss3t2-height-auto
  > .tab-content-3:checked
  ~ ul.tab-content-container2 > 
  .tab-content-3,
.pcss3t2-height-auto
  > .tab-content-4:checked
  ~ ul.tab-content-container2 > 
  .tab-content-4,
.pcss3t2-height-auto
  > .tab-content-5:checked
  ~ ul.tab-content-container2 > 
  .tab-content-5,
.pcss3t2-height-auto
  > .tab-content-6:checked
  ~ ul.tab-content-container2 > 
  .tab-content-6,
.pcss3t2-height-auto
  > .tab-content-7:checked
  ~ ul.tab-content-container2 > 
  .tab-content-7,
.pcss3t2-height-auto
  > .tab-content-8:checked
  ~ ul.tab-content-container2 > 
  .tab-content-8,
.pcss3t2-height-auto
  > .tab-content-9:checked
  ~ ul.tab-content-container2 > 
  .tab-content-9,
.pcss3t2-height-auto
  > .tab-content-10:checked
  ~ ul.tab-content-container2 > 
  .tab-content-10 {
  display: block;
}

/**/
/* grid */
/**/
.pcss3t2 .grid-row {
  margin-top: 20px;
}
.pcss3t2 .grid-row:after {
  content: "";
  display: table;
  clear: both;
}
.pcss3t2 .grid-row:first-child {
  margin-top: 0;
}
.pcss3t2 .grid-col {
  display: block;
  float: left;
  margin-left: 2%;
}
.pcss3t2 .grid-col:first-child {
  margin-left: 0;
}
.pcss3t2 .grid-col .inner {
  padding: 10px 0;
  border-radius: 2px;
  background: #f2f2f2;
  text-align: center;
}
.pcss3t2 .grid-col-1 {
  width: 15%;
}
.pcss3t2 .grid-col-2 {
  width: 32%;
}
.pcss3t2 .grid-col-3 {
  width: 49%;
}
.pcss3t2 .grid-col-4 {
  width: 66%;
}
.pcss3t2 .grid-col-5 {
  width: 83%;
}
.pcss3t2 .grid-col-offset-1 {
  margin-left: 19%;
}
.pcss3t2 .grid-col-offset-1:first-child {
  margin-left: 17%;
}
.pcss3t2 .grid-col-offset-2 {
  margin-left: 36%;
}
.pcss3t2 .grid-col-offset-2:first-child {
  margin-left: 34%;
}
.pcss3t2 .grid-col-offset-3 {
  margin-left: 53%;
}
.pcss3t2 .grid-col-offset-3:first-child {
  margin-left: 51%;
}
.pcss3t2 .grid-col-offset-4 {
  margin-left: 70%;
}
.pcss3t2 .grid-col-offset-4:first-child {
  margin-left: 68%;
}
.pcss3t2 .grid-col-offset-5:first-child {
  margin-left: 85%;
}

/**/
/* typography */
/**/
.pcss3t2 .typography {
  color: #666;
}
.pcss3t2 .typography h1,
.pcss3t2 .typography h2,
.pcss3t2 .typography h3,
.pcss3t2 .typography h4,
.pcss3t2 .typography h5,
.pcss3t2 .typography h6 {
  margin: 40px 0 0 0;
  padding: 0;
  font-family: "AvanGarde Regul.tab-content-container2ar";
  text-align: left;
  color: #333;
}
.pcss3t2 .typography h1 {
  font-size: 40px;
  line-height: 60px;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}
.pcss3t2 .typography h2 {
  font-size: 32px;
  line-height: 48px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.1);
}
.pcss3t2 .typography h3 {
  font-size: 26px;
  line-height: 38px;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
}
.pcss3t2 .typography h4 {
  font-size: 20px;
  line-height: 30px;
}
.pcss3t2 .typography h5 {
  font-size: 15px;
  line-height: 23px;
  text-transform: uppercase;
}
.pcss3t2 .typography h6 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.pcss3t2 .typography p {
  margin: 20px 0 0 0;
  padding: 0;
  line-height: 20px;
  text-align: left;
}
.pcss3t2 .typography ul.tab-content-container2,
.pcss3t2 .typography ol {
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
}
.pcss3t2 .typography li {
  position: relative;
  margin-top: 5px;
  padding-left: 20px;
}
.pcss3t2 .typography li ul.tab-content-container2,
.pcss3t2 .typography li ol {
  margin-top: 5px;
}
.pcss3t2 .typography ul.tab-content-container2 li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 4px;
  background: #404040;
}
.pcss3t2 .typography ol {
  counter-reset: list1;
}
.pcss3t2 .typography ol > li:before {
  counter-increment: list1;
  content: counter(list1) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.pcss3t2 .typography a {
  text-decoration: underline;
  color: #1889e6;
}
.pcss3t2 .typography a:hover {
  text-decoration: none;
}
.pcss3t2 .typography .pic {
  padding: 4px;
  border: 1px dotted #ccc;
}
.pcss3t2 .typography .pic img {
  display: block;
}
.pcss3t2 .typography .pic-right {
  float: right;
  margin: 0 0 10px 20px;
}
.pcss3t2 .typography .link {
  text-decoration: underline;
  color: #1889e6;
  cursor: pointer;
}
.pcss3t2 .typography .link:hover {
  text-decoration: none;
}
.pcss3t2 .typography h1:first-child,
.pcss3t2 .typography h2:first-child,
.pcss3t2 .typography h3:first-child,
.pcss3t2 .typography h4:first-child,
.pcss3t2 .typography h5:first-child,
.pcss3t2 .typography h6:first-child,
.pcss3t2 .typography p:first-child {
  margin-top: 0;
}
.pcss3t2 .typography .text-center {
  text-align: center;
}
.pcss3t2 .typography .text-right {
  text-align: right;
}

/**/
/* steps */
/**/
.pcss3t2-steps > label {
  cursor: default;
}

.pcss3t2-theme-1 > label {
  /*margin: 0 5px 5px 0;*/
  border-radius: 2px;
  background: white;
  color: var(--color-actuator);
  box-shadow: 0 2px rgba(0, 0, 0, 0.2);
  opacity: 0.75;
  width: fit-content;
  flex-grow: 1;
}

/**/
/* animation effects */
/**/
.pcss3t2-effect-scale > ul.tab-content-container2 > li {
  -webkit-transform: scale(0.1, 0.1);
}
.pcss3t2-effect-rotate > ul.tab-content-container2 > li {
  -webkit-transform: rotate(180deg);
}
.pcss3t2-effect-slide-top > ul.tab-content-container2 > li {
  top: -40px;
}
.pcss3t2-effect-slide-right > ul.tab-content-container2 > li {
  left: 80px;
}
.pcss3t2-effect-slide-bottom > ul.tab-content-container2 > li {
  top: 40px;
}
.pcss3t2-effect-slide-left > ul.tab-content-container2 > li {
  left: -80px;
}

/*----------------------------------------------------------------------------*/
/*                                   LAYOUTS                                  */
/*----------------------------------------------------------------------------*/

/**/
/* top right */
/**/
.pcss3t2-layout-top-right {
  text-align: right;
}

/**/
/* top center */
/**/
.pcss3t2-layout-top-center {
  text-align: center;
}

/**/
/* top combi */
/**/
.pcss3t2 > .right {
  float: right;
}

/*----------------------------------------------------------------------------*/
/*                                    ICONS                                   */
/*----------------------------------------------------------------------------*/

/**/
/* icons positions */
/**/
.pcss3t2-icons-top > label {
  text-align: center;
}
.pcss3t2-icons-top > label i {
  float: none;
  margin: 0 auto -10px;
  padding-top: 17px;
  font-size: 23px;
  line-height: 23px;
  text-align: center;
}
.pcss3t2-icons-right > label i {
  float: right;
  margin: 0 -2px 0 8px;
}
.pcss3t2-icons-bottom > label {
  text-align: center;
}
.pcss3t2-icons-bottom > label i {
  float: none;
  margin: -10px auto 0;
  padding-bottom: 17px;
  font-size: 23px;
  line-height: 23px;
  text-align: center;
}
.pcss3t2-icons-only > label i {
  float: none;
  margin: 0 auto;
  font-size: 23px;
}

/*----------------------------------------------------------------------------*/
/*                               RESPONSIVENESS                               */
/*----------------------------------------------------------------------------*/

/**/
/* pad */
/**/
@media screen and (max-width: 1100px) {
  .pcss3t2 {
    flex-wrap: wrap;
    gap: 5px;
  }
  .pcss3t2-theme-1  > label {
    min-width: 200px;
    flex-grow: 1;
  }
}

/**/
/* phone */
/**/
@media screen and (max-width: 767px) {
  /*.pcss3t2 label {
		display: block;
	}*/
  .pcss3t2 > .right {
    float: none;
  }
  .pcss3t2-theme-1 > label {
    width: fit-content !important;
  }
}

@media screen and (max-width: 500px) {
  .pcss3t2-theme-1 label {
    width: 100% !important;
  }
}

/*----------------------------------------------------------------------------*/
/*                                   THEMES                                   */
/*----------------------------------------------------------------------------*/

/**/
/* defaul.tab-content-container2t */
/**/
.pcss3t2 > label {
  padding: 10px;
  background:  var(--color-actuator);
  font-size: 14px;
  min-height: 30px;
  /*line-height: 1px;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.pcss3t2 > ul.tab-content-container2 {
  text-align: left;
  background: rgba(255, 255, 255, 75%);
}
.pcss3t2-steps > label:hover {
  background: #e5e5e5;
}

/**/
/* theme 1 */
/**/
.pcss3t2-theme-1 > label {
  transition: all .2s ease 0s;
  /*margin: 0 5px 5px 0;*/
  border-style: solid;
  border-width: 0px;
  border-color: var(--color-actuator) !important;
  border-radius: 2px;
  font-weight: 600;
  background:  white;
  box-shadow: none;
  background-position: 0 0, 0 0, 100% 0, 100% 0 !important;
  background-repeat: no-repeat !important;
  background-size: 0px 100%, 100% 0px, 0px 100%, 100% 6px !important;
  --color-stroke-primary: var(--color-actuator);
  --color-stroke-secondary: var(--color-actuator-light);
  background-image: repeating-linear-gradient( 45deg, transparent, transparent, transparent, transparent ), repeating-linear-gradient( 135deg, transparent, transparent, transparent, transparent ), repeating-linear-gradient( 225deg, transparent, transparent, transparent, transparent ), repeating-linear-gradient( 315deg, var(--color-stroke-primary), var(--color-stroke-primary) 5px, var(--color-stroke-secondary) 5px, var(--color-stroke-secondary) 10px ) !important;
  
  color: var(--color-actuator);
  opacity: 1;
}
.pcss3t2-theme-1 > label:hover {
  transition: all .2s ease 0s;

  background: var(--color-actuator);
  color: white;
  opacity: 0.8;
}
.pcss3t2-theme-1 > input:checked + label {
  font-weight: 800;
  color: #fff !important;
  background: var(--color-actuator) !important;
  opacity: 1;
  transition: all .2s ease 0s;
}
.pcss3t2-theme-1 > ul.tab-content-container2 {
  border-radius: 2px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
}
.pcss3t2-theme-1 > .tab-content-1:checked ~ ul.tab-content-container2 {
  border-top-left-radius: 0;
}
@media screen and (max-width: 767px) {
  .pcss3t2-theme-1 > label {
    margin-right: 0;
  }
  .pcss3t2-theme-1 > input:checked + label {
    /*margin-bottom: 5px;*/

    border-radius: 2px;
  }
  .pcss3t2-theme-1 > .tab-content-1:checked ~ ul.tab-content-container2 {
    border-top-left-radius: 5px;
  }
}
/*----------------------------------------------------------------------------*/
/*                               CUSTOMIZATION                                */
/*----------------------------------------------------------------------------*/

/**/
/* height */
/**/
.pcss3t2 > ul.tab-content-container2,
.pcss3t2 > ul.tab-content-container2 > li {
  /*height: 50vh;*/
}

.tab-content-alt {
  display: block !important;
  /*flex-direction: row;*/
}

.tab-content-alt .image-container {
  width: 33%;
  padding: 0em 0em 2em 3em;
  display: flex;
  flex-direction: column;
  align-content: center;
  gap: 25px;
  float: right;
}

.tab-content-alt .image-container img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .tab-content-alt .image-container {
    width: 40%;
    padding: 0em 0em 1em 2em;
  }
}

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

  .normal-title {
    display: none;

  }
  .tab-content-alt .image-container {
    width: 50% !important;
    padding: 0em 0em 1em 1em;
  }

  .pcss3t2 > .tab-content-1:checked ~ ul.tab-content-container2 > .tab-content-1,
  .pcss3t2 > .tab-content-2:checked ~ ul.tab-content-container2 > .tab-content-2,
  .pcss3t2 > .tab-content-3:checked ~ ul.tab-content-container2 > .tab-content-3,
  .pcss3t2 > .tab-content-4:checked ~ ul.tab-content-container2 > .tab-content-4,
  .pcss3t2 > .tab-content-5:checked ~ ul.tab-content-container2 > .tab-content-5,
  .pcss3t2 > .tab-content-6:checked ~ ul.tab-content-container2 > .tab-content-6,
  .pcss3t2 > .tab-content-7:checked ~ ul.tab-content-container2 > .tab-content-7,
  .pcss3t2 > .tab-content-8:checked ~ ul.tab-content-container2 > .tab-content-8,
  .pcss3t2 > .tab-content-9:checked ~ ul.tab-content-container2 > .tab-content-9,
  .pcss3t2 > .tab-content-10:checked ~ ul.tab-content-container2 >.tab-content-10 {
    padding: 1em;
  }
}

@media screen and (max-width: 600px) {
  .tab-content-alt .image-container {
    width: 100% !important;
    padding: 0em 0em 2em 0em;
  }
}


/*tables*/
/**
 * All of the CSS for the public-facing CSS source
 * for the MODEC actuator's specs.
 */

 :root {
  --color-actuator: var(--color-primary);
   --color-actuator-light: #6ab0d2;
  --color-on-actuator: var(--color-on-primary);
}

.actuator-options-tables-tabs label.motorization-electric{
  --color-actuator: var(--color-actuator-electric);
  --color-actuator-light: #e48161;
  --color-on-actuator: var(--color-on-primary);
}


.actuator-options-tables-tabs label.motorization-gas{
  --color-actuator: var(--color-actuator-gas);
  --color-actuator-light: #f06683;
  --color-on-actuator: var(--color-on-primary);
}

.actuator-options-tables-tabs label.motorization-pneumatic {
  --color-actuator: var(--color-actuator-pneumatic);
  --color-actuator-light: #70afc6;
  --color-on-actuator: var(--color-on-primary);
}

.actuator-options-table.motorization-electric{
  --color-actuator: var(--color-actuator-electric);
  --color-on-actuator: var(--color-on-primary);
}
.actuator-options-table.motorization-gas {
  --color-actuator: var(--color-actuator-gas);
  --color-on-actuator: var(--color-on-primary);
}
.actuator-options-table.motorization-pneumatic {
  --color-actuator: var(--color-actuator-pneumatic);
  --color-on-actuator: var(--color-on-primary);
}



table.actuator-options-table {
  width: 100%;
  text-align: center;
  font-size: .9em;
  border-spacing: 0;
  margin-top: 20px;
}
table.actuator-options-table:first-child {
  margin-top: 0px !important;
}

table.actuator-options-table, table.actuator-options-table th, table.actuator-options-table td {
  border-collapse: collapse;
  border: 1px solid #cccddd;

}

table.actuator-options-table th {
  /*margin: 0; */
  width: 1%;
  /* min-width: 120px; */
  padding: 4px 8px;
  font-weight: 700;
  background-color: #eeeeee;
  color: #374047;
  min-width: 50px;
}


table.actuator-options-table tbody th {
 
  color: #374047;
  background-color: #eeeeee;
  font-weight: 800;
}

table.actuator-options-table thead > tr > th.header {
  color: white;
  background-color: var(--color-actuator);
  /* width: 50%; */
  max-width: 100px;
  width: 0%;
  min-width: 100px;
}
table.actuator-options-table thead > tr > th.header.padding-xl {
  padding-top: 20px;
  padding-bottom: 20px;
}
table.actuator-options-table tbody > tr > th:first-child {
  /*width: 250px;*/
}

table.actuator-options-table thead > tr > th:not(:first-child) {
  background-color: #eeeeee;
  color: #374047 !important;
}

table.actuator-options-table th.alt-bg {
  background-color: #f5f5f5 !important;
}

table.actuator-options-table tbody > tr > td:has(span.actuator-option-code-chip) {
  text-align: left;
  padding: 4px;
}

table.actuator-options-table tbody > tr > td > span.actuator-option-code-chip {
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--color-on-actuator);
  background-color: var(--color-actuator);
}

div#legend, div.legend {
  font-style: italic;
}
div#legend p, div.legend p {
  margin-top: 0 !important;
}

div#notice {
  color: var(--color-actuator);
  border: 1px solid var(--color-actuator);
  padding: 5px 30px;
}

:root{
  --forbidden-color: #e94c4c;
}
table.actuator-options-table tbody td.forbidden {
  background-color: var(--forbidden-color);
  border-color :#ff8585;
  color: white !important;
  font-weight: 800 !important;
}

.table-legend{
  display: flex;
  gap: 5px;
  margin-top: .4em;
  margin-bottom: .4em;
  font-size: .8em;
  font-style: italic;
}

.table-legend .color-chip{
  height: 16px;
  width: 16px;
  background-color: var(--forbidden-color);
  border-radius: 5px;
}