/* siemens color palette & fonts */

:root {
    --theme-color-0: #000;
    --theme-color-0-transparent-16: rgba(0, 0, 0, .16);
    --theme-color-0-transparent-40: rgba(0, 0, 0, .4);
    --theme-color-0-transparent-50: rgba(0, 0, 0, .5);
    --theme-color-1: #fff;
    --theme-color-2: #000028;
    --theme-color-2-transparent: rgba(0, 0, 40, 0);
    --theme-color-3: #737389;
    --theme-color-4: #001134;
    --theme-color-4-transparent: rgba(0, 17, 52, 0);
    --theme-color-5: #001034;
    --theme-color-6: #00183c;
    --theme-color-7: #b3b3be;
    --theme-color-8: #00ffb9;
    --theme-color-8-transparent: rgba(0, 255, 185, 0);
    --theme-color-8-transparent-10: rgba(0, 255, 185, .1);
    --theme-color-8-transparent-12: rgba(0, 255, 185, .12);
    --theme-color-9: #00e6dc;
    --theme-color-9-transparent-10: rgba(0, 230, 220, .1);
    --theme-color-9-transparent-12: rgba(0, 230, 220, .12);
    --theme-color-10: #fff;
    --theme-color-10-transparent-80: rgba(255, 255, 255, .8);
    --theme-color-11: #00193c;
    --theme-color-12: #001034;
    --theme-color-13: #001034;
    --theme-color-13-transparent: rgba(0, 16, 52, 0);
    --theme-color-14: #0cc;
    --theme-color-14-transparent-12: rgba(0, 204, 204, .12);
    --theme-color-15: #171717;
    --theme-color-15-transparent-50: rgba(23, 23, 23, .5);
    --bgcolor: #F3F3F0;
    --pseudoblack: #000000;
    --button: #007993;
    --buttonhover: #235058;
    --buttonhoverbg: #C2FFEE;
    --tablered: #FF7687;
    --tablegreen: #00D7A0;
    --tableredbg: #FFEAE6;
    --textgray: #9999A9;
    
}

::placeholder { 
  color: #B3B3BE;
  opacity: 1; 
}

:-ms-input-placeholder { 
  color: #B3B3BE;
}

::-ms-input-placeholder { 
  color: #B3B3BE;
}


@font-face {
  font-family: 'Siemens Sans Roman';
  src: url(../fonts/SiemensSans_Prof_Roman.woff2);
  font-weight: 400;
}

@font-face {
  font-family: 'Siemens Sans Roman';
  src: url(../fonts/SiemensSans_Prof_Black.woff2);
  font-weight: 700;
}


/* reset styles */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
    color: var(--pseudoblack);
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:10px;
}

input, select {
    vertical-align:middle;
}


/* main styles */

body {
    font-family: 'Siemens Sans Roman', 'Arial', sans-serif;
	font-size: 16px; 
    background: var(--bgcolor);
}

header {
	background: var(--theme-color-2);
    background: linear-gradient(90deg, var(--theme-color-2) 77%, var(--theme-color-2-transparent) 85%);
	color: var(--theme-color-1);
	height: 165px;
	position: relative;
    min-width: 1320px;
}

header a {
    color: var(--theme-color-1);
    text-decoration: none;
}

header a:hover {
	color: var(--theme-color-8);
}

header:after {
  content: " ";
  height: 5px;
  width: 100%;
  background: linear-gradient(180deg,var(--theme-color-8) 0%,var(--theme-color-9) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

header .columns {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 30px 60px 10px;
    align-items: flex-end;
}

header .logo {
	height: 22px;
	width: 110px;
	margin-bottom: 18px;
}

header h1 {
	font-size: 1rem;
	line-height: 1.4;
    font-weight: 400;
}

small {
    font-size: .73rem;
}

.langswitcher a.active {
	display: flex;
}

.langswitcher a.active:before {
	display: block;
    content: " ";
    margin-right: 8px;
    width: 17px;
    height: 17px;
    background-color: var(--theme-color-1);
    -webkit-mask-image: url(../img/globe.svg);
    -moz-mask-image: url(../img/globe.svg);
    mask-image: url(../img/globe.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.langswitcher a.active:hover:before {
    background-color: var(--theme-color-8);
}

.langswitcher .other_languages {
    display: none;
}

.langswitcher:hover .other_languages {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    position: absolute;
    background: #000028;
    z-index: 1000;
    padding: 5px 25px 10px;
}

.slider {
    min-width: 50%;
}

.slider .slider-img {
    width: 60px;
    height: 60px;
    margin: 6px;
    opacity: .3;
    transition: opacity .5s ease;
}

.slider .slider-img.active {
    opacity: 1;
} 

.slider-background-img {
    background: url(../img/slider-bg1.jpg) 50% 10%/cover no-repeat transparent;
    height: 100%;
    width: 25%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transition: background 1s ease;
}

.slider-background-img img {
    opacity: 0;
    height: 1px;
    width: 1px;
}

footer {
    background: var(--theme-color-2);
    color: var(--theme-color-1);
    height: 48px;
    left: 0;
    bottom: 0;
    position: fixed;
    width: 100%;
    min-width: 1320px;
}

footer a {
    color: var(--theme-color-1);
    text-decoration: none;
}

footer #addToFavorites {
    font-size: .85rem;
    line-height: 1.4;
}

footer #footerMenu {
    margin: 3px 60px 0;
    position: absolute;
    bottom: 16px;
    font-size: .85rem;
}

footer #footerMenu a {
    color: var(--textgray);
}

footer #footerMenu a:first-child {
    color: var(--theme-color-1);
}

