:root {

    /* BRUSA COLORS */
    --red100:    #be0000;
    --text:      #46525a;
    --area:      #373b3e;
    --bg:        #373b3e1A;

    
    /* 
    2nd Colors

    #ff7207
    #3aa94e
    #009fd9
    #8767a8
    -------

    3rd Colors
    #ffab6a
    #9ecb92
    #73c3ea
    #b6a5c8

    */

    --red70 :    #ed4747;
    --black100:  #000000;
    --black80:   #2f2f2f;
    --black70:   #5a5a5a;
    --black67:   #535353;
    --black59:   #686868;
    --black54:   #757575;
    --black40:   #999999;
    --black30:   #b3b3b3;
    --black20:   #d5d5d5;
    --black10:   #e6e6e6;
    --black8:    #ebebeb;
    --black5:    #f2f2f2;
    --drive:     #134dbf;
    --converter: #00ac13;
    --charger:   #e19100;
    --system:    #f2da00;
    --test:      #69467d;

    --limit-l: 1880px;
    --limit-m: 1465px;
    --limit-s: 1080px;
    --limit-xs: 720px;
}
@-moz-document url-prefix() {
    footer .wrap {
        margin-top: 100px !important;
    }
}
.limit-m {
    max-width: var(--limit-m); 
    margin:auto;
}
.limit-l {
    max-width: var(--limit-l);
    margin:auto;
}
.no-wrap {
    white-space: nowrap;
}
main {
    color: var(--text);
}
.nav-wrapper {
    display: table-cell;
    width: 100%;
}
.nav-top {
    color: var(--black20);
}
.nav-top .border-box {
    border-bottom: 1px solid var(--black20);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-top .phone, .nav-top .lang {
    display: table-cell;
    padding: 0.5em 1em;
}
.nav-top .phone {
    width: 100%;
}
.nav-top div {
    margin: 0;
    font-size: 0.92em;
}
.nav-img {
    width: 125px;
}
nav {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 2fr auto 3fr;
    grid-column-gap: 1em;
    margin-bottom: auto;
    z-index: 1;
}
#chaser {
    position: fixed;
    display: none;
    top: -50px;
    z-index: 9999;
    padding: 2px;
    background-color: var(--area);
    width: 100%;
    text-align: center;
}

.chaser-in {
    animation-duration: .4s;
    animation-name: slide-chaser-in;
    animation-fill-mode: forwards;
}

.chaser-out {
    animation-duration: .4s;
    animation-name: slide-chaser-out;
    animation-fill-mode: forwards;
}

@keyframes slide-chaser-in {
    from {
        top: -50px;
    }
    to {
        top: 0;
    }
}
@keyframes slide-chaser-out {
    from {
        top: 0;
    }
    to {
        top: -50px;
    }
}

nav .main-nav {
    display: table-cell;
    width: 100%;
}
nav ul {
    list-style-type: none;
    margin: 0;
    width: 100%;
    padding: 0;
}
nav li {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
    margin-bottom: auto;
    cursor: pointer;
}
nav li a {
    
}
.main-nav > ul > li:hover > .hover-animation {
    -webkit-animation: 0.3s hover-animation;
            animation: 0.3s hover-animation;
    display: block;
    top: 0;
    bottom: 0;
}
nav li .hover-animation {
    display: none;
    position: absolute;
    top: 50%;
    width: 100%;
    bottom: 50%;
    background-color: var(--red100);
    border-radius: 0.2em;
    z-index: 0;
}
nav li .dropbox {
    position: absolute;
    display: none;
    background-color:transparent;
    padding: 0.4em 0;
    border-radius: 0.3em;
    z-index: 9999;
}
nav li .dropbox .arrow {
    background-color: #ffffff;
    height: 8px;
    width: 8px;
    margin-left: 1.2em;
    margin-bottom: -4px;
    transform: rotate(45deg);
    display: block;
    box-shadow: 0px 1px 5px var(--black70);
}
nav li .dropbox .spacer {
    height: 4px;
    background-color: #ffffff;
}
nav li .dropbox .spacer:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
nav li .dropbox ul {
    background-color: #ffffff;
    border-radius: 0.2em;
    box-shadow: 0px 1px 5px var(--black70);
    background-color: #ffffff;
    border-radius: 0.2em;
    overflow: hidden;
}
nav li .dropbox li {
    display: block;
    min-width: 200px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    min-height: 5px;
    background-color: #ffffff;
}
nav .dropbox a {
    text-align: left;
    padding: 1em;
    color: var(--black54);
    padding-left: 1.5em;
    display: block;
    font-size: 0.8em;
    z-index: +1;
}
nav .dropbox li:hover a {
    background-color: var(--black8);
    -webkit-animation: 0.15s dropdown-hover;
            animation: 0.15s dropdown-hover;
    color: var(--black80);
}
nav a, .lang a {
    position: relative;
    color: var(--black8);
    text-decoration: none;
    padding: 0.3em 0.7em;
    display: block;
    font-size: 1em;
}
nav a.active {
    background-color: var(--red100);
    border-radius: 0.2em;
}
nav li.dropable:hover .dropbox {
    display: block;
    -webkit-animation: 0.15s nav-hover;
            animation: 0.15s nav-hover;
}
nav li.profile {
    float: right;
}
nav li.profile a i {
    padding-right: 0.25em;
}
nav .lang-selector {
    text-align: center;
    margin: 1em 0.5em;
}
nav .profile form {
    padding: 1em 0.5em;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}