footer #footerMenu a:hover {
    color: var(--theme-color-8) !important;
}


footer #footerMenu a:before {
    content: ' | ';
    color: #9999A9 !important;
    padding: 0 5px;
}

footer #footerMenu a:nth-child(1):before {
    content: ' ';
    padding: 0;
}

footer #footerMenu a:nth-child(2):before {
    content: ' ';
    padding-left: 20px;
}


footer .columns {
    display: none !important; 
    font-size: .85rem;
    margin: 0 20px 0 60px;
    justify-content: flex-start;
    padding: 20px 0px 13px;
}   

footer .columns .column {
    padding-right: 30px;
}   

footer .addToFavorites {
    cursor: pointer;
}

#content {
    display: flex;
    justify-content: space-between;
    margin: 0 0 0 60px;
    min-width: 1260px;
}

main {
    width: 100%;
}

main #searchform {
    height: 120px;
    padding: 20px 40px 20px 0;
}

main #searchform .row {
    padding: 0 0 10px 0;
}

main #searchform .row.flex {
    display: flex;
    justify-content: left;
}

main #searchform label {
    font-size: .85rem;
}

main #searchform label[for=family]:before {
    display: inline-block;
    content: " ";
    margin-right: 15px;
    width: 17px;
    height: 13px;
    background-color: var(--pseudoblack);
    -webkit-mask-image: url(../img/icon-chapters.svg);
    -moz-mask-image: url(../img/icon-chapters.svg);
    mask-image: url(../img/icon-chapters.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

main #searchform label[for=current_archive] {
    margin-left: 12px;
}

main #searchform label[for=current_archive]:before {
    display: inline-block;
    content: " ";
    margin-right: 7px;
    width: 17px;
    height: 15px;
    background-color: var(--pseudoblack);
    -webkit-mask-image: url(../img/icon-select.svg);
    -moz-mask-image: url(../img/icon-select.svg);
    mask-image: url(../img/icon-select.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}
main #searchform label[for=searchtext]:before {
    display: inline-block;
    content: " ";
    margin-right: 15px;
    width: 17px;
    height: 16px;
    margin-bottom: -2px;
    background-color: var(--pseudoblack);
    -webkit-mask-image: url(../img/icon-search.svg);
    -moz-mask-image: url(../img/icon-search.svg);
    mask-image: url(../img/icon-search.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

main #searchform .color_legend {
    display: flex;
    flex-direction: column;
    height: 42px;
    justify-content: space-between;
    font-size: .85rem;
}

main #searchform .color_legend span {
    color: var(--textgray);
    display: inline-block;
}

main #searchform .color_legend span:before {
    content: " ";
    background-color: var(--tableredbg);
    border-bottom: 1px solid var(--tablered);
    width: 20px;
    height: 17px;    display: inline-block;
    margin-right: 8px;
    margin-left: 11px;
    margin-bottom: -3px;
}

main #searchform .color_legend span.legend_current:before {
    border: 1px solid #fff;
    border-bottom: 1px solid var(--pseudoblack);
    background-color: var(--bgcolor);
}

main #searchform input[type=text],
main #searchform select {
    background-color: #ebf7f8;
    border: 0 solid #4c4c68;
    border-bottom-width: 1px;
    color: var(--theme-color-2);
    outline: 0;
    padding: 5px 15px;
    height: 30px;
    margin: 0 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    font-size: .85rem;
}


main #searchform input[type=text]#searchtext {
    width: 163px;
}
main #searchform select#dbselector {
    margin-left: 20px;
}

main #searchform select#familyselector {
    width: 340px;
}
main #searchform select {
    height: 42px;
}

main #searchform input[type=text]:hover,
main #searchform input[type=text]:focus,
main #searchform select:hover,
main #searchform select:focus  {
    background-color: #d1fff2;
    border-bottom-color: var(--tablegreen);
}

main #searchform input[type=button] {
    font-size: .85rem;
    line-height: 1;
    letter-spacing: .2px;
    color: var(--button);
    font-weight: 400;
    padding: 8px 16px;
    border: 1px solid var(--button);
    border-radius: 20px;
    background-color: transparent;
    cursor: pointer;
    margin: 4px 10px;
}

main #searchform input[type=button]:hover {
    --color-icon-overlay: var(--buttonhover);
    color: var(--buttonhover);
    background-color: var(--buttonhoverbg);
    border-color: var(--buttonhover);
}

main #resultsheader table {
  width: calc(100% - 16px);
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 10px 0;
  font-size: .75rem;
}

main #results table {
  overflow: visible;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 10px 0;
  font-size: .85rem;
  width: 100%;
}

main #results table tr.archive {
    background-color: var(--tableredbg);
}

main #resultsheader table td,
main #results table td {
    line-height: 1.1;
    border-bottom: 1px solid var(--pseudoblack);
}

main #resultsheader table tr.archive td,
main #results table tr.archive td {
    border-bottom: 1px solid var(--tablered);
}

main #resultsheader table td {
    padding-bottom: 4px;
    line-height: 1rem;
    font-weight: 700;
    font-size: .85rem;
    text-align: center;
}

main #resultsheader table td a {
    color: var(--pseudoblack);
    text-decoration: none;
}
main #resultsheader table td a:hover {
    color: var(--tablegreen);
}

main #resultsheader table td a:after {
    display: inline-block;
    content: " ";
    margin-left: 4px;
    margin-bottom: -3px; 
    width: 11px;
    height: 13px;
    background-color: var(--pseudoblack);
    -webkit-mask-image: url(../img/icon-download.svg);
    -moz-mask-image: url(../img/icon-download.svg);
    mask-image: url(../img/icon-download.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}


main #resultsheader table td a:hover:after {
    background-color:  var(--tablegreen);;
}

main #results table td {
    padding: 8px 0;
    text-align: center;
}

main #resultsheader table tr td:nth-child(1),
main #results table tr td:nth-child(1) {
    min-width: 180px;
    text-align: left;
    vertical-align: top;
}
main #resultsheader table tr td:nth-child(2),
main #results table tr td:nth-child(2) {
    min-width: 230px;
    text-align: left;
    vertical-align: top;
}
main #resultsheader table tr td:nth-child(2),
main #results table tr td:nth-child(2) {
    min-width: 230px;
}
main #resultsheader table tr td:last-child,
main #results table tr td:last-child {
    min-width: 70px;
}

main #resultsheader table td .sort {
    float: right;
    position: relative;
    right: 10px;
    width: 10px;
    height: 20px;
    background-color: var(--pseudoblack);
    -webkit-mask-image: url(../img/icon-sort-neutral.svg);
    -moz-mask-image: url(../img/icon-sort-neutral.svg);
    mask-image: url(../img/icon-sort-neutral.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    cursor: pointer;
}
main #resultsheader table td .sort[data-sort=asc] {
    -webkit-mask-image: url(../img/icon-sort-up.svg);
    -moz-mask-image: url(../img/icon-sort-up.svg);
    mask-image: url(../img/icon-sort-up.svg);
}
main #resultsheader table td .sort[data-sort=desc] {
    -webkit-mask-image: url(../img/icon-sort-down.svg);
    -moz-mask-image: url(../img/icon-sort-down.svg);
    mask-image: url(../img/icon-sort-down.svg);
}
main #resultsheader table td .sort:hover {    
    background-color: var(--tablegreen);
}

main #results table tr td:first-child a {
    color: var(--pseudoblack);
    text-decoration: none;
    font-weight: 700;
}

main #results table tr td:first-child a:hover {
    color: var(--tablegreen);
}

main #results table tr td:first-child span.copy {
    display: inline-block;
    margin-right: 8px;
    width: 11px;
    height: 13px;
    cursor: pointer;
    padding: 4px;
    margin-bottom: -5px;
    background-color: transparent;
    transition: all .5s ease;
    position: relative;

}

main #results table tr td:first-child span.copy:before {
    content: " ";
    width: 15px;
    height: 17px;
    position: absolute;
    background-color: var(--pseudoblack);
    -webkit-mask-image: url(../img/icon-copy.svg);
    -moz-mask-image: url(../img/icon-copy.svg);
    mask-image: url(../img/icon-copy.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}