nav .profile .dropbox {
    right: 0;
}
nav .profile .dropbox  .arrow {
    margin-left: auto;
    margin-right: 1.2em;
}
nav .profile form input {
    background-color: var(--red100);
    color: #ffffff;
    border-radius: 0.2em;
    border: none;
    cursor: pointer;
}
@-webkit-keyframes nav-top {
    from {
        background-color: var(--red100);
    }
    to {
        background-color: var(--black100);
    }
}
@keyframes nav-top {
    from {
        background-color: var(--red100);
    }
    to {
        background-color: var(--black100);
    }
}
@-webkit-keyframes nav-hover {
    from {
        margin-top: 2em;
        opacity: 0.1;
    }
    to {
        margin-top: 0em;
        opacity: 1;
    }
}
@keyframes nav-hover {
    from {
        margin-top: 2em;
        opacity: 0.1;
    }
    to {
        margin-top: 0em;
        opacity: 1;
    }
}
@-webkit-keyframes hover-animation {
    from {
        top: 50%;
        bottom: 50%;
    }
    to {
        top: 0;
        bottom: 0;
    }
}
@keyframes hover-animation {
    from {
        top: 50%;
        bottom: 50%;
    }
    to {
        top: 0;
        bottom: 0;
    }
}
@-webkit-keyframes dropdown-hover {
    from {
        color: var(--black8);
    }
    to {
        color: var(--black80);
    }
}
@keyframes dropdown-hover {
    from {
        color: var(--black8);
    }
    to {
        color: var(--black80);
    }
}
textarea {
    padding-top: 20px !important;
}
#totop {
    display: none;
    position: fixed;
    top: 85%;
    right: -60px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: var(--area);
    color: #fff;
    cursor: pointer;
    padding: 5px;
    border-radius: 2px;
    font-size: 9px;
    font-weight: bolder;
    opacity: .7;
    width: 49px;
    height: 49px;
}
#totop:hover {
    opacity: 1;
}
.totop-in {
    animation-duration: .4s;
    animation-name: slide-totop-in;
    animation-fill-mode: forwards;
}
.totop-out {
    animation-duration: .4s;
    animation-name: slide-totop-out;
    animation-fill-mode: forwards;
}
@keyframes slide-totop-in {
    from {
        right: -60px;
    }
    to {
        right: 30px;
    }
}
@keyframes slide-totop-out {
    from {
        right: 30px;
    }
    to {
        right: -60px;
    }
}
#loadingbar {
    display: block;
    box-sizing: border-box;
    background-clip: content-box;
    padding-right: 100%;
    height: 3px;
    background-color: var(--red100);
}
.background-box {
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-color: var(--black100);
    background-position: center;
    z-index: -3;
}
.login-image {
    background-image: url(/images/auth.jpg?cc6ea0d85c92cbd2f5c72fb2b4d9a8d0);
    filter: brightness(0.7);
}
.dashboard-image, .login-image {
    background-image: url(../img/bg/001_BRUSA-HQ-Buchs_Foyer_RGB.jpg?cc6ea0d85c92cbd2f5c72fb2b4d9a8d0);
    filter: brightness(0.8);
}
.dashboard {
    padding-top: 20px;
}
.dashboard .widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 1em;
    grid-column-gap: 1em;
    padding: 5px;
}
.dashboard .title {
    color: #fff !important;
    background-color: rgba(0,0,0,.6);
    position: absolute;
    top: 620px;
    right: 0;
    width: 45%;
    height: 5rem;
    padding-left: 4rem;
    clip-path: polygon(100% 0%, 100% 100%, 6% 100%, 0% 0%);
}
.dashboard .title h1 {
    color: #fff !important;
    text-transform: uppercase;
    line-height: 4.5rem;
    vertical-align: middle;
}
.dashboard .background-box {
    bottom: 0vh;
    background-position: center;
}
@media only screen and (min-height: 1230px) {
    .dashboard .background-box {
        bottom: 42vh;
    }
}
.text-center {
    text-align: center;
}
.dashboard .widget {
    padding: 0 1.5em;
    padding-bottom: 1.5em;
    background-color: #fff;
    border-radius: 0.3em;
    box-shadow: 0px 0px 3px #ccc;
    vertical-align: top;
    box-sizing: border-box;
    width: 100%;
    height: 500px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    margin: 0 auto;
}
.dashboard .widget .w-body {
    overflow-y: auto;
    vertical-align: top;
}
.dashboard .widget .w-body > * {
    margin-bottom: auto;
}
.dashboard .col-1-3 {
    grid-column: 1/3;
}
.dashboard .widget table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}
.dashboard .widget table td {
    padding: 0.5em;
    overflow: hidden;
}
.dashboard .widget table tr:hover {
    cursor: pointer;
    background-color: var(--black20);
}
.dashboard .widget table ul li {
    display: inline-block;
}
.dashboard .widget a {
    display: block;
}
.dashboard .widget ul li a {
    color: var(--black70);
    padding: 0 0.2em;
    border-radius: 3px;
    display: block;
}
.dashboard .widget ul li a:hover {
    background-color: var(--red100);
    color: #fff;
}
.dashboard ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.dashboard p {
    margin: 0;
}
.dashboard .widget .head {
    border-bottom: 1px solid var(--black8);
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 0.3em;
}
.dashboard .widget .head form {
    text-align: right;
}
.dashboard .widget .body table {
    width: 100%;
    text-align: left;
}
.dashboard h1, .dashboard h2 {
    margin: 0;
    color: var(--black70);
}
.dashboard h2 {
    padding: 0.9em;
    border-bottom: 2px solid var(--red100);
}
.dashboard .account li {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 0.2em;
}
.dashboard .widget a {
    text-decoration: none;
    color: var(--red70);
}
.dashboard .widget table th {
    text-align: left;
    padding: 0.5em;
    background-color: var(--black30);
}
.dashboard .widget table thead:hover {
    background-color: var(--black30);
}

header {
    background: rgb(47,47,47);
    background: linear-gradient(180deg, rgba(47,47,47,0.9317927854735644) 0%, rgba(255,255,255,0) 100%);
    padding-bottom: 3.5em;
    z-index: -2;
}
header .limiter {
    max-width: var(--limit-m);
    margin: auto;
    padding-bottom: 1.5em;
}
header .wrapper {
    display: table;
    width: 100%;
    max-width: var(--limit-m);
}
header .logo {
    display: table-cell;
    grid-row: 1/4;
}
header nav .main-nav {
    grid-row: 2;
}
header .nav-wrapper {
    grid-row: 2;
}
nav .locale-active {
    background-color: rgb(196, 196, 196) !important;
    color: white;
    
}
footer {
    margin-top: auto;
    background-color: var(--black80);
    padding: 0 29px;
   
}
footer .wrap {
    display: grid;
    color: var(--black20);
    grid-template-columns: repeat(5, 1fr);
    max-width: var(--limit-m) !important;
    margin: auto;
    border-bottom: 5px solid #484848;
    padding: 1em 0;
}
footer p {
    margin: 0;
    color: var(--black20);
    padding: 0.3em 0;
}
footer ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    padding-left: 0.5em;
}
footer ul a, footer ul li, footer p {
    text-decoration: none;
    color: var(--black10);
    padding: 3px 10px;
    display: block;
    font-size: 0.9em;
}
footer ul li a {
    display: inline;
    padding-left: 0;
    font-size: 1em;
}
footer ul a:hover {
    color: var(--black30);
}
.copyright-wrapper{
    background-color: #2f2f2f;
}