main #results table tr td:first-child span.copy:hover:before {
    background-color: var(--tablegreen);
}


main #results table tr td:first-child span.copy.copied {
    background-color: var(--tablegreen);
}

main #results table tr td:first-child span.copy.copied:before {
    cursor: default;
    background-color: #fff;
}


/* begin old icons 

main #results table tr td a.icon {
    display: inline-block;
    width: 40px;
    height: 30px;
    background: none 50%/contain no-repeat transparent;
}

main #results table tr td a.icon.icon-pdf {
    background-image: url(../img/icons_alt/ico_pdf.gif);
}
main #results table tr td a.icon.icon-txt {
    background-image: url(../img/icons_alt/ico_txt.gif);
}
main #results table tr td a.icon.icon-faq {
    background-image: url(../img/icons_alt/ico_faq.gif);
}
main #results table tr td a.icon.icon-zip {
    background-image: url(../img/icons_alt/ico_zip.gif);
}
main #results table tr td a.icon.icon-ets5 {
    background-image: url(../img/icons_alt/ico_ets5.gif);
}
main #results table tr td a.icon.icon-ets4 {
    background-image: url(../img/icons_alt/ico_ets4.gif);
}
main #results table tr td a.icon.icon-ce {
    background-image: url(../img/icons_alt/ico_ce.gif);
}
main #results table tr td a.icon.icon-vd5 {
    background-image: url(../img/icons_alt/ico_vd5.gif);
}
main #results table tr td a.icon.icon-vd1 {
    background-image: url(../img/icons_alt/ico_vd1.gif);
}
main #results table tr td a.icon.icon-vd2 {
    background-image: url(../img/icons_alt/ico_vd2.gif);
}
main #results table tr td a.icon.icon-vd3 {
    background-image: url(../img/icons_alt/ico_vd3.gif);
}
main #results table tr td a.icon.icon-vd4 {
    background-image: url(../img/icons_alt/ico_vd4.gif);
}
main #results table tr td a.icon.icon-htm {
    background-image: url(../img/icons_alt/ico_htm.gif);
}
end old icons */


/* new icons */

main #results table tr td a.icon {
    display: inline-block;
    content: " ";
    width: 26px;
    height: 28px;
    background-color: var(--pseudoblack);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    margin-top: 10px;
}

main #results table tr td a.icon.icon-pdf {
    -webkit-mask-image: url(../img/icon-pdf.svg);
    -moz-mask-image: url(../img/icon-pdf.svg);
    mask-image: url(../img/icon-pdf.svg);
}
main #results table tr td a.icon.icon-txt {
    -webkit-mask-image: url(../img/icon-txt.svg);
    -moz-mask-image: url(../img/icon-txt.svg);
    mask-image: url(../img/icon-txt.svg);
}
main #results table tr td a.icon.icon-faq {
    -webkit-mask-image: url(../img/icon-faq.svg);
    -moz-mask-image: url(../img/icon-faq.svg);
    mask-image: url(../img/icon-faq.svg);
}
main #results table tr td a.icon.icon-zip {
    -webkit-mask-image: url(../img/icon-zip.svg);
    -moz-mask-image: url(../img/icon-zip.svg);
    mask-image: url(../img/icon-zip.svg);
}
main #results table tr td a.icon.icon-ets5 {
    -webkit-mask-image: url(../img/icon-ets5.svg);
    -moz-mask-image: url(../img/icon-ets5.svg);
    mask-image: url(../img/icon-ets5.svg);
}
main #results table tr td a.icon.icon-ets4 {
    -webkit-mask-image: url(../img/icon-ets4.svg);
    -moz-mask-image: url(../img/icon-ets4.svg);
    mask-image: url(../img/icon-ets4.svg);
}
main #results table tr td a.icon.icon-ce {
    -webkit-mask-image: url(../img/icon-download.svg);
    -moz-mask-image: url(../img/icon-download.svg);
    mask-image: url(../img/icon-download.svg);
}
main #results table tr td a.icon.icon-wbt {
    -webkit-mask-image: url(../img/icon-wbt.svg);
    -moz-mask-image: url(../img/icon-wbt.svg);
    mask-image: url(../img/icon-wbt.svg);
}
main #results table tr td a.icon.icon-vd1 {
    -webkit-mask-image: url(../img/icon-vd1.svg);
    -moz-mask-image: url(../img/icon-vd1.svg);
    mask-image: url(../img/icon-vd1.svg);
}
main #results table tr td a.icon.icon-vd2 {
    -webkit-mask-image: url(../img/icon-vd2.svg);
    -moz-mask-image: url(../img/icon-vd2.svg);
    mask-image: url(../img/icon-vd2.svg);
}
main #results table tr td a.icon.icon-vd3 {
    -webkit-mask-image: url(../img/icon-vd3.svg);
    -moz-mask-image: url(../img/icon-vd3.svg);
    mask-image: url(../img/icon-vd3.svg);
}
main #results table tr td a.icon.icon-vd4 {
    -webkit-mask-image: url(../img/icon-vd4.svg);
    -moz-mask-image: url(../img/icon-vd4.svg);
    mask-image: url(../img/icon-vd4.svg);
}
main #results table tr td a.icon.icon-vd5 {
    -webkit-mask-image: url(../img/icon-vd5.svg);
    -moz-mask-image: url(../img/icon-vd5.svg);
    mask-image: url(../img/icon-vd5.svg);
}
main #results table tr td a.icon.icon-htm {
    -webkit-mask-image: url(../img/icon-htm.svg);
    -moz-mask-image: url(../img/icon-htm.svg);
    mask-image: url(../img/icon-htm.svg);
}