footer .copyright {
    max-width: var(--limit-m);
    background-color: #2f2f2f;
    margin: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto 1fr;
}
footer .copyright div {
    padding-top: 29px;
    padding-bottom: 29px;
    grid-row: 1/-1
}
footer .copyright p {
    color: var(--black20);
    grid-row: 2;
}
footer .legal {
    color: var(--black20);
    padding-left: 30px;
}
.faq {
    max-width: var(--limit-m);
    margin: auto;
    padding: 0 1em;
}
.faq .faq-item {
    padding: 0;
    margin: 0 1em;
    margin-bottom: 2em;
    position: relative;
}
.faq .faq-item .top {
    padding: 0.6em;
    position: relative;
}
.faq .faq-item .top select {
    display: inline-block;
    width: auto;
}
.faq .faq-item .category {
    padding: 0.3em 0.5em;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid var(--red100);
    color: var(--red100);
}
.faq .faq-item .q-a {
    border: 1px solid var(--red100);
    border-radius: 3px;
    box-shadow: 0px 0px 10px var(--black8);
}
.faq .faq-item:last-child {
    margin-bottom: 1em;
}
.faq .question {
    position: relative;
    padding: 1.2em;
    padding-left: 4.5em;
    background-color: var(--black8);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.faq .faq-item .actions {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    white-space: nowrap;
}
.faq .faq-item .actions * {
    display: inline-block;
}
.faq .faq-item .actions form {
    width: auto;
    font-size: 1em;
}
.faq .faq-item > form {
    border: none; 
    padding: 0;
    width: 100%;
}
.faq .answer {
    position: relative;
    padding: 1.2em;
    padding-left: 4.5em;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.faq .indicator {
    position: absolute;
    left: 0.25em;
    top: 50%;
    font-size: 3em;
    transform: translateY(-50%);
}
.faq .question .indicator {
    color: #fff;
}
.faq .answer .indicator {
    color: var(--black8);
}
.faq p {
    margin: 0;
}

.faq form {
    width: 100%;
    box-sizing: border-box;
}
.faq .faq-item .bottom {
    text-align: right;
    padding: 0.5em;
}
.faq .faq-item .bottom input {
    display: inline-block;
    width: auto;
}
.faq .filter-section {
    margin-bottom: 2em;
}
.faq .filter-section ul {
    list-style-type: none;
    padding: 1em 0;
    margin: 0 1em;
    border-bottom: 2px solid var(--black20);
    position: relative;
}
.faq .filter-section li {
    display: inline-block;
    position: relative;
}
.faq .filter-section li a {
    display: block;
    border-radius: 3px;
    padding: 0.4em 0.5em;
    border: 1px solid var(--red100);
    color: var(--red100);
    text-decoration: none;
}
.faq .filter-section li a.active {
    color: #fff;
    background-color: var(--red100);
}
.faq .filter-section li:last-child {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}
.faq .filter-section form {
    margin-left: auto;
    font-size: 1em;
    background-color: transparent;
    vertical-align: middle;
}
.faq .filter-section form .input-wrapper {
    width: auto;
}
.faq .filter-section form button {
    width: auto;
    padding: 0.5em 0.8em;
}
.faq .input-wrapper {
    position: relative;
}
.manuals {
    margin: auto;
    max-width: var(--limit-m);
    height: 100%;
    width: 100%;
}
.manuals .background-box {
    background-image: url(../img/bg/014_CROP_BRUSA_Sennwald_Productionline-01.jpg);
    filter: brightness(0.7) blur(2px);
}
.manuals form {
    margin: 0;
    min-width: 300px;
}
.manuals iframe {
    border-radius: 3px;
}
body {
    max-height: 100vh;
}
.manuals .content-wrapper {
    display: block;
}
.manuals .filter-section {
    position: absolute;
    right: 100%;
    padding-top: 2.2em;
}
.manuals .content-wrapper {
    width: 100%;
}
.manuals .content-section {
    position: relative;
}
.manuals table .type, .manuals table .artno {
    max-width: 6em;
}
.manuals table {
    border-collapse: collapse;
    width: 100%;
    position: relative;
}

.manuals table tbody {
    max-height: 60vh;
}
.manuals table th {
    padding: 0.5em 1em;
    text-align: left;
}
.manuals table th:first-child {
    text-align: left;
    padding-left: 2em;
}
.manuals table tr {
    background-color: #fff;
    width: 100%;
    vertical-align: top;
}
/* .manuals table tr:nth-child(odd) {
    background-color: var(--black5);
} */
.manuals table th:first-child, .manuals table th:nth-child(2) {
    text-align: left;
}
.manuals table tr td:first-child, .manuals table tr td:nth-child(2) {
    text-align: left;
}
.manuals table .manual td {
    padding: 0.5em 1em;
    padding-bottom: 0.2em;
    word-break: break-all;
    /* border-top: 1px solid var(--black20); */
}
.manuals table .manual td:first-child{
    padding-left: 2em;
}
.manuals table .manual .mainlink {
    text-align: left;
}
.manuals table .tags {
    text-align: left;
}
.manuals table .tags td {
    padding: 0.5em 1em;
    padding-top: 0.2em;
    padding-left: 2em;
}
.manuals .tags .category-tag {
    display: inline-block;
    padding: 0.1em 0.3em;
    border-radius: 0.2em;
    margin: 0;
}
.manuals .manual td {
    border-top: 1px solid var(--black8);
}
.manuals-detail img {
    display: block;
    max-width: 100%;
}
.manuals table thead tr {
    border-bottom: 2px solid var(--black20);
}
.manuals table tbody tr:hover {
    -webkit-animation: 0.15s row-hover;
            animation: 0.15s row-hover;
    z-index: 5;
    background-color: #f7f7f7;
}
.manuals tbody tr td:last-child {
    text-align: left;
}
.manuals table ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
.manuals table ul li {
    display: inline-block;
}
.manuals table ul li a {
    display: block;
    padding: 0.1em 0.3em;
    color: var(--black70);
}
.manuals table ul li a:not(.no-preview):hover  {
    color: var(--red100);
}
.manuals table ul li a.no-preview {
    color: var(--black20);
}
.manuals table ul li i {
    font-size: 1.1em;
}
.manuals .manuals.detail {
    height: 1440px;
}
@-webkit-keyframes row-hover {
    from {
        padding: 0;
        width: 100%;
    }
    to {
        padding: 1em 0;
        width: 83%;
    }
}

@keyframes row-hover {
    from {
        padding: 0;
        width: 100%;
    }
    to {
        padding: 1em 0;
        width: 83%;
    }
}
@keyframes rotate1 {
    from{
        transform: rotate(0deg);
    }   
    to {
        transform: rotate(180deg);
    }
}
@keyframes rotate2 {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* .rotatebutton:not(.init-rotate) {
    animation: rotate-1 0.4s;
    transform: rotate(180deg);
}
.rotatebutton:not(.rotate):not(.init-rotate) {
    animation: rotate-2 0.4s;
} */

.btn-rotate:not(.loading).rotate {
    animation: rotate1 0.4s;
    transform: rotate(180deg);
}
.btn-rotate:not(.loading):not(.rotate) {
    animation: rotate2 0.4s;
}

.contact {
    max-width: var(--limit-m);
    margin: auto;
}

.contact-wrapper {
    max-width: var(--limit-m);
    margin: auto;
}

 .xyz{
    width: 900px;
    height: 700px;
    margin-top: 60px;
    margin-left: 20px;
   
}

/* start */

@media (min-width: 700px) {
  
    .wrapper > * {
      float: left;
      /* padding: 2em 2em; */
    }
  }
  
  @media (min-width: 700px) {
    .contacts {
      width: 30%;
      min-height: 620px;
    }
  }
  
  @media (min-width: 700px) {
    .form {
      width: 70%;
    }
  }
  
  form p {
    float: left;
    width: 49%;
  }
  form p:not(:nth-child(2n)) {
    margin-right: 2%;
  }
  form p:last-child {
    clear: both;
    width: 100%;
  }
  form p:nth-last-child(2) {
    clear: both;
    width: 100%;
  } 
  
  
  .contain button,
  .contain input,
  .contain textarea {
    padding: 1em;
  }
  
  /* button {
    background: lightgrey;
    width: 100%;
    border: 0;
  } */

  
  .contain {
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
  }
  @media (min-width: 600px) {
    .contain {
      padding: 0;
    }
  }

  
  .contain .wrapper input,
  .contain textarea {
    width: 100%;
 
  }


  .contain .wrapper input, .contain .wrapper select {
    height: 55px;
    background-color: var(--black20);
    border: 1px solid var(--black20)

  }
  .contain .wrapper textarea, .contain .wrapper select{
    border: 1px solid var(--black20);
    background-color: var(--black20);

  }

  .contain .wrapper ::placeholder{
   color: var(--black59);
   font-weight: bold;

  }
  .contain select option{
    color: var(--black59);
    font-weight: bold;
 
   }
  
  .contact-btn{
    width: 25%;
    background-color: var(--red100);
    color: #ffffff;
    font-family: boldbrusafont;
  }

/* end */

.contact-image {
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    background-image: url(/images/contact_bg.jpeg?dfa5921b800940159d5ed3b15b4d6a79);
    filter: brightness(0.7);
    background-size: cover;
    background-color: var(--black100);
    z-index: -3;
}
.contact .form-wrapper {
    max-width: var(--limit-s);
    margin: auto;
    background-color: #ffffff;
    padding: 0;
}
.contact h2 {
    margin: 0;
    padding: 1em 0;
}
.contact .locations {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* border-top: 2px solid var(--black20); */
}
.contact ul {
    margin: auto;
    padding: 2em 1em;
    list-style-type: none;
}
.contact ul h4 {
    margin: 0;
    padding: 1em 0;
    color: var(--black70);
}
.contact ul li {
    color: var(--black54);
    margin: 0.4em 0;
}
.contact .message {
    display: table-cell;
    width: 100%;
}
.contact .message textarea {
    height: 10em;
}
.contact .form-wrapper form {
    display: block;
}
.contact .form-wrapper .left, .contact .form-wrapper .right {
    display: table-cell;
    vertical-align: top;
}
.contact .form-wrapper .row {
    width: 100%;
}
.contact .form-wrapper .left {
    
    padding-right: 1em;
}
.contact .form-wrapper .right {
    padding-left: 1em;
    position: relative;
}
.contact .form-wrapper p {
    margin-top: 0;
    color: var(--black30);
}
.contact .form-wrapper .table {
    width: 100%;
    margin-bottom: 1em;
}
.contact .files {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#contact-form {
    margin: 3em 0;
    margin-bottom: auto;

}
.contact h5, .contact h6 {
    color: var(--black40);
}
.contact .return-splitter {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact .return-splitter div {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 3em;
    margin: 3.5em 0;
    padding: 0em 8em;
}

.contact .return-splitter div i {
    font-size: 10em;
    color: var(--black20);
}

form {
    display: table;
    font-family: boldbrusafont;
    font-size: 0.9em;
    padding: 1em 1.5em;
    border: 2px solid var(--black8);
    border-radius: 3px;
    background-color: #ffffff;
    margin: 0px auto;
}
form .title {
    border-bottom: 2px solid var(--black20);
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-right: 1em;
    display: table-caption;
}
form .left, form .right {
    display: table-cell;
    vertical-align: top;
}
form .row {
    width: 100%;
}
form .left {
    width: 50%;
    padding-right: 1em;
}
form .right {
    width: 100%;
    padding-left: 1em;
    position: relative;
}
form .table {
    width: 100%;
    margin-bottom: 1em;
}
form .table input[type="checkbox"] {
    display: inline;
}
form .input-wrapper {
    display: block;
    position: relative;
    min-width: 200px;
    padding: 0.75em 0;
}
form .input-wrapper input:not([type="checkbox"]) + label {
    font-size: 0.9em;
    padding: 0 0.2em;
    cursor: pointer;
    color: var(--black40);
}
form .input-wrapper input[type="checkbox"] + label {
    cursor: pointer;
}
form .input-wrapper textarea + label {
    font-size: 1em;
    padding: 0 0.2em;
    cursor: pointer;
    color: var(--black40);
}
form .input-wrapper .info-icon-wrapper {
    position: absolute;
    top: .25em;
    left: -0.7em;
    font-size: .8em;
    color: var(--black40);
    cursor: pointer;
    z-index: 11;
}
form .input-wrapper .info-icon-border {
    border: 1px solid var(--black40);
    width: 1.2em;
    text-align: center;
    height: 1.2em;
    border-radius: 100%;
    background-color: #ffffff;
}
form .input-wrapper .info-icon-wrapper:hover .info-icon-border{
    border: 1px solid var(--red100);
    color: var(--red100);
}
form .input-wrapper .info-icon-wrapper:active .info-content {
    display: block;
}
form .input-wrapper .info-icon-wrapper .info-content {
    display: none;
    position: absolute;
    z-index: 3;
    top: 1em;
    left: 1em;
}
form .input-wrapper .info-icon-wrapper .info-content img {
    width: 500px;
}
input, select, textarea {
    box-sizing: border-box;
    display: block;
    resize: none;
    border: 1px solid var(--black40);
    padding: 8px;
    width: 100%;
    border-radius: 0.2em;
}
input:not([type="file"]) + label {
    position: absolute;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    cursor: text;
}
input, textarea {
    top: 0.5em;
    background-color: #fff;
    font-family: Arial;
}
textarea + label {
    position: absolute;
    top: 1.5em;
    left: 0.5em;
    transform: translateY(0);
}
textarea:focus {
    border: 2px solid #5c85d6;
    padding: 7px;
    outline: none;
}
form *, form *:focus {
    outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="submit"]:focus {
    border: 2px solid #5c85d6;
    padding: 7px;
}
input[type="text"] + label,
input[type="password"] + label,
input[type="email"] + label,
input[type="submit"] + label {
    transform: translateY(0);
    top: 0.3em;
    background-color: #fff;
}
input[type="text"]:focus + label,
input[type="password"]:focus + label,
input[type="email"]:focus + label,
input[type="submit"]:focus + label {
    transform: translateY(0);
    top: 0.3em;
    background-color: #fff;
    color: #5c85d6;
}
input[type="text"]:-moz-placeholder-shown + label, input[type="password"]:-moz-placeholder-shown + label, input[type="email"]:-moz-placeholder-shown + label, input[type="submit"]:-moz-placeholder-shown + label {
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}
input[type="text"]:-ms-input-placeholder + label, input[type="password"]:-ms-input-placeholder + label, input[type="email"]:-ms-input-placeholder + label, input[type="submit"]:-ms-input-placeholder + label {
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}
input[type="text"]:placeholder-shown + label,
input[type="password"]:placeholder-shown + label,
input[type="email"]:placeholder-shown + label,
input[type="submit"]:placeholder-shown + label {
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}
input[type="text"]:-moz-placeholder-shown:focus + label, input[type="password"]:-moz-placeholder-shown:focus + label, input[type="email"]:-moz-placeholder-shown:focus + label, input[type="submit"]:-moz-placeholder-shown:focus + label {
    animation: 0.25s label-shift;
    transform: translateY(0);
    top: 0.3em;
    background-color: #fff;
    color: #5c85d6;
}
input[type="text"]:-ms-input-placeholder:focus + label, input[type="password"]:-ms-input-placeholder:focus + label, input[type="email"]:-ms-input-placeholder:focus + label, input[type="submit"]:-ms-input-placeholder:focus + label {
    animation: 0.25s label-shift;
    transform: translateY(0);
    top: 0.3em;
    background-color: #fff;
    color: #5c85d6;
}
input[type="text"]:placeholder-shown:focus + label,
input[type="password"]:placeholder-shown:focus + label,
input[type="email"]:placeholder-shown:focus + label,
input[type="submit"]:placeholder-shown:focus + label {
    -webkit-animation: 0.25s label-shift;
            animation: 0.25s label-shift;
    transform: translateY(0);
    top: 0.3em;
    background-color: #fff;
    color: #5c85d6;
}
textarea + label {
    top: 0.5em;
    background-color: #fff;
}
textarea:-moz-placeholder-shown + label {
    top: 2em;
}
textarea:-ms-input-placeholder + label {
    top: 2em;
}
textarea:placeholder-shown + label {
    top: 2em;
}
textarea:focus + label {
    top: 0.4em;
    background-color: #fff;
    color: #5c85d6;
}
textarea:-moz-placeholder-shown:focus + label {
    animation: 0.25s area-shift;
    top: 0.4em;
    background-color: #fff;
    color: #5c85d6;
}
textarea:-ms-input-placeholder:focus + label {
    animation: 0.25s area-shift;
    top: 0.4em;
    background-color: #fff;
    color: #5c85d6;
}
textarea:placeholder-shown:focus + label {
    -webkit-animation: 0.25s area-shift;
            animation: 0.25s area-shift;
    top: 0.4em;
    background-color: #fff;
    color: #5c85d6;
}
input[type="file"] {
    display: none;
}
input[type="file"] + label i {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    font-size: inherit;
    text-rendering: auto;
}
input[ŧype="file"] + label i::before {
    content: "\f093";
}
form .input-wrapper label.file-label {
    display: block;
    border: 1px solid var(--black40);
    padding: 8px;
    border-radius: 0.2em;
}
input[type="submit"] {
    background-color: var(--red100);
    color: #fff;
    border-radius: 0.2em;
    border: none;
    font-size: 1em;
    cursor: pointer;
}
input[type="submit"]:focus {
    filter: brightness(120%);
    outline: none;
    border: 1px solid var(--red100);
}
input[type="checkbox"] {
    width: auto;
    padding: 0.5em;
}
input[type="checkbox"] + label {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0.5em 0;
    padding-left: 2.5em;
    border-radius: 0.2em;
    border: 1px solid var(--black20);
}
input[type="checkbox"]:focus + label {
    border: 1px solid #5c85d6;
}
select:focus {
    border: 2px solid #5c85d6;
    padding: 7px;
}
.delete-form .input-wrapper {
    display: block;
    width: 100%;
}
.delete-form .table {
    width: 100%;
}
.input-wrapper.yes-no {
    display: table-row;
    width: 100%;
}
.input-wrapper.yes-no input {
    display: table-cell;
    width: 100%;
    border: 1px solid var(--red100);
}
.input-wrapper.yes-no .cell {
    padding-right: 0.5em;
}
.input-wrapper.yes-no .button {
    width: 100%;
    box-sizing: border-box;
    background-color: var(--black40)
}
.input-wrapper.yes-no .cell:last-child {
    padding-right: 0;
    padding-left: 0.5em;
    width: 50%;
    text-align: center;
}
@-webkit-keyframes label-shift {
    from {
        transform: translateY(-50%);
        top: 50%;
        color: var(--black40);
    }
    to {
        transform: translateY(0);
        top: 0.7em;
        background-color: #fff;
        color: #5c85d6;
    }
}
@keyframes label-shift {
    from {
        transform: translateY(-50%);
        top: 50%;
        color: var(--black40);
    }
    to {
        transform: translateY(0);
        top: 0.7em;
        background-color: #fff;
        color: #5c85d6;
    }
}
@-webkit-keyframes area-shift {
    from {
        top: 2em;
        color: var(--black40);
    }
    to {
        top: 0.7em;
        background-color: #fff;
        color: #5c85d6;
    }
}
@keyframes area-shift {
    from {
        top: 2em;
        color: var(--black40);
    }
    to {
        top: 0.7em;
        background-color: #fff;
        color: #5c85d6;
    }
}

.products {
    max-width: var(--limit-m);
    margin: auto;
}
.products .background-box{
    background-image: url(../img/bg/012_CROP_BRUSA_Converter_BDC546-01.jpg);
    filter: brightness(0.7) blur(2px);
}
.products .overview {
    display: block;
    padding: 1em 0;
    padding-bottom: 0;
}
.products .overview a {
    text-decoration: none;
    color: var(--black54);
    font-size: 1.2em;
}
.products.show .split-view {
    display: table-row;
}
.products.show .layout-table .layout-cell:first-child {
    width: auto;
}
.products.show .layout-table .layout-cell:last-child {
    width: 100%;
}
.products.show {
    text-align: left;
    max-width: var(--limit-m);
    margin: auto;
    width: 100%; 
    max-width: 100%;
    height: 100%
}
.products.show tr.manual.restricted, .products.show tr.manual.restricted .mainlink p {
    color: var(--black40);
}
.products.show tr.manual.restricted {
    color: var(--black20);
}
.products.show h5 {
    display: block;
    color: #fff;
    padding: 0.2em;
    min-width: 400px;
    background-color: var(--red100);
}
.products.show .layout-resources {
    background-color: var(--bg);
}
.products.show .cell {
    vertical-align: top;
    padding: 1em;
}
.products.show .td-spacer {
    background-color: lightgray; width: 3px;
}
.products.show .manuals {
    width: 100%;
}
.products.show .manuals th:first-child {
    width: 100%;
}
.products.show .manuals th:nth-child(2) {
    min-width: 100px;
}
.products.show .manuals .admin-row {
    border-top: 2px solid var(--black20);
}
.products.show .manuals .admin-row td{
    text-align: right;
    padding-top: 0.5em;
}
.products.show .manuals .admin-row .button{
    display: inline-block
}
.products.show .manuals .button {
    margin-left: auto;
    display: block;
    padding: 0.4em;
    text-align: center;
}
.products.show h4 {
    background-color: var(--red100);
    color: #fff;
    padding: 0.3em 1em;
    border-radius: 3px;
}
.products.show h5 {
    box-sizing: border-box;
}
.products.show .split-view .left {
    min-width: 600px;
}
.products.show .split-view .cell.right {
    width: 100%;
}
.products.show .split-view .description {
    margin-right: auto;
    text-align: justify;
}

.products.show .description p {
    padding-left: 4em;
    text-align: justify;
    vertical-align: middle;
}
.resources-header {
    color: var(--red100);
    padding: 1em 0 0.5em 0;
}
.widget-wrapper{
    position: sticky; 
    top: 0;
    background-color: white;
}
.resources{
    /* background-color: var(--bg); */
    min-height: calc(100vh - 693px);
    padding: 1em 0 0.5em 0;
}


/* .fu, th, td{
    /* border:1px solid black; 
    /* border-collapse: collapse; 
    width:100%;
    padding-top: 20px;
    width:60%;
} */

 /* Slideshow container */
 .products .slideshow-container {
    position: relative;
    margin: auto;
    width: 600px;
    height: 355px;
}
.slideshow-container{
    overflow-x: hidden !important;
    max-width: 100vw;
}
.products .slideshow-container img {
    max-width: 600px;
    max-height: 350px;
}

/* Hide the images by default */
.products .slides {
    display: none;
}

/* Next & previous buttons */
.products .prev,
.products .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.products .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.products .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.products .prev:hover,
.products .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.products .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.products .numbertext {
    color: var(--text);
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* The dots/bullets/indicators */
.products .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.products .active,
.products .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.products .fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
.dashboard .slide {
    width: 100%;
    right: -100%;
    animation: dash-slide 1s forwards;
}
@keyframes dash-slide {
    from {
        right: -100%;
        left: 100%;
    }
    to {
        right: 0;
        left: 0;
    }
}
.dashboard .slideout {
    width: 100%;
    right: 0;
    animation: dash-slide-out 1s forwards;
}
@keyframes dash-slide-out {
    from {
        right: 0;
        left: 0;
    }
    to {
        right: 100%;
        left: -100%;
    }
}
.products .delImg {
    color: red !important; 
    position: absolute; 
    top: 0px;
    right: 0px;
    padding: 0.5em;
    background-color: #fff;
    box-shadow: 0px 0px 10px #fff;
    border: 1px solid var(--red100);
}
.products .delImg:hover {
    box-shadow: 0px 0px 5px var(--text);
}

.products.widget h2 {
    padding-top: 0.9em;
    border-bottom: 2px solid var(--red100);
}

.products.show .mainlink p {
    margin: 0;
    padding: 0.1em;
    color: var(--black70);
    overflow: hidden;
    text-overflow: ellipsis;
}
.prodcuts.widget tr:nth-child(odd) td {
    background-color: var(--black5);
}
.products.widget table {
    padding: 1em 0;
}
.products.widget {
    overflow-y: auto;
    height: 500px;
    padding: 10px;
}
.access-requests.widget{
    overflow-y: auto;
    min-height: 460px;
    grid-column: 1/3;
   /* padding: 10px;*/
}
.access-requests.widget thead{
    position: sticky;
    top: 0;
    z-index: 10;
}
.access-requests.widget tr{
    color: var(--red70);
}
.access-requests.widget tr:first-child {
    color: unset;
}
.access-requests.widget button:hover {
    background-color: var(--red70);
}
.access-requests.widget .loader {
    display: inline-block;
    margin-left: 10px;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 10px;
    height: 10px;
    animation: spin 2s linear infinite;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.products.show table ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}
.products.show table ul li {
    display: inline-block;
}
.products.show table ul li a {
    display: block;
    padding: 0.1em 0.3em;
    color: var(--black70);
}
/* .products table tr:nth-child(even) {
    background-color: #f2f2f2;
} */
/* .products table tr:hover td {
    box-shadow: 0 0 4px #ccc;
} */
.products.show table ul li a:not(.no-preview):hover  {
    color: var(--red100);
}
.products.show table ul li a.no-preview {
    color: var(--black20);
}
.products.show table ul li i {
    font-size: 1.1em;
}
.products.edit .overview {
    padding: 0.5em;
}
.products.edit .cell {
    vertical-align: top;
    padding-right: 1em;
}
.products.edit img {
    max-width: 400px;
    border-radius: 3px;
}
.products.edit .cell:last-child {
    padding-right: 0;
    padding-left: 1em;
}
.products.show .product-image {
    width: 100%;
}
.products.show .product-image img {
    max-width: 500px;
    max-height: 350px;
    border-radius: 3px;
}
.products .card {
    margin: 0 0.5em;
    margin-bottom: 1em;
    overflow: hidden;
    position: relative;
}
.products.td {
    vertical-align: top;
}
.products.td .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}
.products .card .image {
    min-width: 170px;
    height: 220px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.products .overview {
    display:  flex;
    justify-content: center;
    align-items: center;
}
.products .overview .center-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
}
.products .card .foot {
    display: block;
    padding: 0 1em;
    position: absolute;
    top: 185px;
    left: 0;
    right: 0;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 100%);
}
.products .card .foot ul {
    padding-left: 10px;
}
.products .card .foot h5 {
    border-top: 3px solid var(--black20);
    padding: 0.5em 0;
}
.products .card:hover {
    /* box-shadow: 0px 0px 5px var(--bg); */
}
.products .card .foot ul {
    list-style-type: none;
    margin: 0;
    
}
.products .card:hover .foot {
    top: -3px;
    bottom: 0;
    -webkit-animation: products-slide 0.5s;
            animation: products-slide 0.5s;
}
.products .card .foot ul li {
   padding: 0.25em 0;
}
.products .card .foot ul li i {
    /* margin-left: 1em; */
}
@-webkit-keyframes products-slide{
    from {
        top: 170px;
    }
    to {
        top: -3px;
    }
}
@keyframes products-slide{
    from {
        top: 170px;
    }
    to {
        top: -3px;
    }
}
.inline {
    display: inline-block !important;
}
.management {
    max-width: var(--limit-l);
    margin: auto;
}
.management .filter {
    position: absolute; 
    right:0;bottom:0;
    min-width: 400px; 
    padding: 5px;
    background-color: var(--area);
    color: #fff;
}
.management .filter td {
    border: 0;
    padding: 0;
    width: 33%;
}
.management .filter table {
    width: 100%;
}
.form-group input[type="checkbox"] {
    all: revert;
    width: 15px;
    height: 15px;
}

.management.credentials table {
    width: 100%;
}
.management .background-box, .faq .background-box {
    background-image: url(../img/bg/005_BRUSA_HQ_People-office.jpg);
    filter: brightness(0.5) blur(2px);
}
.management form {
    display: inline-block;
}
.management thead tr {
    background-color: var(--red100);
    border-spacing: 0;
}
.management th {
    text-align: left;
    background-color: var(--red100);
    color: #fff;
    padding: 0.5em 1em;
    margin-bottom: 1em;
    /* overflow-x: scroll; */
    /* width: 165px; */
    /* Make E-Mail only 1 grid with wide responsive with js */
}
.management td {
    vertical-align: top;
    border-bottom: 1px solid var(--black10);
    padding: 0.2em 1em;

    /* */
    /* width: 165px; */
}
.management .user-table {
    border-spacing: 0;
}
.management .user-table td {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    z-index: 5;
    padding: 0.75em 1em;
}
.management .user-table thead {
    position: sticky;
    top: 25px;
    z-index: 999;
}
.management .user-table thead tr {
    margin: 0;
}
.management .user-table tr td:last-child {
    white-space: nowrap;
}
.management table ul li {
    padding: 0;
    border-bottom: 0;
    text-align: left;
}
.management table ul li .active-group {
    padding: 0;
    box-sizing: border-box;
    border-bottom: 0;
    text-align: left;
    padding: 0.1em 0.2em;
    border: 1px solid var(--black20);
    border-radius: 3px;
    margin-bottom: 0.2em;
    display: inline-block;
    width: 100%;
}
.management table ul li .active-group .button {
    padding: 0.2em 0.3em;
}
.management table ul li:last-child {
    text-align: left;
}
.management table th .label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.management ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.management ul li  {
    margin-right: auto;
    padding: 0.5em;
    border-bottom: 1px solid var(--black20);
}
.management ul li:last-child {
    text-align: right;
    border-bottom: none;
}
.management form.list-form .input-wrapper {
    min-width: 0;
    vertical-align: middle;
}
.management .active-group .list-form .input-wrapper {
    padding: 0.2em;
}
.management .active-group .list-form .input-wrapper:last-child {
    float: right;
}
.management .close-button {
    background-color: var(--red100);
    border: none;
    color: #fff;
    font-size: 1.2em;
    border-radius: 3px;
    cursor: pointer;
}
.management .split-view {
    display: block;
}
.management .split-view .left .table-wrapper {
    padding-right: 1em;
}
.management .split-view .right .table-wrapper {
    padding-left: 1em;
}
.management .split-view table {
    width: 100%;
}
.management .split-views table {
    width: 60%;
    float: right;
}
.management .split-view table td {
    vertical-align: top;
}
.management .split-view .button {
    font-size: 0.9em;
}
.management table .input-wrapper button.button {
    border: none;
    font-size: inherit;
    padding: 0.5em;
    border-radius: 0.2em;
}
.management .form-cell {
    padding: 0 0.5em;
}
.management .form-cell .input-wrapper {
    padding: 0.75em 0;
}
.management .table-input {
    position: relative;
}
.management .edit-table td span {
    width: 100%;
}
.management .edit-table td span.cancel {
    padding-top: 0.8em;
}
.management table.group-label .input-wrapper {
    padding: 0.2em;
}
.management table .input-wrapper.inline {
    display: inline-block;
}
.management select.warning {
    color: #cc7a00;
    border: 1px solid #cc7a00;
}
.management .input-wrapper {
    position: relative;
    padding: 0.75em 0;
}
.management .input-wrapper input:disabled {
    color: var(--black30);
    border-color: var(--black30);
}
.management .input-wrapper input:disabled + label {
    color: var(--black30);
}
.management.categories .layout-cell {
    width: 25%;
}
.management .group-edit .layout-cell {
    width: 33%;
}
.management .user-table th a {
    text-decoration: none;
    color: var(--black20);
}
.management .user-table th a.active {
    color: #fff;
}
.management .user-table {
    table-layout: fixed;
}

.management .user-table tbody::before {
    content:"@";
    display:block;
    line-height:20px;
    text-indent:-99999px;
}
.management .user-table tr {
    margin: 5px 0;
}
.management .user-table .heady {
    height: 100%;
}
.management .button.bt {
    width: unset !important; 
    padding: 5px !important; 
    margin-bottom: 2px;
}
.groupmanagement thead {
    position: sticky;
    top: 30px;
    z-index: 999;
}
.groupmanagement table {
    border-spacing: 0;
}
.groupmanagement th a {
    text-decoration: none;
    color: var(--black20);
}
.thead-sec th {
    background-color: var(--area);
}
.filter-bar button:hover {
    background-color: var(--red70);
}
.js-edit {
    border-radius: 0.2em;
    background-color: #ffffff;
    overflow: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.js-edit .head {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 0.3em;
    padding-bottom: 0;
}
.js-edit .tabber {
    padding: 0.5em;
    cursor: pointer;
}
.js-edit .tabber {
    background-color: var(--red100);
    color: #ffffff;
}
.js-edit .tabber.active {
    background-color: #ffffff;
    color: var(--red100);
    font-weight: bold;
}
.js-edit .filter-bar {
    grid-column: 1/-1;
    padding: 0 1em;
    margin: 1em;
    text-align: right;
    background-color: #ffffff;
}
.js-edit h4 {
    padding: 0.5em 1em;
}
.js-edit .body {
    padding: 0.5em;
    background-color: #fff;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 1em;
    display: none;
    width: 100%;
    box-sizing: border-box;
}
.js-edit .body .top {
    grid-column: 1/-1;
}
.js-edit .body.active {
    display: grid;
}
.js-edit .selected .selection-wrapper, .js-edit .options .option-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 0.5em;
    grid-column-gap: 0.5em;
    margin-bottom: auto;
    padding: 0.5em;
}
.js-edit .options .option-wrapper {
    grid-template-columns: 1fr 1fr;
}
.js-edit .selected.active-drag {
    border-radius: 0.2em;
    background-color: var(--black10);
}
.js-edit .user-wrapper {
    padding: 0.5em;
    background-color: #fff;
    border-radius: 0.2em;
    border: 1px solid var(--black20);
    position: relative;
}
.js-edit .trash-form {
    position: absolute;
    top: 0.2em;
    right: 0.2em;
}
.js-edit .manual-name {
    word-break: break-all;
}
.js-edit .options table td, .js-edit .selected table td {
    border-bottom: none;
}
.js-edit .options table tr td:first-child, .js-edit .selected table tr td:first-child {
    color: var(--black40);
}
.auth .background-box {
    background-image: url(/images/auth.jpg?cc6ea0d85c92cbd2f5c72fb2b4d9a8d0);
    filter: brightness(0.5) blur(2px);
}
.content-wrapper {
    padding: 0;
    box-sizing: border-box;
}

.page-header {
    padding: 0.5em;
    position: relative;
    margin: 0 0.5em;
    margin-top: 100px;
    top: -55px;
    margin-bottom: -40px;
}

.contact-header{
    padding: 0.5em;
    position: relative;
    margin: 0 0.5em;
    margin-top: 100px;
    margin-bottom: -40px;
    font-family: boldbrusafont;
    font-size: 1.2em;
}

.contact-header h2{
    padding-top: 100px;
}
hr{
    width: 100%;
    height: 5px;
    background-color: #be0000;
}
.page-header.noimg {
    top: -80px;
    margin-bottom: -90px;
}
.page-header-m {
    max-width: var(--limit-m) !important;
    margin: auto;
    margin-top: 100px;
    margin-bottom: -25px;
    position: relative;
    top: -45px;
    padding: 0.5em;
    color: #ffffff !important;
}
.page-header.bright h1, .page-header.bright h2, .page-header-m.bright h1, .page-header-m.bright h2 {
    color: #ffffff;
}
.page-header h1 {
    text-align:left;
}
.page-header .toolbar {
    position: absolute;
    right: 0;
    bottom: 0;
}
.page-header .toolbar .button-list {
    padding: 0.5em 0;
}
.auth-form form {
    max-width: 610px;
    margin: auto;
    border-radius: 0.2em;
}
#login-form form {
    width: 650px;
}
.auth-form .links a {
    display: block;
    margin: 0.5em 0;
    font-size: 0.8em;
    color: var(--black40);
}
.switch-field {
	display: flex;
	margin-bottom: 36px;
	overflow: hidden;
    margin: auto;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-field label {
	background-color: #ffffff;
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 8px 16px;
	margin-right: -1px;
	border: 1px solid var(--black20);
	transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: var(--black20);
	box-shadow: none;
}

.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}
.add-button {
    text-align: left;
    padding: 0.5em 0;
}
.button {
    padding: 0.5em;
    display: inline-block;
    color: #fff;
    background: var(--red100);
    border-radius: 0.2em;
    text-decoration: none;
}
.file-dropzone {
    display: block;
    height: 100%;
    border: 3px dashed var(--black40);
    background-color: var(--black5);
    position: relative;
}
.file-dropzone label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3em;
    right: 3em;
}
.file-dropzone .no-script {
    text-align: center;
}
.file-dropzone .no-script > *{
    font-size: 0.8em;
    display: inline-block;
    color: var(--black30);
}
.input-wrapper.files {
    border-radius: 3px;
    background-color: var(--black10);
    padding: 1em;
}
#logout-form {
    padding: 0.5em;
    border: none;
}