main #results table tr td a.icon:hover {
    background-color: var(--tablegreen);
}


main #results table tr td a.icon.icon-wbt {
    width: 11px;
    height: 12px;
    margin-left: 4px;
    margin-bottom: -3px;
    background-color: var(--pseudoblack);
    -webkit-mask-image: url(../img/icon-wbt.svg);
    -moz-mask-image: url(../img/icon-wbt.svg);
    mask-image: url(../img/icon-wbt.svg);
}

main #results table span.red {
    color: var(--tablered);
}
main #results table span.green {
    color: var(--tablegreen);
}

main #results {
    overflow: auto;
    overflow-y: scroll;
    height: calc(100vh - 165px - 156px - 33px - 115px) /* (100% Höhe - Header-Höhe - Suchfeld-Höhe - Tabellenheader-Höhe - Footer-Höhe) */
}

aside {
    height: calc(100vh - 165px - 115px); /* (100% Höhe - Header-Höhe - Footer-Höhe) */
    overflow: auto;
    width: 355px;
    border-left: 1px solid var(--pseudoblack);
    padding-left: 22px;
    padding-right: 8px;
}

aside #legend {
    margin-bottom: 20px;
}

aside #legend b {
    font-size: 1rem;
    font-weight: 400;
    margin: 13px 0 10px;
    display: block;
}

aside #legend a {
    font-size: .75rem;
    font-weight: bold;
    color: var(--theme-color-2);
    text-decoration: none;
    display: block;
    line-height: 1rem;
}

aside #legend a:hover {
    color: var(--tablegreen);
}

aside #legend a:before {
    display: inline-block;
    content: " ";
    margin-right: 5px;
    width: 7px;
    height: 7px;
    background-color: var(--theme-color-2);
    -webkit-mask-image: url(../img/icon-ext.svg);
    -moz-mask-image: url(../img/icon-ext.svg);
    mask-image: url(../img/icon-ext.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

aside #legend a:hover:before {
    background-color: var(--tablegreen);
}

#gamma_catalog {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}
#gamma_catalog img {
    width: 120px;
    height: 172px;
    transform: scale(1);
    transition: transform .5s ease;
    border:  3px solid var(--theme-color-1);
    position: relative;
}

#gamma_catalog:hover img {
    transform: scale(1.1);
}
#gamma_catalog:after {
    display: block;
    content: " ";
    width: 15px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0px;
    transition: right 0.5s ease;
    background-color: var(--tablegreen);
    -webkit-mask-image: url(../img/icon-download.svg);
    -moz-mask-image: url(../img/icon-download.svg);
    mask-image: url(../img/icon-download.svg);
    mask-size: 100%;
    -webkit-mask-size: 100%;
    -moz-mask-size: 100%;
    mask-repeat: no-repeat;
    -moz-mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    z-index: -1;
}

#gamma_catalog:hover:after {
    right: -25px;
}

#knx_logo {
    display: block;
    float: right;
}

#knx_logo img {
	width: 118px;
    height: 56px;
}


/*************/


 #prodimgbox {
     top:300px;
     left:630px;
}

 #prodimgbox {
     display:none;
     position:absolute;
     top:286px;
     left:630px;
     width:300px;
     height:300px;
     padding:0px;
     margin:0px;
     border:1px solid #ccc;
     background-color:var(--theme-color-1);
}
 #prodimgsrc {
     position:relative;
}
 