.side-note {
    padding-top: 5px;
    font-family: brusafont;
    font-size: 12px;
}
.form-wrapper.verify-email {
    display: block;
    background-color: #ffffff;
    max-width: 600px;
    margin: auto;
    border-radius: 3px;
    padding: 2em;
}
.form-wrapper.verify-email form {
    border: none;
}


.table {
    display: table;
}
.row {
    display: table-row;
}
.cell {
    display: table-cell;
}

.guest-background, .login-image {
    position: fixed;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
    background-image: url(../img/bg/005_CROP_BRUSA-HQ-Buchs_landscape-01-01.jpg);
    background-size: cover;
    background-color: var(--black100);
    z-index: -3;
    filter: brightness(0.7) blur(5px);
}

.feedback-box {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    pointer-events: none;
    opacity: 0;
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
    max-width: 720px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 0.3em;
    -webkit-animation: 7s message-fade;
            animation: 7s message-fade;
}
.feedback-box .message {
    min-width: 580px;
    padding: 1em;
    border-radius: 0.3em;
}
.feedback-box .message p {
    margin: 0;

    text-align: center;
}
.feedback-box .message.success {
    background-color: #84e184;
    box-shadow: inset 0px 0px 15px #c1f0c1;
}
.feedback-box .message.success p {
    color: #1e7b1e;
}
.feedback-box .message.error {
    background-color: #ff6666;
    box-shadow: inset 0px 0px 15px #ffb3b3;
}
.feedback-box .message.error {
    color: #ffffff;
}
.container-n {
    background-color: #fff;
    height: 100%;
}
.container {
    background-color: #fff;
    border-radius: 3px;
    display: inline-block;
    box-sizing: border-box;
}
.container.full {
    width: 100%;
}
span.warning {
    background-color: #cc7a00;
    color: #fff;
    padding: 0 3px;
}
.delete-form {
    max-width: 600px;
    margin: 0 0.5em;
}
.products .layout-table-space {
    width: 100%; 
    padding-bottom: 3em
}
.products .td-border {
    border-top: 1px solid gray;
}
.products .theader {
    color: gray;
}
.products .td-end-spacer {
    height: 20px;
}
.float-right {
    float: right !important;
}
.layout-table-spacer {
    margin-bottom: 25px; 
    margin-top: 25px;
}
.layout-table {
    width: 100%;
    padding: 0 0.5em;
}
.layout-table h3 {
    background-color: var(--red100);
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 3px;
    border-bottom: 0;
}
.layout-table .layout-cell {
    border-bottom: none;
    vertical-align: top;
    width: 50%;
}
.layout-table .layout-img {
    border-bottom: none;
    width: 45%;
    text-align: center;
}

.layout-table .layout-img h1 {
    color: var(--red100);
}

.layout-table table {
    width: 100%;
}
.container.full form {
    margin: 0;
}
.centerizer .delete-form {
    margin: auto;
}
.centerizer {
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.delete-form {
    text-align: left;
    margin: 0;
}
.input-wrapper .button {
    box-sizing: border-box;
    width: 100%;
}
.input-wrapper.checker {
    margin: 1em 0;
}
.trash-form {
    padding: 0;
    border: none;
    display: inline-block;
    text-align: right;
}
.trash-form .input-wrapper {
    padding: 0;
    min-width: 0;
    text-align: right;
    display: inline-block;
}
@-webkit-keyframes message-fade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes message-fade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
button.button {
    cursor: pointer;
    border: none;
    font-size: inherit;
    padding: 0.5em;
    border-radius: 0.2em;
}
.w-100 {
    width: 100%;
}
.button.edit {
    background-color: #cc7a00;
}
.button.cancel {
    background-color: var(--black40);
}
.button.success {
    background-color: #009933;
}
.button.disabled {
    opacity: 0.5;
}
.trash-button {
    
}
form.list-form {
    display: block;
    margin-right: auto;
    padding: 0;
    border: none;
}
form.list-form .input-wrapper {
    display: inline-block;
}

.filter-bar {
    /* background-color: var(--black30); */
    border-radius: 2px;
    margin: 0.5em;
    position: relative;
}
.filter-bar ul {
    list-style-type: none;
    display: block;
    margin: 0;
    padding: 0.5em;
    padding-left: 0.5em;
}
.filter-bar ul li {
    background-color: var(--black30);
    display: inline-block;
    padding: 3px 8px;
    border-radius: 2px;
    border-bottom: none;
}
.filter-bar ul li.active{
    background-color: var(--red100);
}
.filter-bar ul li p {
    display: inline-block;
    margin: 0;
    padding: 0.5em 0;
    color: var(--black20);
}
.filter-bar ul li a {
    display: inline-block;
    padding: 0.5em 0;
    color: #fff;
    text-decoration: none;
}
.filter-bar ul li:hover {
    background-color: var(--red100);
    box-shadow: 0px 0px 5px var(--red70);
}
.filter-bar ul li.search {
   position: absolute;
   right:0 ;
   top: 0;
   background-color: #fff;
}
.filter-bar .search:hover {
    background-color: transparent;
    box-shadow: none;
    
}
table th {
    position: relative;
}
table th .label {
    grid-row: 2;
}
table th .search-toggle {
    color: #ffffff;
    margin-left: auto;
    grid-row: 2;
    cursor: pointer;   
}
table th .search-toggle:hover {
    color: var(--red70);
}
table th .search-toggle > i {
    text-align: right;
}
/* table th .search-toggle:hover .search-box {
    display: block;
    
} */
table th .search-toggle .search-box {      /*suche*/
    display: none;
    position: absolute;
    left: 0;
    white-space: nowrap;
    min-width: 200px;
    padding: 0.5em 0;
    z-index: 10;
}
table th .search-box form {
    padding: 0 0.5em;
    background-color: #ffffff;
    box-shadow: 0px 0px 5px var(--black70);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 0.2em;
}

table th .heady {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr auto 1fr;
    grid-column-gap: 1em;
}
table th .heady > * {
    vertical-align: middle;
}
table th .heady .sort-indicators {
    grid-row: 1/-1;
}
table th .heady .sort-indicators a {
    display: block;
    z-index: 3;
}
table th .heady .sort-indicators a:last-child {
    margin-top: -0.3em;
}
table th .search form {
    background-color: transparent;
    white-space: nowrap;
}
table th .search form .input-wrapper {
    margin: -0.75em 0;
}
table th .search form input {
    background-color: var(--black40);
}
table th .search form label {
    background-color: var(--black40) !important;
    color: #fff !important;
}
#search-form {
    background-color: transparent;
}
#search-form input:hover {
    box-shadow: 0px 0px 5px var(--red70);
}
#search-form input + label {
    /* background-color: var(--black30); */
}
a.button {
    font-size: 1em;
}
.modal-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    background-color: #0009;
}
.modal {
    background-color: #fff;
    display: block;
    padding: 1em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
}
.modal .head {

}
.modal .head h2 {
    margin: 0;
    padding: 0.5em;
    padding-top: 0;
}
.modal .close {
    position: absolute;
    top: 1em;
    right: 1em;
}
.modal .close a {
    font-size: 1.3em;
    color: var(--black40);
    cursor: pointer;
    padding: 0 0.2em;
    padding-bottom: 0.1em;
    border-radius: 2px;
}
.modal .close a:hover {
    color: #fff;
    background-color: var(--red100);
}

.account_settings_table td{
   padding: 0.4em;
   border-collapse: collapse;

}

.font{
    font-weight: 600;
}
.account {
    max-width: var(--limit-m);
    margin: auto;
}
.account .background-box {
    background-image: url(/images/profile_bg.jpeg?f3e25835e08f67fb23ec7672323363c6);
    filter: brightness(1.2) blur(2px);
}
.account .layout-table > tbody > tr > td, .account .layout-table > tr > td {
    width: 50%;
    vertical-align: top;
}
.account .layout-table table {
    border-collapse: collapse;
    width: 100%;
}
.account .layout-table table tr td {
    padding: 0.5em 1em;
    vertical-align: middle;
    color: var(--black80);
}
.account.show .layout-cell:first-child {
    padding-right: 1em;
}
.account.show .layout-cell:nth-child(2) {
    padding-left: 1em;
}
.account.show form {
    width: 100%;
    box-sizing: border-box;
    border: none;
}
.account .layout-table table tr td:first-child {
    color: var(--black40);
    padding-right: 1em;
}
.account .layout-table table tr:last-child td {
    border-top: 2px solid var(--black20);
    text-align: right;
}
.account.show .layout-table table tr:last-child td {
    border-top: none;
    text-align: left;
}
.account.show .group-table td:first-child {
    white-space: nowrap;
}
.account.show .th-left {
    padding-top: .5em; 
    text-align: left;
    padding-left: 1em;
}
.account.show .list-form {
    text-align: right;
}
.account.show .list-form.add-group {
    border-top: 2px solid var(--black20);
    border-radius: 0;
    text-align: right;
}
.account.show .list-form .input-wrapper {
    display: table-cell;
    width: 50%;
    padding: 0.75em 0.5em;
}
.account.show input[type="submit"] {
    border: 1px solid var(--red100);
}
.account .stats-scroll {
    max-height: 22em;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 1em;
}
.account .stats-scroll thead {
    background-color: var(--black20);
    position: sticky;
    top: 0;
}
.account .stats-scroll::-webkit-scrollbar {
    width: 2px;
    position: absolute;
    padding: 0.5em 0;
}
.account .stats-scroll th {
    padding: 0.5em 1em;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    max-height: 100vh;
}

body {
    font-family: brusafont;
    display: table;
}
header, main, footer {
    display: table-row;
}
main > div {
    display: table-cell;
    height: 100%;
}
main .content-wrapper {
    max-width: var(--limit-m);
    margin: auto;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: boldbrusafont;
}
h1, h2 {
    color: var(--text);
}
h3, h4 {
    color: var(--black54)
}
h5, h6 {
    font-size: 1.2em;
    text-align: center;
}
.noselect {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.nopointer {
    pointer-events: none;
}
.error {
    max-width: var(--limit-s);
    margin: auto;
}
.error .page-header {
    margin: 0; 
    padding: 0;
    margin-bottom: 0.5em;
}
.error h1 {
    display: block;
    background-color: #ffffff;
    color: var(--red100) !important;
    border-radius: 4px;
    padding: 0.2em;
}
.error .background-box {
    background-color: #ffffff;
}
.error .error-container img {
    border: 1px solid #ffffff;
    border-radius: 0.2em;
    width: 100%;
    height: auto;
    padding: 50px 100px 50px 100px;
    box-sizing: border-box;
}
.error .error-container a {
    display: block;
    text-decoration: none;
    background-color: #ffffff;
    color: var(--red100);
    padding: 0.5em;
    border-radius: 0.2em;
    font-size: 1em;
    margin-top: 0.5em;
}
.btn-export{
    background-color: #be0000;
    border: none;
    color: white;
    padding: 3px 6px;
    margin: 20px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 3px;
    text-decoration: none;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2?b71748ae4f80ec8c014def4c5fa8688b);
}
@font-face {
    font-family: boldserrat;
    src: url(/fonts/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2?7dbcc8a5ea2289d83f657c25b4be6193);
}
@font-face {
    font-family: brusafont;
    src: url(/fonts/GothamBook.ttf) format("truetype");
}
@font-face {
    font-family: boldbrusafont;
    src: url(/fonts/GothamBlack.otf) format("truetype");
    font-weight: bold;
}

b {
    font-family: boldbrusafont;
}

.statistic {
    max-width: var(--limit-m);
    margin: auto;
}
.container-chart {
    width: calc(100% - 5px);
}

.statistic .content-wrapper {
    padding: 0;
}

.statistic .background-box {
    background-image: url(../img/bg/008_CROP_BRUSA_Sennwald_Productionline-01.jpg);
    filter: brightness(0.5) blur(2px);
}


.statistic form.list-form .input-wrapper {
    min-width: 0;
    vertical-align: middle;
}
.statistic .active-group .list-form .input-wrapper {
    padding: 0.2em;
}
.statistic .active-group .list-form .input-wrapper:last-child {
    float: right;
}

.statistic .content-wrappers {
    background-color: #fff;
    padding: 0.5em;
    border-radius: 3px;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;

}
.communications {
    max-width: var(--limit-m);
    margin: auto;
}
.communications .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2em;
    padding: 2em;
}
.communications h3 {
    background-color: var(--red100);
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 3px;
    border-bottom: 0;
}
.communications .request-wrapper {
    vertical-align: top;
    margin-bottom: auto;
}
.communications .message-history {
    vertical-align: top;
    margin-bottom: auto;
    padding: 1em 0;
    max-height: 800px;
    overflow-y: auto;
}
.communications .message-history .message {
    display: block;
    border: 1px solid #ccc;
    padding: 0.5em;
    border-radius: 0.5em;
    margin-bottom: 0.5em;
}
.communications .message-history .message .header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 0.7em;
    border-bottom: 1px solid #ccc;
}
.communications .message-history .message .header p:last-child {
    text-align: right;
}
.communications .message-history .message p {
    margin: 0;
}
.communications .message-history .message > p {
    padding: 0.5em 0;
}
.communications .message-history .message.viewer {
    margin-right: 10em;
    box-shadow: inset 0px 0px 25px var(--converter);
    border: 1px solid var(--converter);
    background-color: #eee;
}
.communications .message-history .message.admin {
    margin-left: 10em;
    box-shadow: inset 0px 0px 25px var(--red100);
    border: 1px solid var(--red100);
    background-color: #eee;
}
.list-form .filter-reset {
    display: inline-block;
    background-color: var(--red100);
    color: #ffffff !important;
}
nav .notification-info {
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    font-size: 0.7em;
    padding: 0.3em;
    width: 1em;
    height: 1em;
    text-align: center;
    border-radius: 100%;
    background-color: var(--red100);
    color: #fff;
}
nav li:hover .notification-info {
    color: var(--red100);
    background-color: #fff;
}
.notifications-wrapper.module {
    padding: 0.5em;
}
.notifications-wrapper.module p {
    text-align: left;
    padding: 1em;
    color: var(--black54);
    padding-left: 1.5em;
    display: block;
    font-size: 0.8em;
    z-index: +1;
}
.notifications-wrapper.module a {
    padding: 0.2em 0;
}
.notifications-wrapper.module .list-form {
    padding: 0;
}
.notifications-wrapper.module .drop-notification {
    display: grid;
    grid-template-columns: 1fr auto;
}
.notifications-wrapper.module .drop-notification a {
    padding: 1em;
}

.dashboard ::-webkit-scrollbar {
    width: 2px;
    position: absolute;
    padding: 0.5em 0;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #be0000; 
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #be0000; 
}

.reset-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    text-decoration: none;
    color: #fff;
    padding: 0.5em !important; 
    /* display: inline-block; */
    background-color: var(--black40);
    z-index: 9999999999;
}

th a {
    color: var(--black20) !important;
}

th a.active {
    color: #fff !important;
}
