@charset "UTF-8";
/*
    Colors

    markup:
    <p style="background-color: #f1f1f1">Primary background color and link hover background color: #f1f1f1</p>
    <p style="background-color: #002c65; color: #aaa;">Navigation background color: #002c65</p>
    <p style="background-color: #212b46; color: #aaa;">Sub navigation background color: #212b46</p>
    <p style="background-color: #333333; color: #aaa;">Primary text color: #333333</p>
    <p style="background-color: #00B2CF">Accent color: #00B2CF</p>
    <p style="background-color: #cccccc">Tab background and hover color: #cccccc</p>
    <p style="background-color: #e7edf1">Border color: #e7edf1</p>
    <p style="background-color: #e6e6e6">Input border color: #e6e6e6</p>
    <p style="background-color: #999999">Placeholder color: #999999</p>

    Styleguide 1.3
*/
/*CYMK(70,14,16,73), as per client*/
/*CYMK(70,14,16,73), as per client*/
/*
    Grid

    <h2>This application uses bootstrap grid</h2>
    <p>Below is the visual representation of the grid. For more information check: <a href="http://getbootstrap.com/css/#grid" target="_blank">Grid system</a></p>
    <p>If you are setting up a new page, make sure to use "container-fluid" class on your top container</p>

    markup:
        <div class="row">
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
          <div class="col-md-1">.col-md-1</div>
        </div>
        <div class="row">
          <div class="col-md-8">.col-md-8</div>
          <div class="col-md-4">.col-md-4</div>
        </div>
        <div class="row">
          <div class="col-md-4">.col-md-4</div>
          <div class="col-md-4">.col-md-4</div>
          <div class="col-md-4">.col-md-4</div>
        </div>
        <div class="row">
          <div class="col-md-6">.col-md-6</div>
          <div class="col-md-6">.col-md-6</div>
        </div>

    sg-wrapper:
    <div class="demo-container-grid">
        <div class="container-fluid">
            <sg-wrapper-content/>
        </div>
    </div>

    Styleguide 2.1
*/
@import url("//netdna.bootstrapcdn.com/bootstrap/3.0.0-rc2/css/bootstrap-glyphicons.css");
.demo-container-grid .row div {
  border: 1px solid #000;
  padding: 10px 5px;
}

@media screen and (min-width: 768px) {
  .new-task [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.form-group .input-group[class*="col-"],
.form-group .controls[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/*
    Typography

    <p>Application uses Work Sans in Light, Normal and Bold versions. The text color hex is 333333</p>

    markup:
    <h1>h1 title</h1>
    <h2>h2 title</h2>
    <h3>h3 title</h3>
    <h4>h4 title</h4>
    <h5>h5 title</h5>
    <h6>h6 title</h6>
    <p>Paragraph text</p>
    <a href="#">Link in the wild</a>
    <span>Span</span>
    <ul>
        <li>List item</li>
        <li>List item</li>
        <li>List item</li>
    </ul>

    Styleguide 1.1
*/
h4, h5, h6, p, a, li, td, th, dt, dd, body, tbody {
  font-family: 'myriad-pro', 'PT Sans', 'Segoe UI', 'Work Sans', sans-serif;
  font-display: optional;
  color: #333333;
}

h1, h2, h3 {
  font-family: 'myriad-pro', 'PT Sans', 'Segoe UI', 'Work Sans', sans-serif;
  color: #153b3a;
  /*CYMK(70,14,16,73), as per client*/
  font-display: optional;
}

h1 {
  font-size: 1.923em;
  font-weight: 300;
}

h1.bold {
  font-weight: 900;
}

h2 {
  font-size: 1.7em;
  font-weight: 250;
}

h2.bold {
  font-weight: 850;
}

h3 {
  font-size: 1.477em;
  font-weight: 200;
}

h3.bold {
  font-weight: 800;
}

.sg.sg-top-nav-menu > li > a span {
  color: #fff;
}

.sg.sg-section-header h1 span {
  color: #E4E4E4;
}

.small-text {
  font-size: 11px;
}

/*
    Icons

    <p>Application uses <a href="http://getbootstrap.com/components/#glyphicons" target="_blank">Glyphicons</a> from Bootstrap.</p>
    <p>Icons can be displayed with an empty <code>i</code> tag with class "glyphicon" and a class refering to the particular icon</p>
    <p>Classes can be found on <a href="http://getbootstrap.com/components/#glyphicons" target="_blank">Bootstrap's</a> page. See example markup below</p>

    markup:
    <i class="glyphicon glyphicon-plus"></i>

    Styleguide 1.2
*/
.task-no {
  padding: 4px 10px;
  border-radius: 5px;
}

.search-tags {
  margin: 4px 10px;
}

.filter-tag {
  padding: 4px 10px 4px 4px;
  margin: 10px 10px 4px 10px;
  color: #406273;
  font-size: 12px;
  border-radius: 5px;
  transform: translateY(-50%);
  background: #ABCDEF;
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .pull-xs-left {
    float: left;
  }
  .pull-xs-right {
    float: right;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pull-sm-left {
    float: left;
  }
  .pull-sm-right {
    float: right;
  }
}

@media (min-width: 992px) and (max-width: 1249px) {
  .pull-md-left {
    float: left;
  }
  .pull-md-right {
    float: right;
  }
}

@media (min-width: 1250px) {
  .pull-lg-left {
    float: left;
  }
  .pull-lg-right {
    float: right;
  }
}

div#product-page ul:not(.ui-tabs-nav):not(.breadcrumb):not(.dropdown-menu.inner) {
  padding-left: 20px;
  list-style: none;
}

div#product-page ul:not(.ui-tabs-nav):not(.breadcrumb):not(.dropdown-menu.inner) > li:before {
  content: '◼';
  color: #153b3a;
  display: inline-block;
  width: 2em;
  margin-left: -1em;
  font-size: 8px;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: #4b7680;
  font-size: 13px;
}

body main,
body aside {
  padding-top: 34px;
}

body .container-fluid {
  width: 100%;
  max-width: 1280px;
}

body .page-title {
  margin-top: 0;
  margin-bottom: 26px;
  text-align: left;
}

#wrap {
  min-height: 100%;
  height: auto;
  margin: 0 auto -60px;
  padding: 0 0 60px;
  background-color: white;
}

body.front-page #wrap, body.front-page #footer {
  background-color: #F4F4F6;
}

@media screen and (max-width: 991px) and (max-height: 500px) {
  #front-page {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  #front-page {
    display: flex;
    flex-direction: column;
  }
}

.pointer:hover {
  cursor: pointer;
}

@media screen and (max-width: 445px) {
  body {
    padding-top: 100px;
  }
}

@media screen and (min-width: 446px) and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  body main, body aside {
    padding-top: 8px;
  }
  #wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -48px;
    padding: 0 0 48px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  body {
    padding-top: 60px;
  }
  body main, body aside {
    padding-top: 0;
  }
  body .page-title {
    margin-bottom: 10px;
    text-align: center;
  }
}

@media screen and (min-width: 992px) {
  body main,
  body aside {
    padding-top: 75px;
  }
  body .page-title {
    margin-bottom: 10px;
  }
  body .new-task .page-title {
    margin-bottom: 26px;
  }
  body .dit-overblik .page-title {
    margin-bottom: 20px;
    margin-left: 34px;
  }
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.red {
  color: red;
}

@media screen and (max-width: 991px) {
  .modal-dialog {
    top: 100px;
  }
}

/*
Header

Site header - works with <code>header</code> tag. Use only once per page

.site-header    - The site header

markup:
<header class="site-header">
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-12 col-sm-12 col-xs-12">
                <nav class="navbar navbar-default">
                    <div class="container-fluid">
                        <div class="navbar-header">
                            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
                                <span class="icon-bar"></span>
                                <span class="icon-bar"></span>
                                <span class="icon-bar"></span>
                            </button>
                            <div class="navbar-brand">
                                <img src="../frontend/images/expandit_logo.png" alt="">
                            </div>
                        </div>
                        <div class="collapse navbar-collapse row">
                            <ul class="nav navbar-nav list-unstyled">
                                <li class="active">
                                    <a href="/index.html">LINK</a>
                                </li>
                                <li><a href="#">LINK</a></li>
                                <li>
                                    <a href="/opgaver.html">LINK</a>
                                </li>
                                <li>
                                    <a href="#">
                                        <img src="../frontend/images/cart.png">
                                        <span class="cart-count">X</span>
                                    </a>
                                </li>
                            </ul>
                        </div>
                    </div>
                </nav>
            </div>
        </div>
    </div>
</header>

Styleguide 2.2

*/
.site-header {
  background-color: #0a4554;
  position: relative;
}

@media screen and (min-width: 992px) {
  .site-header {
    height: 116px;
  }
}

.site-header .container-fluid {
  position: relative;
  margin: 0 auto;
  width: 1280px;
  max-width: 100%;
}

.site-header .container-fluid .row .logo {
  padding-top: 30px;
  margin-left: 62px;
}

.site-header #topInfo {
  margin-top: 10px;
  background-color: lightgray;
  text-transform: uppercase;
  justify-content: space-around;
  font-size: 14px;
  font-weight: 600;
  padding: 0 150px;
}

.site-header #topInfo > div {
  margin: 0 10px;
  padding: 10px 0;
}

.site-header #topInfo > div.blue-text {
  color: #153b3a;
}

.site-header #topInfo > div.black-text {
  color: #000000;
}

@media print {
  #footer {
    display: none;
  }
}

@media (min-width: 768px) {
  #footer {
    background: white;
    bottom: 0;
    color: #fff;
    line-height: 1.5;
    width: 100%;
  }
  #footer > p {
    color: #666;
  }
  #footer .navbar-nav {
    background-color: lightgray;
  }
  #footer .navbar-nav > li {
    border-left: solid 1px white;
    border-right: solid 1px white;
  }
  #footer .navbar-nav > li:first-child {
    border-left: none;
  }
  #footer .navbar-nav > li:last-child {
    border-right: none;
  }
  #footer .navbar-nav > li.footer-social {
    padding-left: 8px;
  }
  #footer .navbar-nav > li.footer-social a {
    display: inline-block;
    padding: 12px 7px 13px 8px;
  }
}

@media (max-width: 767px) {
  #footer {
    background-color: lightgray;
    bottom: 0;
    color: #ffffff;
    line-height: 1.8;
    padding: 15px 0 15px;
    width: 100%;
  }
  #footer > p {
    color: #ffffff;
  }
}

#CompanyInfo {
  color: #666;
}

/*
    Tables

    <p>The table takes the width of its container, if nothing else specified.<br>Set width of columns using the grid (See '2 Layout' -> '2.1 Grid')</p>

    markup:
    <table class="table">
        <thead>
            <tr>
                <th colspan="4">TABLE NAME</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th scope="row" class="col-md-3">
                    <span>VALUE</span>
                </th>
                <td class="col-md-3">
                    <date>VALUE</date>
                </td>
                <td class="col-md-3">
                    <span>VALUE</span>
                </td>
                <td class="col-md-3">
                    <img src="../frontend/images/filetype_pdf2.png">
                </td>
            </tr>
            <tr>
                <th scope="row" class="col-md-3">
                    <span>VALUE</span>
                </th>
                <td class="col-md-3">
                    <time>VALUE</time>
                </td>
                <td class="col-md-3">
                    <span>VALUE</span>
                </td>
                <td class="col-md-3">
                    <img src="../frontend/images/filetype_pdf2.png">
                </td>
            </tr>
            <tr>
                <th scope="row" class="col-md-3">
                    <span>VALUE</span>
                </th>
                <td class="col-md-3">
                    <time>VALUE</time>
                </td>
                <td class="col-md-3">
                    <span>VALUE</span>
                </td>
                <td class="col-md-3">
                    <img src="../frontend/images/filetype_pdf2.png">
                </td>
            </tr>
        </tbody>
    </table>

    sg-wrapper:
    <div class="row">
        <div class="col-md-12 col-sm-12 col-xs-12">
            <div class="table-responsive table-template">
                <sg-wrapper-content/>
            </div>
        </div>
    </div>

    Styleguide 3.5
*/
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-justify {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-justify > li {
  flex-grow: 1;
}

.flex-bottom {
  align-self: flex-end;
  vertical-align: bottom;
}

.aligner {
  display: grid;
  min-height: 170px;
  align-items: flex-end;
  justify-content: flex-end;
}

.aligner-item {
  max-width: 100%;
}

.aligner-item-top {
  align-self: flex-start;
}

.aligner-item-bottom {
  align-self: flex-end;
}

.product-table-template {
  border-top: 0;
  width: 80%;
}

.product-table-template table {
  margin-bottom: 0;
  width: 100%;
  max-width: none;
  background: #FFF;
}

.product-table-template table tbody tr td {
  border-top-width: 0px;
  border-color: #ffffff;
  padding: 0px 8px 0px 8px;
  /*&:last-child {
                        vertical-align: top;
                    }*/
}

.product-table-template table tbody tr td img {
  max-height: 170px;
}

.product-table-template table tbody tr td:nth-last-child(2) {
  vertical-align: top;
}

.product-table-template table tbody tr td .product-list-image-container {
  min-height: 110px;
}

.product-table-template table tbody tr td .input-group[class*="col-"] {
  padding-left: 0px;
}

@media screen and (min-width: 992px) {
  .product-table-template table tbody tr td .input-group[class*="col-"] {
    padding-right: 15px;
  }
}

.product-table-template table tbody tr td.product-info.product-id, .product-table-template table tbody tr td.product-info.product-name {
  padding-top: 7px;
  padding-bottom: 7px;
}

.product-table-template table tbody tr td > div {
  padding-left: 0px;
}

.product-table-template table tbody tr td > div.favorite-btn {
  padding-top: 4px;
}

div#BuyAgain .product-table-template {
  width: 100%;
}

.table-template {
  margin-bottom: 48px;
  background: #FFF;
  border-radius: 5px;
  overflow-x: hidden;
}

.table-template table {
  margin-bottom: 0;
  width: 100%;
  max-width: none;
  background: transparent;
  border: none;
}

.table-template table thead tr th {
  padding-left: 13px;
  padding-right: 20px;
  height: 44px;
  background: #cccccc;
  line-height: 1em;
  vertical-align: middle;
  border-color: #e7edf1;
  border-bottom-color: #EEF0F2;
  border-bottom-width: 1px;
}

.table-template table thead tr th:first-child {
  border-left: none;
}

.table-template table thead tr th:last-child {
  border-right: none;
}

.table-template table thead tr .sorting_disabled {
  background-color: white;
}

.table-template table tbody tr:hover {
  background: #cccccc;
}

.table-template table tbody tr:last-child {
  border-bottom: 1px solid #e7edf1;
}

.table-template table tbody tr th {
  vertical-align: middle;
  position: relative;
}

.table-template table tbody tr th > * {
  position: relative;
  left: 36px;
}

.table-template table tbody tr td {
  vertical-align: middle;
  position: relative;
  padding: 13px;
  border-color: #e7edf1;
}

.table-template table tbody tr td > * {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
}

.table-template table tbody tr td:hover .task-no {
  background: #fff;
}

.table-template table tbody tr td.task-no a {
  text-decoration: underline;
}

.table-template .table-buttons {
  padding: 25px 30px;
}

.table-template .table-buttons .btn-dark {
  margin-right: 6px;
}

@media screen and (max-width: 767px) {
  .table-template .table-buttons .btn-dark {
    margin-bottom: 6px;
  }
}

.table-template.__task-table.clickable tbody tr {
  cursor: pointer;
}

.table-template.__task-table table#invoiceTable tbody tr, .table-template.__task-table table#ledgerEntriesTable tbody tr {
  cursor: auto;
}

.table-template.__task-table table#invoiceTable tbody tr .fa-truck, .table-template.__task-table table#ledgerEntriesTable tbody tr .fa-truck {
  color: #ffffff;
}

.table-template.__task-table table {
  /*width: 1280px;*/
  overflow: hidden;
}

.table-template.__task-table table tbody tr:hover .task-status p.ended {
  background: #FFF;
}

.table-template.__task-table table tbody tr td.task-serial-number {
  width: 150px;
}

.table-template.__task-table table tbody tr td.task-date {
  width: 280px;
  border-left: none;
}

.table-template.__task-table table tbody tr td.task-date time {
  font-size: 1em;
}

.table-template.__task-table table tbody tr td.task-short-date {
  width: 100px;
  border-left: none;
}

.table-template.__task-table table tbody tr td.task-status {
  height: 1px;
  line-height: 0;
  padding: 0;
  top: 2px;
  white-space: nowrap;
}

.table-template.__task-table table tbody tr td.task-status div {
  display: table;
  height: 100%;
  position: relative;
  width: 100%;
}

.table-template.__task-table table tbody tr td.task-status div.new {
  border-left: 4px solid #d7f4fd;
}

.table-template.__task-table table tbody tr td.task-status div.running {
  border-left: 4px solid #81e455;
}

.table-template.__task-table table tbody tr td.task-status div.ended {
  border-left: 4px solid #0a8fe9;
}

.table-template.__task-table table tbody tr td.task-status div.incomplete {
  border-left: 4px solid #f79646;
}

.table-template.__task-table table tbody tr td.task-status div.on-hold {
  border-left: 4px solid #e6e250;
}

.table-template.__task-table table tbody tr td.task-status div.appointed {
  border-left: 4px solid #8a8a8a;
}

.table-template.__task-table table tbody tr td.task-status div p {
  display: table-cell;
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px 0 10px;
  vertical-align: middle;
}

@-moz-document url-prefix() {
  .table-template.__task-table table tbody tr td.task-status {
    height: 100%;
    top: 0;
  }
}

.table-template.__task-table table tbody tr td.task-referencenr .document-number {
  padding-top: 5px;
}

.table-template.__task-table table tbody tr td.task-referencenr .task-no {
  background: #ffffff;
}

.table-template.__task-table table tbody tr td.task-description {
  width: 722px;
}

.table-template.__task-table table tbody tr td.task-description p {
  display: inline;
  font-size: 13px;
  font-weight: 400;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .table-template.__task-table table tbody tr td.task-description p {
    padding-right: 5px;
  }
}

.table-template.__task-table table tbody tr td.task-description .task-no {
  white-space: nowrap;
  transform: translateY(-50%);
  background: #ffffff;
}

.table-template.__task-table table tbody tr td.task-description i.hasAttachment-false, .table-template.__task-table table tbody tr td.task-description i.hasReport-false {
  display: none;
}

.table-template.__task-table table tbody tr td.task-type {
  width: 164px;
  font-size: 13px;
  letter-spacing: 0;
}

.table-template.__task-table table tbody tr td.task-place {
  border-right: none;
  font-size: 13px;
  width: 180px;
}

.table-template.__task-table table tbody tr td.pdf-link {
  width: 50px;
}

.table-template.__task-information-table {
  margin-top: 48px;
}

.table-template.__task-information-table table {
  width: 1280px;
}

.table-template.__task-information-table table tbody tr td {
  border: none;
  border-bottom: 1px solid #e7edf1;
}

.table-template.__task-information-table table tbody tr td.name {
  width: 260px;
}

.table-template.__task-information-table table tbody tr td.name span img {
  position: relative;
  top: -2px;
  margin-right: 12px;
}

.table-template.__task-information-table table tbody tr td.date {
  width: 148px;
}

.table-template.__task-information-table table tbody tr td.description {
  width: 875px;
  white-space: normal;
}

.table-template.__task-files-table table {
  width: 1280px;
}

.table-template.__task-files-table table tbody tr td {
  padding: 0 36px;
  border: none;
  border-bottom: 1px solid #e7edf1;
}

.table-template.__task-files-table table tbody tr td.name {
  width: 240px;
}

.table-template.__task-files-table table tbody tr td.date {
  width: 168px;
}

.table-template.__task-files-table table tbody tr td.description {
  width: 595px;
  white-space: normal;
}

.table-template.__task-files-table table tbody tr td.filename {
  width: 160px;
}

.table-template.__task-files-table table tbody tr td.filetype {
  width: 116px;
}

.table-template.__planned-visits-table {
  margin-bottom: 18px;
}

.table-template.__planned-visits-table table {
  margin-bottom: 38px;
  width: 1280px;
}

.table-template.__planned-visits-table table tbody tr th {
  width: 235px;
}

.table-template.__fulfilled-visits-table table {
  width: 1280px;
}

.table-template.__fulfilled-visits-table table tbody th {
  width: 235px;
}

.table-template.__fulfilled-visits-table table tbody td.date {
  width: 259px;
}

.table-template.__fulfilled-visits-table table tbody td.name {
  width: 240px;
}

.table-template.__product-list-table table th {
  background: #fff;
}

.table-template.__product-list-table table tbody tr:hover {
  background: #fff;
}

.table-template.__product-list-table table tbody tr td > .input-group {
  display: inline-table;
  margin-right: 12px;
}

.subRow {
  margin-left: 0px;
  margin-right: 0px;
}

#MainAddress thead tr th {
  background-color: #fff;
}

#cart-total-list > table tr td.last-column,
th.product-line-total,
td.product-line-total,
th.product-price,
td.product-price,
th.product-discount-amount,
td.product-discount-amount,
th.product-discount-percentage,
td.product-discount-percentage,
th.product-quantity,
td.product-quantity,
td input[type=number] {
  text-align: right;
}

th.product-quantity {
  min-width: 100px;
}

th.product-line-total {
  min-width: 100px;
}

td input[type=number] {
  width: 50px;
}

th.product-discount-percentage,
td.product-discount-percentage {
  width: 100px;
}

@media screen and (min-width: 992px) {
  td.product-line-total-with-button {
    position: relative;
  }
}

.shop-delete-icon {
  color: #8c0033;
  margin-left: 5px;
}

#cart-list .update {
  margin: 0 0 10px;
}

#cart-list td {
  vertical-align: middle;
}

#cart-list td > div {
  margin: 0;
  padding: 0;
}

#cart-list .product-price,
#cart-list .product-discount-amount,
#cart-list .product-discount-percentage,
#cart-list .product-line-total {
  text-align: right;
}

.table .last-column {
  text-align: right;
}

#cart-total-list td:last-child {
  text-align: right;
}

#cart-list table {
  border-bottom: 2px solid #ddd;
}

#cart-total-list {
  top: -1px;
}

.free-text-filter-box.has-feedback > .input-group > .glyphicon {
  top: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #EEF0F2;
}

.table-hover > tbody > tr > td.sum-cell {
  border-bottom-color: black;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-top-color: black;
  border-top-width: 1px;
}

.table-hover > tbody > tr > td.sum-cell.total {
  background-color: #EEF0F2;
}

table.pad20 > tbody > tr > td, table.pad20 > tbody > tr > th {
  padding: 20px;
}

table.pad50 > tbody > tr > td, table.pad50 > tbody > tr > th {
  padding: 50px;
}

table.dataTable img.table-icon {
  max-width: 30px;
  max-height: 30px;
}

/*
    Info box

    <p>The box takes the width of its container, if nothing else specified.<br>Set width of container using the grid (See '2 Layout' -> '2.1 Grid')</p>

    markup:
    <div class="single-info-box task-title">
        <h1 class="page-title">ATP Ejendomme Gothersgade 1-9</h1>
        <span class="task-no">o-096857</span>
        <p class="task-description">Maecenas faucibus mollis interdum. Duis mollis, est non commodo luctus, nisi erat porttitor euismod.</p>
    </div>

    sg-wrapper:
        <div class="col-md-6 col-sm-12 col-xs-12">
        <div class="demo-container--box">
            <sg-wrapper-content/>
        </div>
    </div>

    Styleguide 3.6
*/
.single-info-box {
  margin-bottom: 18px;
  background: #FFF;
  border-radius: 5px;
}

.single-info-box .col-md-6 {
  padding: 0;
}

.single-info-box .col-md-6:first-child {
  border-right: 1px solid #e7edf1;
}

.single-info-box .contact {
  padding: 32px 30px;
}

@media screen and (min-width: 992px) {
  .single-info-box .contact {
    height: 208px;
  }
}

@media screen and (max-width: 991px) {
  .single-info-box .contact {
    padding: 24px 16px;
  }
}

@media screen and (max-width: 767px) {
  .single-info-box .contact {
    border-bottom: 1px solid #e7edf1;
  }
}

.single-info-box .contact h2 {
  margin-top: 0;
  margin-bottom: 33px;
}

.single-info-box .contact p {
  font-size: 1.077em;
}

.single-info-box .contact p .fa {
  color: #00AC65;
  margin-right: 15px;
}

.single-info-box .product {
  padding: 32px 20px;
}

@media screen and (min-width: 992px) {
  .single-info-box .product {
    height: 208px;
  }
}

@media screen and (max-width: 991px) {
  .single-info-box .product {
    padding: 24px 16px 0;
  }
}

.single-info-box .product h2 {
  margin-top: 0;
  margin-bottom: 25px;
}

.single-info-box .product dl dt {
  line-height: 23px;
  width: 90px;
  text-align: left;
}

.single-info-box .product dl dd {
  line-height: 23px;
  margin-left: 0;
}

.single-info-box.task-location {
  border-left: 2px solid #E7EDF1;
}

.single-info-box.task-location .task-location-header {
  position: relative;
  padding: 40px 30px 30px;
}

.single-info-box.task-location .task-location-header h2 {
  margin-top: 0;
}

.single-info-box.task-location .task-location-header p {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.single-info-box.task-location .location iframe {
  display: block;
}

.single-info-box.installation-title {
  padding: 40px 28px 34px;
}

@media screen and (min-width: 992px) {
  .single-info-box.installation-title {
    height: 241px;
  }
}

.single-info-box.installation-title h2 {
  margin-top: 0;
}

.single-info-box.task-title {
  padding: 45px 28px 34px;
}

@media screen and (min-width: 992px) {
  .single-info-box.task-title {
    height: 241px;
  }
}

.single-info-box.task-title .single-info-task-status {
  display: inline-block;
  margin-top: 3px;
  margin-bottom: 36px;
  padding: 4px 10px;
  border-radius: 5px;
}

.single-info-box.task-title .new {
  background: #d7f4fd;
}

.single-info-box.task-title .running {
  background: #81e455;
}

.single-info-box.task-title .ended {
  background: #0a8fe9;
}

.single-info-box.task-title .incomplete {
  background: #f79646;
}

.single-info-box.task-title .on-hold {
  background: #e6e250;
}

.single-info-box.task-title .appointed {
  background: #8a8a8a;
}

.single-info-box.task-title .task-no {
  display: inline-block;
  margin-top: 3px;
  margin-bottom: 36px;
  background: #e7edf1;
}

.single-info-box.task-title .task-description {
  font-size: 1.077em;
  max-width: 90%;
  word-wrap: break-word;
}

@media screen and (max-width: 991px) {
  .single-info-box.task-title .page-title {
    margin-bottom: 8px;
  }
}

.single-task .row > .col-md-6 {
  padding: 0 9px;
}

/*
    Banner

    Designed to show 1 or 3 images in one line

    markup:
    <div class="row banner ad-banner">
        <div class="col-md-4 col-sm-12 col-xs-12"><img src="../frontend/images/ad1.png"></div>
        <div class="col-md-4 col-sm-12 col-xs-12"><img src="../frontend/images/ad2.png"></div>
        <div class="col-md-4 col-sm-12 col-xs-12"><img src="../frontend/images/ad3.png"></div>
    </div>

    sg-wrapper:
    <div class="container-fluid">
        <sg-wrapper-content/>
    </div>

    Styleguide 3.10
*/
.banner.ad-banner {
  margin-top: 63px;
}

.banner.ad-banner .col-md-4 {
  margin-bottom: 12px;
  text-align: center;
  padding: 0;
}

.banner.ad-banner .col-md-4 img {
  max-width: 100%;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  width: 100% !important;
}

#my-carousel {
  text-align: center;
  background: transparent !important;
}

#browserAdvise {
  position: absolute;
  position: fixed;
  z-index: 111111;
  width: 100%;
  top: 0px;
  left: 0px;
  border-bottom: 1px solid #A29330;
  background: #FDF2AB no-repeat 13px center url("/images/redlight.png");
  text-align: left;
  cursor: pointer;
  font-family: Arial,Helvetica,sans-serif;
  color: #000;
  font-size: 12px;
}

#browserAdvise div {
  padding: 5px 36px 5px 40px;
}

#broserAdviseClose {
  position: absolute;
  right: 6px;
  top: -4px;
  height: 20px;
  width: 12px;
  font-weight: bold;
  font-size: 18px;
  padding: 0;
  color: #333;
}

/*

Form box

Used in 'opret-opgave.html'. Used for label/input pairs and dl

markup:
<div class="form-box">
    <div class="form-box-header">
        <h4>Installation</h4>
    </div>
    <div class="form-box-content">
        <label for="artikelnummer"><span>Artikelnummer</span> <input type="Search" name="artikelnummer"></label>
        <dl class="dl-horizontal">
            <dt>Fabric</dt>
            <dd>Baksi</dd>
            <dt>Type</dt>
            <dd>WGB 20C</dd>
            <dt>Contractinfo</dt>
            <dd>2 year</dd>
        </dl>
    </div>
</div>

sg-wrapper:
<div class="col-md-6 col-sm-12 col-xs-12">
    <div class="demo-container--box">
        <sg-wrapper-content/>
    </div>
</div>

Styleguide 3.7

*/
div.form-box {
  margin-bottom: 15px;
  padding-left: 0px !important;
  padding-right: 0px !important;
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

div.form-box .form-box-header {
  padding: 14px 20px;
  background: #cccccc;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

div.form-box .form-box-header h4 {
  margin: 0;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
}

div.form-box .form-box-body {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}

div.form-box .form-box-body > .form-group .input-group .select2 .select2-selection {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 34px;
}

div.form-box .form-box-content {
  padding: 36px 20px;
  padding-bottom: 50px;
}

div.form-box .form-box-content .field-validation-error {
  color: red;
  float: right;
  padding: 0 0 5px 0;
}

div.form-box .form-box-content label {
  position: relative;
  display: block;
  width: 100%;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  div.form-box .form-box-content label {
    margin: 3px auto;
    width: 350px;
    text-align: right;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  div.form-box .form-box-content label {
    width: 340px;
    margin: auto;
    text-align: right;
  }
}

div.form-box .form-box-content label span {
  color: #333333;
  font-size: 13px;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  div.form-box .form-box-content label span {
    /*display: inline-block;*/
    text-align: right;
  }
}

div.form-box .form-box-content label span.select2 {
  float: right;
}

div.form-box .form-box-content label input {
  padding-left: 16px;
  height: 40px;
  color: #999999;
  font-size: 13px;
  font-weight: 400;
  border: 2px solid #ffffff;
  border-radius: 5px;
  float: right;
}

div.form-box .form-box-content label input[type=date]::-webkit-inner-spin-button {
  display: none;
}

div.form-box .form-box-content label input[type=date]::-webkit-calendar-picker-indicator {
  width: 16px;
  height: 16px;
  background: url("../images/datepicker.png") no-repeat;
  z-index: 700;
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
}

div.form-box .form-box-content label input[type=date]::-webkit-clear-button {
  display: none;
}

@media screen and (min-width: 1250px) {
  div.form-box .form-box-content label input {
    width: 230px;
  }
  div.form-box .form-box-content label input.noServiceItem {
    width: 430px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1249px) {
  div.form-box .form-box-content label input {
    width: 170px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  div.form-box .form-box-content label input {
    width: 200px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  div.form-box .form-box-content label input {
    margin-left: 20px;
    width: 210px;
    float: right;
  }
  div.form-box .form-box-content label input span.select2-selection__rendered {
    display: inline !important;
  }
}

div.form-box .form-box-content label select {
  color: #999999;
  border-color: #ffffff;
  border-radius: 5px;
  height: 40px;
  color: #999999;
  font-size: 13px;
  font-weight: 400;
  border: 2px solid #ffffff;
  padding-left: 16px;
  float: right;
}

@media screen and (min-width: 1250px) {
  div.form-box .form-box-content label select {
    width: 230px;
  }
  div.form-box .form-box-content label select.noServiceItem {
    width: 430px !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1249px) {
  div.form-box .form-box-content label select {
    width: 170px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  div.form-box .form-box-content label select {
    width: 200px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  div.form-box .form-box-content label select {
    margin-left: 20px;
    width: 210px;
  }
  div.form-box .form-box-content label select span.select2-selection__rendered {
    display: inline !important;
  }
}

@media screen and (max-width: 991px) {
  div.form-box .form-box-content label[for=beskrivelse] {
    margin-top: 20px;
    text-align: center;
  }
  div.form-box .form-box-content label[for=beskrivelse] span {
    text-align: center;
    width: 100%;
  }
}

@media screen and (min-width: 1250px) {
  div.form-box .form-box-content label[for=beskrivelse] {
    display: inline-block;
    padding: 5px 20px 4px;
    margin: 30px 0 0;
    width: initial;
    background: #e6e6e6;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  div.form-box .form-box-content label[for=beskrivelse] span {
    line-height: 1em;
  }
}

div.form-box .form-box-content .dl-horizontal {
  margin-top: 30px;
}

div.form-box .form-box-content .dl-horizontal dt {
  line-height: 23px;
  text-align: left;
  width: 117px;
}

@media screen and (min-width: 1250px) {
  div.form-box .form-box-content .dl-horizontal dt {
    width: 136px;
  }
}

@media screen and (max-width: 767px) {
  div.form-box .form-box-content .dl-horizontal dt {
    width: 100%;
    text-align: center;
  }
}

div.form-box .form-box-content .dl-horizontal dd {
  line-height: 23px;
}

@media screen and (min-width: 992px) {
  div.form-box .form-box-content .dl-horizontal dd {
    margin-left: 117px;
    text-align: right;
  }
}

@media screen and (max-width: 1249px) {
  div.form-box .form-box-content .dl-horizontal {
    margin: 30px auto 0;
    width: 340px;
  }
  div.form-box .form-box-content .dl-horizontal dt {
    float: left;
    position: relative;
    right: -3px;
    text-align: right;
  }
  div.form-box .form-box-content .dl-horizontal dd {
    margin-left: 139px;
    width: 200px;
  }
}

div.form-box .form-box-content textarea {
  padding: 16px 20px;
  height: 180px;
  color: #999999;
  border-color: #ffffff;
  border-radius: 5px;
}

@media screen and (min-width: 992px) {
  div.form-box .form-box-content textarea {
    margin-top: -5px;
    width: 100%;
    border-top-left-radius: 0;
  }
}

@media screen and (max-width: 991px) {
  div.form-box .form-box-content textarea {
    display: block;
    margin: 0 auto;
    width: 340px;
    max-width: 98%;
  }
}

.form-box-submit {
  margin: 8px 0 20px;
}

@media screen and (max-width: 991px) {
  .form-box-submit {
    margin: 20px 0;
    text-align: center !important;
  }
  .form-box-submit input {
    float: none;
  }
}

/*
    Pagination

    Use the pagination design below tables or lists

    markup:
    <div class="pagination row">
        <div class="col-md-6 col-sm-6 col-xs-12">
            <a class="tostart">
                <span class="glyphicon glyphicon-step-backward"></span>
            </a>
            <a class="next">
                <span class="glyphicon glyphicon-triangle-left"></span>
            </a>
            <div class="page-nos">
                <a href="#" class="page-no active">1</a>
                <a href="#" class="page-no">2</a>
                <a href="#" class="page-no">3</a>
                <a href="#" class="page-no">4</a>
                <a href="#" class="page-no">5</a>
                <span class="paginate_ellipsis">...</span>
            </div>
            <a class="previous">
                <span class="glyphicon glyphicon-triangle-right"></span>
            </a>
            <a class="toend">
                <span class="glyphicon glyphicon-step-forward"></span>
            </a>
        </div>
        <div class="col-md-6 col-sm-6 col-xs-12">
            <select>
                <option selected>5</option>
                <option>10</option>
                <option>15</option>
                <option>20</option>
                <option>25</option>
                <option>30</option>
            </select>
            <span>rækker pr. side</span>
        </div>
    </div>

    Styleguide 3.8

*/
.pagination {
  border-radius: 0;
  padding-top: 10px;
  z-index: 10000;
  width: 100%;
  color: #153b3a;
}

.pagination [class*=col-] {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .pagination [class*=col-]:first-child {
    text-align: right;
  }
  .pagination [class*=col-]:last-child {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .pagination {
    text-align: center;
  }
}

.pagination a {
  cursor: pointer;
  text-decoration: none;
}

.pagination a:hover {
  text-decoration: none;
}

.pagination a span {
  width: 24px;
  color: #153b3a;
  font-size: 10px;
  line-height: 23px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #153b3a;
  border-radius: 12px;
}

.pagination .page-nos {
  display: inline-block;
  margin: 0 13px 10px;
}

.pagination .page-nos a {
  display: inline-block;
  margin-top: 1px;
  width: 24px;
  color: #153b3a;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  vertical-align: middle;
  border-radius: 12px;
}

.pagination .page-nos a:hover {
  text-decoration: underline;
}

.pagination .page-nos a.active {
  color: #fff;
  background-color: #153b3a;
}

.pagination select {
  position: relative;
  top: 2px;
  margin-left: 20px;
  margin-right: 8px;
  height: 25px;
  width: 45px;
  border: 1px solid #153b3a;
  border-radius: 5px;
  color: #153b3a;
}

@media screen and (max-width: 767px) {
  .pagination select {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
}

.pagination > span {
  font-size: 12px;
}

.pagination .scrollToContent.visible-xs {
  display: inline !important;
}

input:focus {
  outline: 0;
  border: none;
}

input:active {
  outline: 0;
  border: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-input-placeholder {
  color: #333333;
  font-size: 13px;
  font-weight: bold;
}

input::-moz-placeholder {
  color: #333333;
  font-size: 13px;
  font-weight: bold;
}

input:-moz-placeholder {
  /* Older versions of Firefox */
  color: #333333;
  font-size: 13px;
  font-weight: bold;
}

input:-ms-input-placeholder {
  color: #333333;
  font-size: 13px;
  font-weight: bold;
}

.commentTextBox, .fileTextBox {
  width: 100%;
}

/* Workaround for twitter typeahead input background-color issue, were transparent was added as background color, which resulted that the input field was rendered incorrect */
.twitter-typeahead {
  background-color: white;
}

.task-filter .searchFilterBox .dropdown-menu .bs-searchbox input {
  border: 1px solid #e7edf1;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 10px;
}

.link-display-cc:before {
  font-family: FontAwesome;
  content: "\f09d";
  position: absolute;
  left: -17px;
}

.fa-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cursor-enabled {
  cursor: pointer;
}

.sitesearch-input {
  border: none;
  border-radius: 0px;
}

@media screen and (max-width: 991px) {
  .add-product-to-cart input.form-control {
    padding-left: 1px;
    padding-right: 3px;
  }
}

/*
    Dropdown Menu

    See bootstrap for elaborate info<br>
    Use grid to set size of dropdown


    markup:
    <div class="dropdown">
        <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
            Status
            <span class="caret"></span>
        </button>
        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
            <li><a href="#">New</a></li>
            <li><a href="#">Running</a></li>
            <li><a href="#">Finished</a></li>
        </ul>
    </div>

    sg-wrapper:
    <div class="demo-container--box">
        <sg-wrapper-content/>
    </div>

    Styleguide 3.9
*/
.demo-container--box {
  min-height: 150px;
  padding: 10px;
}

.task-filter {
  /*label[for=searchstring] {
        position: absolute;
        left: 20px;
        top: 31px;
        transform: translateY(-50%);
        color: $text-color;
        z-index: 10;
    }*/
}

@media screen and (max-width: 767px) {
  .task-filter {
    height: auto;
  }
}

.task-filter form {
  position: relative;
}

.task-filter input[type=text] {
  /*border: none;*/
  height: 34px;
  background-color: #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 0;
}

.task-filter .input-group .input-group-addon {
  border: none;
  height: 34px;
  background-color: #fff;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 0;
  font-weight: bold;
  font-size: 13px;
}

.task-filter .dropdown {
  display: inline-block;
}

.task-filter .dropdown.open .dropdown-toggle.btn-default {
  background: #FFF;
  border-bottom: 1px solid #E7EDF1;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.175);
}

.task-filter .dropdown .dropdown-toggle {
  height: 100%;
  max-width: 790px;
  width: 100%;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  background: #FFF;
  /*border: none;*/
  border-radius: 0;
  margin-left: 0;
  box-sizing: border-box;
}

.task-filter .dropdown .dropdown-toggle:last-child {
  margin-right: 0;
}

.task-filter .dropdown .dropdown-toggle:hover {
  background: #FFF;
}

.task-filter .dropdown .dropdown-toggle:active {
  background: #FFF;
}

.task-filter .dropdown .dropdown-toggle .caret {
  float: right;
}

.task-filter .dropdown .dropdown-menu {
  padding: 0;
  border: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.175);
}

.task-filter .dropdown .dropdown-menu li {
  position: relative;
  padding: 0 10px;
  margin: 14px 0;
  height: 18px;
}

@media screen and (min-width: 768px) {
  .task-filter .dropdown .dropdown-menu li {
    padding: 0 20px;
  }
}

.task-filter .dropdown .dropdown-menu li:last-child {
  margin-bottom: 22px;
}

.task-filter .dropdown .dropdown-menu li input[type=checkbox] {
  -webkit-appearance: none;
  margin: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #80CFCB;
  border-radius: 9px;
}

.task-filter .dropdown .dropdown-menu li input[type=checkbox]:checked {
  background-color: #80CFCB;
}

.task-filter .dropdown .dropdown-menu li label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  padding-left: 6px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.task-filter .dropdown .dropdown-menu li a {
  display: inline-block;
}

.task-filter .filter-search {
  text-align: center;
}

.task-filter .filter-search #installation-search-button, .task-filter .filter-search button {
  position: relative;
  padding: 20px 25px;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  background: #ffffff;
  border: none;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .task-filter .filter-search #installation-search-button, .task-filter .filter-search button {
    margin-bottom: 12px;
    padding: 12px 32px;
    height: auto;
  }
}

.task-filter [class*="col-"] {
  box-sizing: border-box;
  padding-right: 10px;
  padding-left: 0px;
}

@media screen and (max-width: 767px) {
  .task-filter [class*="col-"] {
    padding-bottom: 1em;
  }
}

@media screen and (min-width: 1250px) {
  .task-filter [class*="col-"]:first-child {
    padding-left: 0;
  }
}

.ff .task-filter .dropdown .dropdown-toggle {
  position: relative;
}

.ff .task-filter .dropdown .dropdown-toggle .caret {
  margin-top: 0;
  float: none;
  position: absolute;
  right: 20px;
  top: 50%;
}

.dropdown .filterChoice {
  font-size: smaller;
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.bootstrap-select .dropdown-menu {
  background-color: #fff;
}

/*
Main navigation

<p>Main navigation - works with <code>ul</code> and <code>ol</code> tags
Should be used inside <code>header class="site-header"</code> for proper rendering</p>

active       - The active element, which has a slightly different styling to help the user navigate

markup:
<nav class="navbar navbar-default">
    <div class="container-fluid">
        <div class="navbar-header">
            <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
            </button>
            <div class="navbar-brand">
                <a href="~">
                    <img src="../frontend/images/expandit_logo.png" alt="">
                </a>
            </div>
        </div>
        <div class="collapse navbar-collapse row">
            <ul class="nav navbar-nav list-unstyled">
                <li class="active">
                    <a href="/index.html">LINK</a>
                </li>
                <li>
                    <a href="/opgaver.html">LINK</a>
                    <ul class="navbar__sub list-unstyled opgaver-sub">
                        <li>
                            <a href="/opret-opgave.html">
                                <img src="../frontend/images/opgaver_create.png">
                                <span>SUBLINK</span>
                            </a>
                        </li>
                        <li>
                            <a href="#">
                                <img src="../frontend/images/opgaver_checked.png">
                                <span>SUBLINK</span>
                            </a>
                        </li>
                        <li>
                            <a href="#">
                                <img src="../frontend/images/opgaver_folder.png">
                                <span>SUBLINK</span>
                            </a>
                        </li>
                    </ul>
                </li>
                <li>
                    <a href="#">
                        <img src="../frontend/images/cart.png">
                        <span class="cart-count">X</span>
                    </a>
                </li>
            </ul>
        </div>
    </div>
</nav>

sg-wrapper:
<header class="site-header">
    <div class="container-fluid">
        <div class="row">
            <div class="col-md-12 col-sm-12 col-xs-12">
                <sg-wrapper-content/>
            </div>
        </div>
    </div>
</header>


Styleguide 3.2

*/
.navbar {
  border-radius: 0;
}

.navbar-brand {
  padding: 5px 15px;
  position: relative;
  z-index: 1000;
}

.navbar-brand img {
  max-height: 100%;
}

@media screen and (min-width: 992px) {
  .navbar-brand img {
    max-width: 255px;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
  }
}

@media screen and (min-width: 992px) {
  .navbar.navbar-default {
    padding: 0;
    margin: 0px 0 0;
    height: 68px;
    background-color: #0a4554;
    border: none;
  }
  .navbar.navbar-default .navbar-header {
    float: none;
    margin-left: -15px;
    margin-right: -15px;
  }
  .navbar.navbar-default .navbar-header .navbar-brand {
    height: 65px;
    width: 315px;
  }
  .navbar.navbar-default .navbar-collapse {
    padding: 0;
    border-top: 1px solid #063440;
  }
  .navbar.navbar-default .main-nav {
    width: 100%;
  }
  .navbar.navbar-default .main-nav > li > a {
    height: 50px;
  }
  .navbar.navbar-default .navbar-right {
    margin-right: 0;
  }
  .navbar.navbar-default .navbar-right > li {
    border: none;
  }
  .navbar.navbar-default .navbar-right > li > a {
    height: 43px;
  }
  .navbar.navbar-default .navbar-right.nav.navbar-nav {
    background-color: #0a4554;
  }
  .navbar.navbar-default .navbar-right.nav.navbar-nav > li {
    border: none;
  }
  .navbar.navbar-default .navbar-right.nav.navbar-nav > li:hover > ul {
    display: block;
  }
  .navbar.navbar-default .navbar-right.nav.navbar-nav > li:hover > a {
    background-color: #0a4554;
    font-weight: 600;
    border-bottom: none;
    color: #f4f4f4;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .navbar.navbar-default .navbar-right.nav.navbar-nav > li > a {
    text-transform: unset;
  }
  .navbar.navbar-default .nav {
    background-color: #0a4554;
    float: none;
    padding: 0;
  }
  .navbar.navbar-default .nav > li {
    position: relative;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    color: white;
    background-color: #0a4554;
  }
}

@media screen and (min-width: 992px) and (min-width: 768px) {
  .navbar.navbar-default .nav > li {
    display: inline-block;
  }
}

@media screen and (min-width: 992px) {
  .navbar.navbar-default .nav > li.active > a {
    background-color: #f4f4f4;
    color: #0a4554;
    font-weight: 600;
    border-bottom: 3px solid #153b3a;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .navbar.navbar-default .nav > li:hover > ul {
    display: block;
  }
  .navbar.navbar-default .nav > li:hover > a {
    color: #0a4554;
    font-weight: 600;
    border-bottom: none;
    background-color: #f4f4f4;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .navbar.navbar-default .nav > li > a {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background-color: transparent;
    box-shadow: none;
    box-sizing: border-box;
  }
  .navbar__sub {
    display: none;
    position: absolute;
    left: 0%;
    top: 50px;
    /*font-size: 0;*/
    z-index: 10000;
    white-space: nowrap;
  }
  .navbar__sub.opgaver-sub {
    transform: translateX(-33%);
  }
  .navbar__sub > li {
    position: relative;
    width: 210px;
    min-height: 35px;
    background-color: #f4f4f4;
    border: none;
    box-sizing: border-box;
    line-height: 1;
    white-space: normal;
  }
  .navbar__sub > li span.height-fix {
    display: block;
    visibility: hidden;
    padding: 5px 0;
  }
  .navbar__sub > li:hover {
    background-color: #f0f0f0;
  }
  .navbar__sub > li:hover span {
    /*color: $subnav-color;*/
  }
  .navbar__sub > li:hover > ul {
    display: block;
  }
  .navbar__sub > li > a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    text-align: left;
    margin-left: 10px;
    text-decoration: none;
  }
  .navbar__sub > li > a:hover {
    color: #3178b7;
  }
  .navbar__sub > li > a:hover span {
    color: #3178b7;
  }
  .navbar__sub > li > a span {
    display: block;
    margin-top: 0px;
    color: #0a4554;
    font-size: 14px;
    font-weight: normal;
  }
  .navbar__sub .navbar__sub {
    position: absolute;
    left: 100%;
    top: 0px;
    transform: unset;
  }
}

@media screen and (min-width: 1250px) {
  .navbar.navbar-default .main-nav > li:last-child {
    /*float: right;*/
  }
}

@media screen and (max-width: 991px) {
  .site-header .navbar-default {
    background-color: #0a4554;
    border: none;
    z-index: 10000;
    margin-bottom: 0;
  }
  .site-header .navbar-default .navbar-collapse {
    border: solid 1px #153b3a;
  }
  .site-header .navbar-default .navbar-collapse .nav > li.active > a {
    font-weight: 600;
    background-color: transparent;
  }
  .site-header .navbar-default .navbar-collapse .nav > li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
  }
  .site-header .navbar-default .navbar-collapse .nav > li ul li {
    padding: 2px 30px 2px;
  }
  .site-header .navbar-default .navbar-collapse .nav > li ul li a span {
    color: #153b3a;
  }
  .site-header .navbar-default .navbar-collapse .nav > li ul li a img {
    height: 16px;
    width: auto;
  }
  .site-header .navbar-default .main-nav {
    width: 100%;
    margin-left: 5px;
    height: 200px;
    max-height: 200px;
    width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .site-header .navbar-default .main-nav > li:last-child {
    position: relative;
  }
  .site-header .navbar-default .main-nav > li:last-child a span {
    color: #ffffff;
    top: 9px;
    left: 42px;
  }
  #topMenu.navbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
  .navbar-header {
    float: none;
  }
  .navbar-header button.navbar-toggle {
    margin: 13px 15px 13px 15px;
    background-color: #0a4554;
    float: left;
    z-index: 100;
  }
  .navbar-header .navbar-brand {
    float: left;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
  }
  #topMenu.navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .navbar-text {
    float: none;
    margin: 15px 0;
  }
  /* since 3.1.0 */
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .collapsing {
    overflow: hidden !important;
  }
  .dropdown-menu li a {
    color: #FFF;
  }
  .dropdown-menu li a .checkmarck {
    color: #000;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
  }
  .main-nav .navbar__sub {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .navbar-header button.navbar-toggle {
    margin: 17px 15px 13px 5px;
  }
}

.nav.nav-list .nav-list {
  padding-left: 15px;
  font-size: smaller;
}

.nav.nav-list .sub-catalog-menu .nav_tree_link {
  color: #6a6a6b;
}

.nav.nav-list .sub-catalog-menu .nav_tree_link.active {
  background-color: #ffffff;
  color: #000;
}

.nav.nav-list .sub-catalog-menu .nav_tree_link:after {
  content: "\f0da";
  font-family: FontAwesome;
  right: 5px;
  position: absolute;
  top: 10px;
}

.nav.nav-list .sub-catalog-menu .nav_tree_link:hover {
  /*background-color: $accent-color;*/
  color: #000;
}

.dropdown-menu {
  background-color: #f4f4f4;
}

.dropdown-menu li a:not(.filter-option) {
  color: #0a4554;
}

@media screen and (max-width: 767px) {
  .dropdown-menu li a:not(.filter-option) {
    color: #153b3a;
  }
}

.dropdown-menu li a:hover, .dropdown-menu li a:focus {
  color: #262626;
}

.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #f4f4f4;
  color: #fff;
}

#language-dropdown {
  padding-left: 12px;
}

#searchButton {
  display: inline;
}

@media screen and (min-width: 992px) and (max-width: 1249px) {
  #searchButton {
    margin-top: 5px;
  }
}

.salesAgrContainer, .favoritesContainer {
  float: left;
  margin-left: 5px;
  max-width: 190px;
}

@media screen and (max-width: 991px) {
  .salesAgrContainer, .favoritesContainer {
    float: right;
  }
}

.compact-minicart-container {
  margin-left: 18px;
  margin-right: 0px;
}

.nav .compact-minicart-ref, .compact-minicart-ref {
  display: inline-block;
  float: right;
  padding-right: 5px;
}

.nav .compact-minicart-ref a i.fa, .compact-minicart-ref a i.fa {
  color: #ffffff;
  margin: 0px 10px 0 -1px;
  position: absolute;
  top: 15px;
  padding: 0 1px 0 5px;
}

@media screen and (max-width: 991px) {
  .nav .compact-minicart-ref a i.fa, .compact-minicart-ref a i.fa {
    color: #ffffff;
  }
}

.nav .compact-minicart-ref a i.fa.fa-shopping-cart, .compact-minicart-ref a i.fa.fa-shopping-cart {
  left: 1px;
}

.nav .compact-minicart-ref a i.fa.fa-star, .compact-minicart-ref a i.fa.fa-star {
  left: 75px;
}

.nav .compact-minicart-ref a .cart-count-compact, .compact-minicart-ref a .cart-count-compact {
  color: #153b3a;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  /*media screen and (max-width: $screen-sm-max) {
                color: $nav-bg-color;
                background-color: $accent-color;
            }*/
}

.nav .compact-minicart-ref a .cart-label, .compact-minicart-ref a .cart-label {
  color: #ffffff;
  position: relative;
  top: 15px;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  .nav .miniCartRef, .miniCartRef, .salesAgrRef, .favorites {
    float: left;
    margin: -5px 20px 0 20px;
  }
}

@media screen and (min-width: 1250px) {
  .nav .miniCartRef, .miniCartRef, .salesAgrRef, .favorites {
    margin: 5px 0 0 0;
  }
}

@media screen and (max-width: 991px) {
  .nav .miniCartRef, .miniCartRef, .salesAgrRef, .favorites {
    float: right;
  }
}

.nav .miniCartRef .form-group, .miniCartRef .form-group, .salesAgrRef .form-group, .favorites .form-group {
  margin-bottom: 0;
}

.nav .miniCartRef .input-group.dropdown-menu, .miniCartRef .input-group.dropdown-menu, .salesAgrRef .input-group.dropdown-menu, .favorites .input-group.dropdown-menu {
  background: transparent;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.nav .miniCartRef .searchFilterBox, .miniCartRef .searchFilterBox, .salesAgrRef .searchFilterBox, .favorites .searchFilterBox {
  background: transparent;
}

.nav .miniCartRef .dropdown-menu, .miniCartRef .dropdown-menu, .salesAgrRef .dropdown-menu, .favorites .dropdown-menu {
  z-index: 999;
}

.nav .miniCartRef .dropdown-menu li a, .miniCartRef .dropdown-menu li a, .salesAgrRef .dropdown-menu li a, .favorites .dropdown-menu li a {
  color: #262626;
}

@media (max-width: 991px) {
  .nav .miniCartRef .input-group-addon, .miniCartRef .input-group-addon, .salesAgrRef .input-group-addon, .favorites .input-group-addon {
    padding: 8px 0px 0px 12px;
    max-width: 46px;
  }
}

.nav .miniCartRef a i.fa, .miniCartRef a i.fa, .salesAgrRef a i.fa, .favorites a i.fa {
  color: #153b3a;
  margin: 5px 10px 0 -10px;
  padding: 0 1px 0 5px;
}

.nav .miniCartRef a .cart-count, .miniCartRef a .cart-count, .salesAgrRef a .cart-count, .favorites a .cart-count {
  background-color: #153b3a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .nav .miniCartRef a .cart-count, .miniCartRef a .cart-count, .salesAgrRef a .cart-count, .favorites a .cart-count {
    position: relative;
    top: -12px;
    left: -20px;
  }
}

@media screen and (min-width: 992px) {
  .nav .miniCartRef a .cart-count, .miniCartRef a .cart-count, .salesAgrRef a .cart-count, .favorites a .cart-count {
    position: absolute;
    top: 10px;
    right: 8px;
  }
}

.mc-searchbox {
  padding: 4px 8px;
}

.top-menu-account-links {
  clear: both;
  margin: 0 0 0 10px;
}

.top-menu-account-links .btn-group {
  margin: 0 15px 15px 0;
}

.top-menu-account-links a {
  color: #ffffff;
}

@media screen and (max-width: 445px) {
  #top-menu-right-icons {
    clear: both;
  }
}

@media screen and (max-width: 767px) {
  #top-menu-right-icons {
    margin: 2px 15px 7px 0;
    float: right !important;
  }
}

@media screen and (min-width: 768px) {
  #top-menu-right-icons {
    margin: 10px 0px 0px 10px;
  }
}

@media screen and (min-width: 1250px) {
  #top-menu-right-icons {
    margin: 0px 0px 0px 0px;
    width: 100%;
    position: relative;
    height: 65px;
  }
  #top-menu-right-icons > div.pull-right {
    width: 100%;
  }
}

#top-menu-right-icons > .mini-cart-container {
  float: right;
  max-width: 962px;
  min-width: 950px;
  max-height: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 991px) {
  #top-menu-right-icons > .mini-cart-container {
    float: left;
  }
}

@media screen and (max-width: 1249px) {
  #top-menu-right-icons > .mini-cart-container {
    min-width: -webkit-calc(100% - 254px);
    min-width: -moz-calc(100% - 254px);
    min-width: calc(100% - 254px);
    width: -webkit-calc(100% - 254px);
    width: -moz-calc(100% - 254px);
    width: calc(100% - 254px);
  }
}

.navbar.navbar-default .nav > li.li-top-margin-big {
  margin-top: 12px;
}

@media screen and (min-width: 1200px) {
  div.miniCartRef, div.salesAgrRef, div.favorites {
    /*margin-top: 0;*/
    margin-left: 5px;
  }
}

@media screen and (max-width: 767px) {
  .top30-sm {
    margin-top: 13px !important;
  }
}

#minicartDropdownWrapper div.mini-cart-select > button.dropdown-toggle {
  padding-right: 0px;
}

#bs-example-navbar-collapse-1 ul.nav.navbar-nav > li > a {
  padding-left: 0px;
  padding-right: 0px;
}

.fa-1_5x {
  font-size: 1.5em !important;
}

.bootstrap-select.btn-group .dropdown-toggle span.filter-option {
  max-width: 100%px;
  /*min-width: 100px;
    width: 100px;*/
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

div.activeSalesAgreementDropdownWrapper .bootstrap-select.btn-group .dropdown-toggle span.filter-option {
  max-width: 185px;
  min-width: 185px;
  width: 185px;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

div.activeSalesAgreementDropdownWrapper div.btn-group {
  background-color: transparent;
}

#activeSalesAgreementDropdownWrapper {
  width: 185px;
  max-width: 185px;
  min-width: 185px;
}

div.activeSalesAgreementDropdownWrapper div.btn-group div.dropdown-menu ul li a.noagreement {
  font-style: italic;
  margin-top: 3px;
}

div.favorites span a i.favorites-dropdown {
  margin-top: 0;
  margin-right: -5px;
  padding-left: 5px;
}

div form div.favorites-alert-msg {
  max-height: 45px;
  margin-top: 10px;
  padding-top: 12px;
}

.right15 {
  margin-right: 15px !important;
}

.left15 {
  margin-left: 15px !important;
}

tr.groupbar-row {
  background: #e1e1e1;
  width: 100%;
}

div.groupbar {
  display: inline-block;
  padding-bottom: 0;
  height: 22px;
  width: 100%;
  margin-bottom: 10px;
}

div.groupbar-groupname {
  font-size: 12px;
  font-weight: bold;
  color: black;
  float: left;
  background: #fff;
  padding-top: 2px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  margin: 0 2px;
  width: 100%;
  box-shadow: 0 2px darkgrey;
}

.product-table-template table tbody tr td.groupingcell {
  padding: 0;
  border-top-width: 12px;
  border-color: #f1f1f1;
  max-height: 30px;
  background-color: #f1f1f1;
  margin-bottom: 2px;
}

.top-toastr-margin {
  top: 15px;
}

.toastr-opague > div {
  opacity: 1 !important;
}

/*
Buttons

Basic buttons - classes applies to <code>a</code>, <code>input</code> and <code>button</code> tags. See bootstrap for more colors

.btn-dark           - a dark version of bootstraps button type

markup:
<input class="btn btn-dark" type="button" value="BUTTON">


Styleguide 3.1

*/
.btn-align-right {
  text-align: right;
}

.btn-dark, .btn-dark:visited {
  font-size: 14px;
  padding-left: 21px;
  padding-right: 21px;
  color: #fff;
  font-weight: 700;
  background: #333333;
  border-color: #333333;
}

@media screen and (max-width: 991px) {
  .btn-dark.add-product-to-cart, .btn-dark:visited.add-product-to-cart {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.btn-dark:hover, .btn-dark:focus, .btn-dark:visited:hover, .btn-dark:visited:focus {
  color: #fff;
  background: #222;
}

.btn-dark img, .btn-dark:visited img {
  position: relative;
  top: -2px;
  margin-right: 1em;
  height: 14px;
}

.btn-success-blue {
  background-color: #4583b6;
  border-color: #3579A6;
}

.btn-success-blue:hover, .btn-success-blue:focus, .btn-success-blue:active, .btn-success-blue:active:hover, .btn-success-blue:active:focus {
  background-color: #2D689E;
  border-color: #224F93;
}

@media (min-width: 768px) {
  .cart-order-buttons > div {
    padding-bottom: 20px;
  }
}

.user-carts-buttons {
  padding: 10px 35px;
}

@media (max-width: 768px) {
  .manage-cart-activity .btn {
    font-size: 11px;
    padding: 4px 6px;
    margin-top: 6px;
  }
}

#select-shipping-address .btn-block {
  margin-bottom: 10px;
}

.front-page-button {
  margin-top: 50px;
  width: 208px;
  line-height: 2.6;
  font-size: 16px;
  height: 170px;
}

#cartButtons {
  display: flex;
  margin-bottom: 20px;
}

#cartButtons > a, #cartButtons > button {
  flex-grow: 1;
}

.img__wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.img__description_layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(190, 190, 206, 0.6);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.img__description {
  font-weight: bold;
  font-size: 20px;
}

#topbar-search-btn {
  background-color: white;
  border-radius: 0px;
}

a.btn {
  text-decoration: none;
}

/*
    Tabs

    markup:
    <div class="tabs">
       <ul class="nav nav-tabs" role="tablist">
           <li role="presentation" class="active"><a href="#" aria-controls="newtasks" role="tab" data-toggle="tab">New Tasks</a> <i class="glyphicon glyphicon-menu-down show-tabs"></i></li>
           <li role="presentation"><a href="#" aria-controls="currenttasks" role="tab" data-toggle="tab">Running task</a> <i class="glyphicon glyphicon-menu-down show-tabs"></i></li>
           <li role="presentation"><a href="#" aria-controls="finishedtasks" role="tab" data-toggle="tab">Finished tasks</a> <i class="glyphicon glyphicon-menu-down show-tabs"></i></li>
       </ul>
       <div class="tab-content">
           <div role="tabpanel" class="tab-pane active" id="newtasks">
               <ul class="tab__list">
                   <li class="list__element">
                       <a class="row">
                           <div class="task col-md-10">
                               <h3>EJD. 1619 KG. NYTORV 2022</h3>
                               <p>
                                   Cras mattis consectetur purus sit amet fermentum. Praesent commodo cursus.
                               </p>
                           </div>
                           <span class="task-no col-md-2">0-096857</span>
                       </a>
                   </li>
                   <li class="list__element">
                       <a class="row">
                           <div class="task col-md-10">
                               <h3>Ajos</h3>
                               <p>
                                   Dolor Magna Ridiculus Fermentum Ligula
                               </p>
                           </div>
                           <span class="task-no col-md-2">0-096857</span>
                       </a>
                   </li>
                   <li class="list__element">
                       <a class="row">
                           <div class="task col-md-10">
                               <h3>Jægerhuset</h3>
                               <p>
                                   Aenean lacinia bibendum nulla sed consectatur. Vivamus sagittis lacus vel augue laoreet. Aenean lacinia bibendum nulla sed consectatur. Vivamus sagittis lacus vel augue laoreet.
                               </p>
                               <p>
                                   Dolor Magna Ridiculus Fermentum Ligula
                               </p>
                           </div>
                           <span class="task-no col-md-2">0-096857</span>
                       </a>
                   </li>
               </ul>
           </div>
           <div role="tabpanel" class="tab-pane" id="currenttasks">
               <ul class="tab__list">
                   <li class="list__element">
                       <a class="row">
                           <div class="task col-md-10">
                               <h3>AJOS</h3>
                               <p>
                                   Dolor Magna Ridiculus Fermentum Ligula
                               </p>
                           </div>
                           <span class="task-no col-md-2">0-096857</span>
                       </a>
                   </li>
               </ul>
           </div>
           <div role="tabpanel" class="tab-pane" id="finishedtasks">
           </div>
       </div>
   </div>

    Styleguide 3.4
*/
.nav-tabs {
  border-bottom-color: transparent;
}

.nav-tabs > li {
  width: 100%;
  background-color: #cccccc;
  margin-right: 5px;
  display: none;
}

.nav-tabs > li .show-tabs {
  display: none;
  position: absolute;
  right: 7px;
  color: #fff;
  top: 4px;
  padding: 10px;
  cursor: pointer;
}

.nav-tabs > li.active {
  background-color: transparent;
  display: block;
}

.nav-tabs > li.active .show-tabs {
  display: inline-block;
}

.nav-tabs > li.active > a {
  background-color: #ffffff;
  color: #fff;
}

.nav-tabs > li.active > a:link, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:active {
  background-color: #ffffff;
  color: #fff;
}

.nav-tabs > li:last-child {
  margin-right: 0;
}

.nav-tabs > li > a {
  border-color: transparent;
  margin-right: 0;
}

.nav-tabs > li > a:hover {
  background-color: #ffffff;
  color: #fff;
}

.tab-content {
  background: #fff;
  border-radius: 5px;
}

.tab-content .tab-pane .tab__list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.tab-content .tab-pane .tab__list .list__element {
  padding: 1.2em 2.615em 1em 2.615em;
  border-bottom: 1px solid #ffffff;
  position: relative;
}

.tab-content .tab-pane .tab__list .list__element:hover {
  background: #cccccc;
}

.tab-content .tab-pane .tab__list .list__element:hover a {
  text-decoration: none;
}

.tab-content .tab-pane .tab__list .list__element:hover a .task-number {
  background: #fff;
}

.tab-content .tab-pane .tab__list .list__element .task h3 {
  margin-top: 0;
  font-weight: bold;
  font-size: 1.077em;
  text-transform: uppercase;
}

.tab-content .tab-pane .tab__list .list__element .task p {
  word-wrap: break-word;
}

.tab-content .tab-pane .tab__list .list__element .task p:last-child {
  margin-bottom: 0;
}

.tab-content .tab-pane .tab__list .list__element .task-no {
  position: absolute;
  right: 34px;
  background: #e7edf1;
}

@media screen and (min-width: 768px) {
  .tab-content .tab-pane .tab__list .list__element .task-no {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .tab-content .tab-pane .tab__list .list__element .task-no {
    top: 19px;
    padding: 1px 10px;
  }
}

.tab-content .tab-pane .tab__list .list__element .task-date {
  text-align: right;
}

@media screen and (min-width: 1250px) {
  .nav-tabs {
    padding: 0 2.538em;
  }
  .nav-tabs > li {
    display: inline-block;
    width: auto;
    background-color: transparent;
  }
  .nav-tabs > li.active .show-tabs {
    display: none;
  }
  .nav-tabs > li.active > a {
    background-color: #fff;
    color: #333333;
  }
  .nav-tabs > li a {
    background-color: #cccccc;
  }
  .nav-tabs > li .show-tabs {
    display: none;
  }
  .tab-content .tab-pane .tab__list .list__element .task-number {
    position: absolute;
    top: 50%;
    right: 2.615em;
    margin-top: -11px;
    border-radius: 4px;
    padding: .2em 0;
  }
}

.ui-widget-content.group_tabs {
  border: 0;
}

.ui-tabs.group_tabs .ui-tabs-panel {
  padding: 1em .5em;
}

.group_tabs img {
  max-width: 100%;
}

.group_overview h1 {
  font-size: 16px;
  color: #006566;
  margin-top: 0;
}

.group_tabs .ui-tabs-nav li {
  margin: 1px .4em 0 0;
}

.group_tabs .ui-state-active a,
.group_tabs .ui-state-active a:link,
.group_tabs .ui-state-active a:visited {
  font-weight: bold;
}

.group_details .left,
.group_details .right {
  float: left;
  width: 200px;
  overflow: hidden;
}

.group_details .left {
  padding: 8px 8px;
  width: 764px;
  min-height: 232px;
  height: 232px;
  border: 1px solid #e0e0e0;
  margin-bottom: 20px;
  -moz-box-shadow: -5px 4px 5px -2px rgba(128, 128, 128, 0.35);
  -webkit-box-shadow: -5px 4px 5px -2px rgba(128, 128, 128, 0.35);
  box-shadow: -5px 4px 5px -2px rgba(128, 128, 128, 0.35);
  background-color: #fff;
  /*	background-color:#eeeeee;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #eeeeee), color-stop(1, #fbfbfb) );
	background:-moz-linear-gradient( center top, #eeeeee 5%, #fbfbfb 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#fbfbfb');
	*/
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.group_details .left ul {
  padding-left: 17px;
}

/*.group_details .left img { border:1px solid #d3dae8; }*/
.group_details .left .img {
  float: left;
  width: 350px;
}

.group_details .left .points {
  float: left;
  width: 356px;
  margin: 5px 0 0 18px;
}

.group_details .right {
  margin-left: 10px;
}

.group_details .right .slides {
  overflow: hidden;
  display: block;
  width: 966px;
  height: 250px;
}

.group_details .right .slides {
  width: 200px;
  height: 250px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.group_details .slides img {
  overflow: hidden;
  display: block;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.group_details p, .group_details ul, .group_details li {
  padding: 0;
  margin: 0;
  font-size: 11px;
}

.group_details p {
  margin-bottom: .5em;
}

.group_details ul {
  margin-bottom: 1em;
  padding-left: 30px;
}

.group_details h2 {
  color: #006566;
  margin: 0;
  padding: 0;
  margin-bottom: .5em;
  font-weight: bold;
}

.group_tabs table {
  width: 100%;
}

.group_tabs table,
.group_tabs td,
.group_tabs tr {
  border: 0;
  border-collapse: collapse;
}

.group_tabs table p {
  margin: 0;
}

.group_tabs td,
.group_tabs th {
  padding: 6px 6px;
}

.group_tabs tbody tr:nth-child(2n+2) td.x5-gray,
.group_tabs tr:nth-child(2n+2),
.catalog tbody tr:nth-child(2n+2),
.story tbody tr:nth-child(2n+2) {
  background: #f1f1f2;
}

.group_tabs a:hover {
  text-decoration: underline;
}

.cell-style-all-blue-with-75-black-underline {
  background: #669098;
}

p.s-charttitles {
  font-weight: normal;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.table-light-9pt-90-align-center {
  text-align: center;
}

.blue-15-,
.group_tabs tr.thead,
.catalog thead th,
.story thead td {
  background: #d9e3e5 !important;
  color: #333;
  font-weight: bold;
  text-align: left;
}

/*
    Box

    <p>The box takes the width of its container.</p>

    markup:
    <div class="box">
        <h3>Heading</h3>
        <p>Paragrahp</p>
    </div>
    <div class="box">
        <h3>Heading</h3>
        <p>Paragraph</p>
    </div>

    sg-wrapper:
    <div class="demo-container--box">
        <sg-wrapper-content/>
    </div>

    Styleguide 3.3
*/
.box {
  background: #fff;
  padding: 3.462em 2.308em 2.308em 2.308em;
  margin-bottom: 20px;
  border-radius: 5px;
}

.box:last-child {
  margin-bottom: 0;
}

.box h2 {
  margin-top: 0;
}

.demo-container--box {
  background: #ffffff;
  padding: 10px;
}

/*
    Link box

    <p>The box takes the width of its container.</p>

    markup:
    <div class="box box--links-list">
        <h2>Preferred tasks</h2>
        <ul class="links-list">
            <li>Task 1 <span class="glyphicon glyphicon-plus"></span></li>
            <li>Task 2 <span class="glyphicon glyphicon-plus"></span></li>
            <li>Task 3 <span class="glyphicon glyphicon-plus"></span></li>
            <li>Task 4 <span class="glyphicon glyphicon-plus"></span></li>
        </ul>
    </div>

    sg-wrapper:
    <div class="demo-container--box">
        <sg-wrapper-content/>
    </div>

    Styleguide 3.3.1
*/
.box--links-list {
  padding: 3.462em 0 2.308em;
}

.box--links-list h2 {
  padding-left: 1.2em;
  margin-bottom: 36px;
}

.box--links-list .links-list {
  padding: 0;
}

.box--links-list .links-list li {
  border-bottom: 1px solid #e7edf1;
  list-style: none;
  padding: .5em 2.308em;
}

.box--links-list .links-list li:first-child {
  border-top: 1px solid #e7edf1;
}

.box--links-list .links-list li:hover {
  background: #ffffff;
}

.box--links-list .links-list li span {
  float: right;
}

/*
    Contact box

    <p>The box takes the width of its container.</p>

    markup:
    <div class="box box--contact">
        <div class="contact-header">
            <h2>Contact Heading</h2>
            <h4>Company A/S</h4>
            <h5>Name</h5>
            <p>Title</p>
        </div>
        <div class="contact-info">
            <p><img src="frontend/images/icon_phone.png">+45 00 00 00 00</p>
            <p><img src="frontend/images/icon_letter.png">name@company.com</p>
            <p><img src="frontend/images/icon_globe.png">www.company.com</p>
            <img class="contact-image" src="frontend/images/placeholder.png">
        </div>
        <div class="contact-opening-hours">
            <table class="table">
                <thead>
                    <tr>
                        <th colspan="2">Opening hours</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>Monday - Friday</td>
                        <td>10.00 - 15.00</td>
                    </tr>
                    <tr>
                        <td>Weekend og holidays</td>
                        <td>11.00 - 14.00</td>
                    </tr>
                </tbody>
            </table>
        </div>
    </div>

    sg-wrapper:
    <div class="demo-container--box">
        <sg-wrapper-content/>
    </div>

    Styleguide 3.3.2
*/
.box--contact {
  padding: 40px 0;
}

.box--contact > * {
  padding: 0 27px;
}

.box--contact .contact-header h2 {
  margin-bottom: 6px;
}

.box--contact .contact-header h4 {
  margin: 0 0 30px 0;
  font-size: 1.077em;
  font-weight: 700;
}

.box--contact .contact-header h5 {
  margin: 0 0 6px 0;
  font-weight: 700;
}

.box--contact .contact-header .contact-image {
  width: 40%;
}

.box--contact .contact-info {
  position: relative;
  margin-top: 24px;
}

.box--contact .contact-info p {
  position: relative;
}

.box--contact .contact-info p i.fa {
  color: #153b3a;
  font-size: 14px;
}

.box--contact .contact-info p a {
  padding-left: 15px;
}

.box--contact .contact-opening-hours {
  margin-top: 36px;
  padding: 0;
  font-size: 14px;
}

.box--contact .contact-opening-hours table tr {
  border-bottom: 1px solid #e7edf1;
}

.box--contact .contact-opening-hours table tr th {
  padding: 6px 27px;
  border-bottom: 0;
}

.box--contact .contact-opening-hours table tr td {
  padding: 6px 0;
  width: 50%;
  border: none;
}

.box--contact .contact-opening-hours table tr td:first-child {
  padding-left: 27px;
}

/*
    Product box

    <p>The box takes the width of its container.</p>

    markup:
    <div class="box box--product">
        <h2>Your product</h2>
        <dl class="dl-horizontal">
            <dt>Fabric</dt>
            <dd>Baksi</dd>
            <dt>Variant</dt>
            <dd>WGB 20C</dd>
            <dt>Contractinfo</dt>
            <dd>2 year standard</dd>
            <dt>Article no</dt>
            <dd>Article no</dd>
        </dl>
    </div>

    sg-wrapper:
    <div class="demo-container--box">
        <sg-wrapper-content/>
    </div>

    Styleguide 3.3.3
*/
.box--product dl {
  margin-top: 26px;
  font-size: 14px;
}

.box--product dl dt {
  width: 97px;
  text-align: left;
  line-height: 1.769em;
}

.box--product dl dd {
  margin: 0;
  line-height: 1.769em;
}

.group-description {
  margin: 10px 0;
}

.product-id {
  /*float: right;*/
}

#subGroupListingTable {
  background-color: #eaebef;
}

#subGroupListingTable #subGroupListingHeader {
  text-align: center;
  background: #fdfdfd;
  background: linear-gradient(180deg, #fdfdfd 0%, #929292 100%);
  line-height: 2;
  color: #000000;
}

#subGroupListingTable .subGroupListing {
  font-size: 14px;
  color: #666666;
  font-weight: bold;
}

#subGroupListingTable .subGroupListing a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .thumbnails > form > li {
    padding: 0;
  }
  .thumbnail {
    margin: -1px 0 0;
    height: 120px;
    border-radius: 0;
    font-size: 13px;
  }
  .thumbnail .product-image > img {
    height: 110px;
    float: left;
    display: block;
    margin: 10px 0 0 10px;
    padding: 5px 5px 5px 0;
    width: auto;
  }
  .thumbnail .buy-product {
    padding: 0;
    margin-left: 10px;
  }
  .thumbnail .product-identification {
    margin: 0;
  }
  .thumbnail .product-description {
    margin: 2px 0 0;
  }
  .thumbnail .product-price {
    font-weight: bold;
    padding-left: 5px;
  }
  .thumbnail .row-link {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .product-id {
    float: none;
  }
}

@media (min-width: 768px) {
  .thumbnail {
    height: 540px;
    position: relative;
    font-size: 12px;
  }
  .thumbnail:hover {
    box-shadow: 0 0 8px 1px #444;
  }
  .thumbnail .product-image > img {
    height: 200px;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 10px 0	10px 0;
    width: auto;
  }
}

.thumbnails .product-name {
  display: inline;
}

.thumbnail button {
  vertical-align: text-bottom;
  float: left;
}

.thumbnail input {
  bottom: 8px;
  position: absolute;
  vertical-align: text-bottom;
}

.thumbnail span p {
  bottom: 28px;
  position: absolute;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .thumbnail .buy-product {
    position: absolute;
    bottom: 10px;
    padding-left: 0;
  }
  .thumbnail product-price {
    float: right;
    margin: 8px 0 0;
  }
  .thumbnails [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.pager {
  padding-left: 15px;
  margin: 0 0 20px;
}

.pager .previous > a {
  border-radius: 0 4px 4px 0;
}

.pager .previous > a:first-of-type {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.pager .next > a {
  border-radius: 4px 0 0 4px;
}

.pager .next > a:first-of-type {
  border-radius: 0 4px 4px 0;
  border-left: none;
}

.product-buttons {
  margin-top: 10px;
}

#product-title-small h1 {
  margin-top: 0;
}

#product-title-big {
  padding-left: 15px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  #product-item-big select {
    margin-top: 10px;
  }
  .product-item-price {
    color: #8c0033;
  }
  #product-header {
    margin: 10px 0;
  }
  #product-header .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding-left: 10px;
    margin-top: 10px;
  }
  .description-text {
    margin: 10px 5px 10px 5px;
    padding: 5px 0 0;
    border-top: 1px solid #CCC;
  }
}

@media (min-width: 768px) {
  .description-text {
    margin-top: 10px;
    padding: 10px 0 0;
    border-top: 1px solid #ccc;
  }
}

@media (max-width: 767px) {
  .pricelist .dataTable td.price {
    display: none;
  }
  .pricelist-img {
    width: 50px;
  }
}

@media (min-width: 768px) {
  .pricelist-img {
    width: 110px;
  }
  li.dropdown.open .dropdown-menu {
    border: none;
  }
  thead {
    background-color: #d9e3e5;
    font-weight: bold;
    color: #000000;
  }
}

.front-box-caption {
  min-height: 70px;
  background-color: #dcddde;
  color: #153b3a;
  font-weight: 600;
  font-size: 16px;
}

.front-box-caption > a {
  color: #153b3a;
  text-decoration: none;
}

.front-box-caption > a:hover {
  color: #23527c;
}

.frontpage-group-wrapper {
  margin: 20px 0;
  padding: 0 37px;
  background-color: white;
}

.frontpage-group-wrapper .frontpage-group a {
  text-decoration: none;
}

.frontpage-group-wrapper .frontpage-group img {
  max-width: 100%;
  padding-top: 15px;
  height: auto;
}

.frontpage-group-wrapper .frontpage-group .frontpage-group-title {
  font-size: 16pt;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #547074;
  font-weight: bold;
}

.frontpage-group-wrapper .frontpage-group .frontpage-group-caption {
  min-height: 50px;
  background-color: #dcddde;
  color: #153b3a;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
}

.frontpage-group-wrapper .frontpage-group div.frontpage-subgroups {
  padding-left: 0;
  position: relative;
}

.frontpage-group-wrapper .frontpage-group div.frontpage-subgroups > li {
  padding-top: 2px;
}

.frontpage-group-wrapper .frontpage-group div.frontpage-subgroups:not(.waltzer) {
  display: flex;
  justify-content: space-around;
}

.frontpage-group-wrapper .frontpage-group div.frontpage-subgroups .frontpage-subgroup-item {
  position: relative;
}

.frontpage-group-wrapper .frontpage-group div.frontpage-subgroups .frontpage-subgroup-item .frontpage-subgroup-caption {
  position: absolute;
  bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .frontpage-group-wrapper .frontpage-group div.frontpage-subgroups .frontpage-subgroup-item .frontpage-subgroup-caption {
    width: min-content;
    /*white-space: break-spaces;*/
    margin-left: auto;
    margin-right: auto;
  }
}

.frontpage-group-wrapper .frontpage-group div.frontpage-subgroups .mask .frontpage-subgroup-item {
  float: left;
}

.frontpage-group-wrapper .frontpage-group div.frontpage-subgroups .frontpage-subgroup-item {
  display: inline-block;
}

.grouppage-group img {
  max-width: 100%;
}

.grouppage-group .grouppage-group-caption {
  min-height: 65px;
  color: #153b3a;
  font-weight: 500;
  font-size: 15px;
  /*background-color:rgb(220,221,222);*/
  text-align: center;
}

.grouppage-group .grouppage-group-caption:hover {
  color: #23527c;
}

.grouppage-group a {
  text-decoration: none;
}

.grouppage-group a:hover {
  color: #23527c;
}

@media (min-width: 1250px) {
  .frontpage-group img {
    /*min-width:220px;
            width:220px;
            min-height:220px;
            height:220px;*/
  }
}

@media (min-width: 992px) {
  .frontpage-group, .grouppage-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.front-box-img, .group-box-img {
  margin: 0 0 0 0;
  border-radius: 15px 15px 0 0;
  max-width: 100%;
}

.sort-option {
  float: left;
}

.inventory-block {
  padding: 4px 0 10px 0;
}

.inventory-green {
  color: green;
}

.inventory-yellow {
  color: yellow;
}

.inventory-red {
  color: red;
}

th.inventory {
  text-align: center;
}

td.inventory {
  text-align: center;
}

.product-description-wrapper {
  height: 40px;
}

.row-mt {
  margin-top: 20px;
}

.row-mb {
  margin-bottom: 20px;
}

.variant-dimensions {
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

.variant-dimensions .variant-dimension {
  flex-grow: 1;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  margin-left: 0;
  margin-right: 5px;
  margin-bottom: 5px;
}

.variant-dimensions .variant-dimension:last-of-type {
  margin-right: 0;
}

.variant-dimensions.sideBySide {
  display: inline-block;
  text-align: inherit;
}

.variant-dimensions.sideBySide .variant-dimension {
  flex-grow: inherit;
  -ms-flex-direction: inherit;
  -webkit-flex-direction: inherit;
  flex-direction: inherit;
  margin-left: inherit;
  margin-right: inherit;
  margin-bottom: inherit;
}

.form-inline .variant-dimensions {
  display: inline-block;
}

.form-inline .variant-dimensions .variant-dimension {
  flex-grow: 0;
  -ms-flex-direction: inherit;
  -webkit-flex-direction: inherit;
  flex-direction: inherit;
  margin-left: inherit;
  margin-right: inherit;
  margin-bottom: inherit;
}

.form-group.sideBySide {
  display: inline-block;
  margin-bottom: 0;
  margin: 0;
}

div.swapImageContainer a.rotateImg img {
  max-width: 60px;
  max-height: 100px;
  margin-bottom: 20px;
  padding: 1px;
  border: solid 1px #888;
}

@media screen and (max-width: 767px) {
  div.swapImageContainer a.rotateImg img {
    max-width: 100%;
  }
}

h1.GroupTitle, h1.SeriesDesc, h2.GroupSeries {
  margin-top: 10px;
  color: #0d004c;
  font-style: italic;
  position: relative;
  font-size: 3em;
}

h1.GroupTitle {
  display: inline-block;
}

h1.SeriesDesc {
  font-size: 35px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}

#tagline {
  font-size: 15px;
  color: #dfae25;
  position: absolute;
  right: 0;
  bottom: 5px;
  font-style: normal;
}

h1.GroupTitle {
  font-size: 3em;
  padding-bottom: 10px;
}

h2.GroupSeries {
  font-size: 2em;
}

h1.GroupTitle::after, h1.SeriesDesc::after {
  background: #dfae25;
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
}

h1.GroupTitle::after {
  background: -webkit-linear-gradient(left, #dfae25, white);
  height: 5px;
}

h1.SeriesDesc::after {
  height: 2px;
}

p.section-headings {
  text-transform: uppercase;
  color: #0d004c;
  font-weight: bold;
}

div#product-page .KeyPoints {
  margin-bottom: 25px;
  font-size: 16px;
}

div#product-page .KeyPoints ul:not(.ui-tabs-nav):not(.breadcrumb):not(.dropdown-menu.inner) {
  padding-left: 0;
  margin-bottom: 0;
}

div#product-page .KeyPoints ul:not(.ui-tabs-nav):not(.breadcrumb):not(.dropdown-menu.inner) > li {
  color: #23527c;
  font-size: 16px;
}

div#product-page .KeyPoints ul:not(.ui-tabs-nav):not(.breadcrumb):not(.dropdown-menu.inner) > li::before {
  content: '';
  width: 0;
  margin-left: 0;
}

div#product-page .Features {
  background-color: rgba(10, 69, 84, 0.05);
  padding: 10px 0;
  margin-bottom: 15px;
}

div#product-page .Features ul:not(.ui-tabs-nav):not(.breadcrumb):not(.dropdown-menu.inner) {
  margin-bottom: 0;
}

div#product-page .Features ul:not(.ui-tabs-nav):not(.breadcrumb):not(.dropdown-menu.inner) > li {
  font-style: italic;
  padding-bottom: 2px;
}

div#product-page .Features ul:not(.ui-tabs-nav):not(.breadcrumb):not(.dropdown-menu.inner) > li::before {
  color: #dba207;
  font-style: normal;
}

div#product-page .group-iconimage img.iconimage {
  float: right;
  max-height: 40px;
  max-width: 100%;
}

div#product-page .group_description_apps {
  margin-top: 25px;
}

div#product-page .caption {
  text-align: center;
}

form.product-filter-form div.dropdown {
  padding-left: 0;
  padding-right: 0;
}

form.product-filter-form div.dropdown .input-group {
  width: 100%;
}

form.product-filter-form div.dropdown .input-group .control-label {
  border: solid 1px #cccccc;
  width: 100%;
  padding-left: 5px;
  margin-bottom: 0px;
  border-collapse: separate;
}

form.product-filter-form div.dropdown .input-group .input-group-btn:last-child > .btn {
  margin-left: initial;
}

.techtips-row, .newproducts-row {
  display: flex;
  flex-wrap: wrap;
}

.techtips-box a {
  text-decoration: none;
}

.techtips-box ul.techtips {
  list-style: none;
  padding-left: 0px;
}

.techtips-box ul.techtips > li {
  border-bottom: solid 1px lightgray;
  padding: 5px 0;
}

.techtips-box img.video-thumbnail {
  width: 100%;
}

iframe.cboxIframe {
  width: 100%;
  height: 100%;
}

.newproducts-row h3 {
  border-top: solid 1px black;
  margin-top: 10px;
  padding-top: 10px;
}

.newproducts-row a {
  text-decoration: none;
}

.newproducts-box {
  padding-bottom: 20px;
}

.newproducts-box img {
  max-width: 100%;
}

.newproducts-box .newproducts-name {
  font-weight: 500;
  font-size: 14px;
}

.newproducts-box .newproducts-description {
  max-height: 6em;
}

.fp-links {
  margin-top: 20px;
  padding-top: 10px;
  background-color: rgba(10, 69, 84, 0.05);
}

.fp-links a {
  text-decoration: none;
}

@media screen and (max-width: 991px) and (max-height: 500px) {
  .fp-links {
    order: 3;
  }
}

@media screen and (max-width: 767px) {
  .fp-links {
    order: 3;
  }
}

.fp-links .fp-link-box {
  padding-bottom: 15px;
}

.fp-links .fp-link-box .fp-link-header {
  font-size: 14pt;
  padding-bottom: 15px;
}

.fp-links .fp-link-box .fp-link-img img {
  max-width: 100%;
  height: auto;
}

.fp-links .fp-link-box .fp-link-text {
  font-size: 12pt;
}

@media screen and (min-width: 992px) {
  .fp-links .fp-link-box {
    padding-left: 55px;
    padding-right: 55px;
  }
}

@media screen and (min-width: 992px) {
  .fp-links .fp-link-box:first-child {
    padding-left: 90px;
  }
}

@media screen and (min-width: 992px) {
  .fp-links .fp-link-box:last-child {
    padding-right: 90px;
  }
}

@media screen and (min-width: 992px) {
  .fp-links.group-fp-links .fp-link-box {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (min-width: 992px) {
  .fp-links.group-fp-links .fp-link-box:first-child {
    padding-left: 45px;
  }
}

@media screen and (min-width: 992px) {
  .fp-links.group-fp-links .fp-link-box:last-child {
    padding-right: 45px;
  }
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
}

#video-library {
  margin-top: 15px;
}

#video-library a.youtube_popup {
  text-align: center;
}

#video-library a.youtube_popup .video-thumbnail {
  width: 100%;
}

a.youtube_popup {
  position: relative;
  display: block;
}

a.youtube_popup .youtube-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent url(/images/senvaplay.png) top left/contain no-repeat;
  opacity: 0.9;
}

.auto-resizable-iframe {
  max-width: 640px;
  margin: 0px auto;
  z-index: 100;
}

.auto-resizable-iframe > div {
  position: relative;
  padding-bottom: 75%;
  height: 0px;
}

.auto-resizable-iframe iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

#product-item-small div.product-img {
  min-height: 110px;
}

.product-img {
  max-width: 100%;
}

.panel-heading a:before {
  font-family: 'Glyphicons Halflings';
  content: "\e114";
  float: right;
  transition: all 0.5s;
}

.panel-heading.active a:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.validation-summary-valid.alert {
  background-color: transparent;
  border: 0 solid;
  padding: 0;
}

.field-validation-error {
  color: #e80c4d;
  font-weight: bold;
}

.shrink {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

@media screen and (max-width: 380px) {
  .shrink {
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}

.validcard {
  position: relative;
}

.validcard .fa-check {
  position: absolute;
  top: 11px;
  right: 7px;
  font-size: 15px;
  visibility: hidden;
}

#auth_net_error_message {
  margin-top: 12px;
}

#auth_net_error_message p {
  color: #cc6666;
}

#cl-message-div li {
  color: #cc6666;
}

.info, .success, .warning, .error, .validation {
  margin: 10px 0px;
  padding: 15px 10px 15px 50px;
}

@media screen and (max-width: 600px) {
  .info, .success, .warning, .error, .validation {
    margin: 1px 0px;
    padding: 5px 0px 5px 10px;
  }
}

.missing-company-name {
  color: red;
  padding-left: 10px;
  padding-right: 10px;
}

/* General Styling */
/*body {
    padding: 60px 0;
    font-family: sans-serif;
    color: #333;
}

h1, h2 {
    width: 960px;
    margin: 0 auto 12px auto;
}

a {
    color: #333;
    text-decoration: none;
}

footer {
    width: 99%;
    text-align: center;
    padding: 20px 0;
}*/
.outerWrapper {
  text-align: left;
  position: relative;
  margin: 0px auto;
  /*width: 960px;*/
}

.frontpage-subgroup-item {
  /*float: left;*/
  margin: 0px 2px;
  width: 130px;
  padding: 0px;
  height: 170px;
  background-color: #fff;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .frontpage-subgroup-item {
    height: 166px;
  }
}

.frontpage-subgroup-item div {
  background: #ddd;
  width: 99%;
  height: 99%;
  color: white;
  color: #b3b3b3;
  text-align: center;
  line-height: 162px;
  font-size: 60px;
  border-radius: 5px;
  border: 1px solid #b3b3b3;
}

.left-nav-btn, .right-nav-btn {
  position: absolute;
  width: 37px;
  height: 37px;
  top: 55px;
  cursor: pointer;
  opacity: 0.8;
  background: transparent url("/Content/images/simplearrows.png") top left no-repeat;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.left-nav-btn {
  left: -36px;
}

.right-nav-btn {
  right: -36px;
  background-position: top right;
}

.left-nav-btn:hover, .right-nav-btn:hover {
  opacity: 1;
}

/* Vertical Mode */
.vert.outerWrapper {
  margin: 50px auto 60px auto;
  width: 204px;
  height: 456px;
}

.vert .frontpage-subgroup-item {
  float: left;
  margin-bottom: 48px;
  width: 162px;
}

.vert .left-nav-btn, .vert .right-nav-btn {
  position: absolute;
  width: 37px;
  height: 37px;
  cursor: pointer;
  left: 82px;
  background: transparent url("/images/arrows_vert.png") top left no-repeat;
}

.vert .left-nav-btn {
  top: -60px;
}

.vert .right-nav-btn {
  top: auto;
  bottom: -60px;
  background-position: bottom left;
}

.leftWrapper {
  width: 48%;
  float: left;
}

.rightWrapper {
  width: 48%;
  float: right;
}

.leftWrapper h2, .rightWrapper h2 {
  width: 100%;
  text-align: center;
}

.outerWrapper2 .frontpage-subgroup-item {
  margin-right: 50px;
  width: 110px;
  padding: 20px;
}

/* Pager */
.pager {
  line-height: 100px;
  text-align: center;
}

.pager > span {
  cursor: pointer;
  border-radius: 8px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #DDDDDD;
  border: 1px solid #B3B3B3;
  margin: 0 4px;
  overflow: none;
}

.pager > span.active {
  background: #B3B3B3;
}

.pager > span > span {
  display: none;
}

/* Counter (See Example 7) */
#counter {
  margin-top: -30px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding-bottom: 20px;
}

.service-order {
  margin-top: 20px;
}

.service-order .back-btn {
  margin-bottom: 15px;
}

.service-order .so-create-header {
  margin-left: 20px;
}

.service-order #ServiceItemInfo .form-horizontal {
  padding-top: 20px;
}

.pull-right {
  float: right !important;
}

.btn-actions > a {
  margin-left: 10px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  color: #000;
}

.searchFilterBox {
  box-shadow: none;
}

.searchFilterBox .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.searchFilterBox button span {
  font-size: 13px;
  font-weight: normal;
}

img[src$=".svg"] {
  width: 100%;
}

.clearer {
  z-index: 10;
  pointer-events: auto;
}

.label-around-bootstrap-select {
  overflow: initial !important;
}

.label-around-bootstrap-select .bootstrap-select {
  float: right !important;
  width: 170px !important;
  height: 25px;
}

.label-around-bootstrap-select .bootstrap-select button.dropdown-toggle {
  height: 40px;
  border: 2px solid #f1f1f1;
  color: #999999;
}

.label-around-bootstrap-select .bootstrap-select button.dropdown-toggle span {
  line-height: 25px;
  color: #999999;
}

.label-around-bootstrap-select .bootstrap-select button.dropdown-toggle .bs-caret .caret {
  color: #999999;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.reducePaddingToAlign {
  padding-left: 16px;
  padding-right: 16px;
}

.overflowing-200 {
  overflow: hidden;
  max-width: 200px;
  display: inline-block;
  text-overflow: ellipsis;
}

.text-top {
  vertical-align: text-top;
}

.rating {
  display: flex;
  justify-content: space-around;
  font-size: 25px;
  margin-bottom: 35px;
  border-bottom: 1px solid black;
  padding: 15px 0 15px 0;
}

.rating-container input[type="radio"] {
  margin-top: 10px;
}

.rating-container .radio-inline, .rating-container div {
  padding-top: 18px;
}

.has-error {
  color: #a94442;
}

.welcomepage-header {
  font-size: 4.5em;
}

.form-box .form-box-content label select.time-picker {
  width: 70px;
  float: right;
  padding-left: 8px;
}

.customer-address-search-input {
  margin: 4px;
}

.response-date {
  position: relative;
  z-index: 2;
}

.comment {
  white-space: pre-line;
}

.department-Highlight .text {
  font-weight: 700;
}

/* Checkout process */
.select-payment-method div {
  margin: 0 auto;
}

.select-payment-method .payment-method {
  height: 50px;
  width: auto;
}

.vertical-align {
  display: inline-block;
  vertical-align: middle;
}

.cart-button {
  margin-left: 0;
}

#cart-total-list-history {
  margin-top: -20px;
}

.checkout-shipping-address .form-group {
  margin-bottom: 0;
}

.checkout-shipping-address {
  position: relative;
}

.shipping-address-info {
  position: absolute;
  bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.checkout-wrap {
  color: #444;
  font-family: 'PT Sans Caption', sans-serif;
  font-display: optional;
  margin: 40px auto;
  max-width: 1200px;
  position: relative;
  width: 100%;
}

ul.checkout-bar {
  margin: 0 -40px;
}

ul.checkout-bar li {
  color: #ccc;
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px 14px 80px;
  position: relative;
}

ul.checkout-bar li:before {
  -webkit-box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
  background: #ddd;
  border: 2px solid #FFF;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  left: 20px;
  line-height: 37px;
  height: 35px;
  position: absolute;
  text-align: center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  top: 4px;
  width: 35px;
  z-index: 999;
}

ul.checkout-bar li.active {
  color: #8bc53f;
  font-weight: bold;
}

ul.checkout-bar li.active:before {
  background: #8bc53f;
  z-index: 999;
}

ul.checkout-bar li.visited {
  background: #ECECEC;
  color: #57aed1;
  z-index: 999;
}

ul.checkout-bar li.visited:before {
  background: #57aed1;
  z-index: 999;
}

ul.checkout-bar li:nth-child(1):before {
  content: "1";
}

ul.checkout-bar li:nth-child(2):before {
  content: "2";
}

ul.checkout-bar li:nth-child(3):before {
  content: "3";
}

ul.checkout-bar a {
  color: #57aed1;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  .checkout-bar li.active:after {
    -webkit-animation: myanimation 3s 0;
    -moz-animation: myanimation 3s 0;
    -o-animation: myanimation 3s 0;
    animation: myanimation 3s 0;
    background-size: 35px 35px;
    background-color: #8bc53f;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    -webkit-box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    content: "";
    height: 15px;
    width: 100%;
    left: 50%;
    position: absolute;
    top: -50px;
    z-index: 0;
  }
  .checkout-bar li.active:last-child:after {
    -webkit-animation: myanimation 3s 0;
    -moz-animation: myanimation 3s 0;
    -o-animation: myanimation 3s 0;
    animation: myanimation 3s 0;
    background-size: 35px 35px;
    background-color: #8bc53f;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    -webkit-box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    content: "";
    height: 15px;
    width: 60.5%;
    border-radius: 15px;
    left: 50%;
    position: absolute;
    top: -50px;
    z-index: 0;
  }
  .checkout-wrap {
    margin: 30px auto;
    padding-bottom: 30px;
  }
  ul.checkout-bar {
    -webkit-box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    background-size: 35px 35px;
    background-color: #EcEcEc;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
    border-radius: 15px;
    height: 15px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    width: 100%;
  }
  ul.checkout-bar:before {
    background-size: 35px 35px;
    background-color: #57aed1;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    -webkit-box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    content: " ";
    height: 15px;
    left: 0;
    position: absolute;
    width: 15%;
  }
  ul.checkout-bar.checkout-two-step:before {
    width: 25%;
  }
  ul.checkout-bar li {
    display: inline-block;
    margin: 50px 0 0;
    padding: 0;
    text-align: center;
    width: 32%;
  }
  ul.checkout-bar.checkout-two-step li {
    width: 49%;
  }
  ul.checkout-bar li:before {
    height: 45px;
    left: 40%;
    line-height: 45px;
    position: absolute;
    top: -65px;
    width: 45px;
    z-index: 99;
  }
  ul.checkout-bar.checkout-two-step li:before {
    left: 46%;
  }
  ul.checkout-bar li.visited {
    background: none;
  }
  ul.checkout-bar li.visited:after {
    background-size: 35px 35px;
    background-color: #57aed1;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    -webkit-box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    content: "";
    height: 15px;
    left: 50%;
    position: absolute;
    top: -50px;
    width: 100%;
    z-index: 99;
  }
}

.shipping-address-details .form-control-static {
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.delete-confirmation.modal {
  z-index: 10000;
}

.product-quantity .input-sm {
  height: 23px;
  font-size: 13px;
}

.product-quantity .form-control {
  display: inline;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
  .product-quantity .input-sm {
    height: 26px;
    font-size: 12px;
  }
  .product-quantity .sideBySide {
    height: 24px;
    margin-left: 4px;
  }
}

.cart-table-responsive {
  overflow: hidden;
  overflow-x: auto;
  clear: both;
  width: 100%;
}

#cart-list {
  min-width: 721px;
}

#cart-list .depending-item {
  padding-left: 15px;
}

.form-control.shipment-date.datepicker {
  width: 85px;
  float: right;
}

#clFrame {
  width: 100%;
  border: none;
}

@media screen and (max-width: 380px) {
  #clFrame {
    height: 280px;
  }
}

@media screen and (min-width: 380px) {
  #clFrame {
    height: 255px;
  }
}

@media screen and (min-width: 580px) {
  #clFrame {
    height: 225px;
  }
}

.modal-dialog-center {
  height: 100%;
  display: flex;
  align-items: center;
}

.modal-dialog-center .modal-content {
  margin: 0 auto;
}

.new-account {
  margin-top: 15px;
}

.account-wall {
  margin-top: 20px;
  padding: 40px 0px 20px 0px;
  background-color: #f7f7f7;
  -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.account-wall > form {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}

.account-wall > form .alert {
  margin-bottom: 12px;
}

.account-wall > form .alert ul {
  list-style: none;
  margin: 0;
  -webkit-padding-start: 0;
}

.account-wall > form > input[type="password"], .account-wall > form input[type="text"] {
  width: 100%;
  margin-bottom: 12px;
}

.account-wall > form .need-help {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .account-wall > form {
    padding-left: 20px;
  }
}

@media screen and (min-width: 768px) {
  .account-wall > form {
    margin-top: 7px;
  }
}

.account-wall > form .checkbox {
  padding-top: 10px;
}

.account-wall > img {
  width: 24px;
  height: 32px;
  margin: 0 auto 10px;
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.account-wall .lock {
  text-align: center;
  font-size: 20px;
}

.account-wall .info-text {
  padding: 0 15px 0 15px;
}

span.alert {
  line-height: 3em;
}

#google-maps {
  text-align: center;
}

#google-maps > p > iframe {
  width: 100%;
}

#contact-info-boxes-container > div:last-child {
  text-align: right;
}

@media (max-width: 767px) {
  #contact-info-boxes-container > div:last-child {
    text-align: left;
  }
}

#contact-info-boxes-container > div:nth-child(2) {
  text-align: center;
}

@media (max-width: 767px) {
  #contact-info-boxes-container > div:nth-child(2) {
    text-align: left;
  }
}

.breadcrumb {
  background-color: #fff;
  color: #ccc;
  margin: 0 0 0 0;
  padding: 8px 15px;
  border: none;
}

.breadcrumb > li > a.active {
  color: #999999;
}

#sitesearch {
  margin: 20px 0 0 0;
  display: none;
}

a.search-toggle {
  color: #0a4554;
  width: 50px;
}

@media screen and (max-width: 767px) {
  a.search-toggle {
    padding-left: 14px;
  }
}

@media screen and (max-width: 991px) {
  a.search-toggle {
    float: right;
    margin-top: 10px;
    padding-left: 21px;
    color: #ffffff;
  }
}

#orderLookup {
  margin-top: 12px;
}

#frmProductSearch {
  padding-right: 0px;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  #frmProductSearch {
    display: none;
  }
}

@media screen and (min-width: 992px) and (max-width: 1249px) {
  #frmProductSearch {
    max-width: calc(100% - 236px);
  }
}

#frmProductSearch div.input-group-btn {
  z-index: 2;
}

#sidebarSearch {
  z-index: 10000;
}

.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.right .modal-body {
  padding: 0 0 80px;
}

.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
  right: 0;
}

.modal-content {
  border-radius: 0;
  border: none;
}

.modal-header {
  border-bottom-color: #EEEEEE;
  background-color: #FAFAFA;
}

.sidebar-search-result > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-search-result > ul li {
  border-bottom: 1px solid #e7edf1;
  width: 320px;
}

.sidebar-search-result > ul li article {
  padding: 6px 20px;
}

.sidebar-search-result > ul li span {
  padding: 0 8px 0 0;
}

.search-item h5 {
  font-weight: 600;
}

.search-item-heading {
  color: white;
  background-color: black;
}

.search-item-heading h5 {
  font-weight: 600;
  width: 100%;
  margin-left: 5px;
  color: white;
  height: 100%;
  margin-top: 0;
  padding-top: 7px;
}

.sidebar .sidebar-nav.navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}

.sidebar .sidebar-search {
  padding: 15px;
}

.sidebar ul li {
  border-bottom: 1px solid #e7e7e7;
}

.sidebar ul li a.active {
  background-color: #eeeeee;
}

.sidebar .arrow {
  float: right;
}

.sidebar .fa.arrow:before {
  content: "\f104";
}

.sidebar .active > a > .fa.arrow:before {
  content: "\f107";
}

.sidebar .nav-second-level li,
.sidebar .nav-third-level li {
  border-bottom: none !important;
}

.sidebar .nav-second-level li a {
  padding-left: 22px;
}

.sidebar .nav-third-level li a {
  padding-left: 37px;
}

@media (min-width: 768px) {
  .sidebar {
    z-index: 1;
    margin-top: 51px;
  }
}

div.gs1-info {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  background-color: aliceblue;
}

div.gs1-modal, div.gs1-info div.modal-header {
  background-color: aliceblue;
}

div.gs1-block {
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 0;
  margin-right: 0;
}

div.gs1-block-right-adjusted {
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 0;
  margin-right: -10px;
}

div.gs1-block > div {
  background-color: white;
  margin-right: 10px;
  margin-left: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

div.gs1-block > div:last-child {
  padding-bottom: 15px;
}

.gs1-first-block-elm {
  padding-top: 10px;
}

.gs1-last-block-elm {
  padding-bottom: 10px;
}

div.gs1-label {
  /*padding-left: 10px !important;*/
}

div.shortcol {
  padding-right: 0;
  padding-left: 0;
}

div.gs1-label span.title {
  padding-right: 5px;
  font-weight: bold;
}

div.gs1-label div.title {
  padding-right: 5px;
  font-weight: bold;
}

div.gs1-info h4.title {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
}

table.gs1-measurements-table {
  width: 100%;
}

div.no-margin-right {
  margin-right: 0 !important;
}

div.no-margin-left {
  margin-left: 0 !important;
}

div.gs1-block > div.gs1-picture-container {
  max-width: 100%;
  min-width: 100%;
  min-height: 225px;
  max-height: 225px;
  display: table;
  background-color: aliceblue;
}

div.gs1-inner-picture-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 30px;
}

img.gs1-picture {
  max-width: 100%;
  max-height: 350px;
}

@media screen {
  div.gs1-large-margin {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}

@media screen {
  div.gs1-negative-margin {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }
}

@media screen {
  div.big-padding {
    padding-left: 15px !important;
  }
}

table.gs1-measurements-table td, table.gs1-measurements-table th {
  text-align: center;
}

@media screen {
  .gs1-right-align {
    text-align: right;
    padding-right: 15px !important;
  }
  .full-width-height {
    width: 100%;
    height: 100%;
  }
}

i.gs1-popup-button {
  font-size: 16px;
  color: blue;
}

.gs1-popup-button:hover {
  cursor: pointer;
}

@media print {
  .gs1-picture-container {
    max-width: 300px;
    max-height: 300px;
  }
  .noprint {
    display: none;
    width: 0;
    height: 0;
  }
  img {
    max-height: 300px;
    max-width: 300px;
  }
}

.news-template-heading {
  font-size: 1.923em;
  font-weight: 300;
  margin: 6px 12px;
}

.news-template-htmltext {
  font-size: 13px;
  margin: 6px 12px;
}

.news-template-img {
  margin: 6px 18px;
}

.download-template-heading {
  font-size: 1.923em;
  font-weight: 300;
  margin: 6px 0px;
}

.download-template-text {
  font-size: 13px;
  margin: 6px 0px;
}

ul.changelog li {
  list-style: none;
}

ul.changelog li ul {
  padding-top: 10px;
  padding-bottom: 25px;
  padding-left: 30px;
}

ul.changelog li ul li {
  list-style: disc;
}

ul.changelog li ul li ul {
  padding-bottom: 0;
  padding-top: 0;
}

h1.lined {
  width: 100%;
  margin: .7em auto;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

h1.lined:before, h1.lined:after {
  content: "";
  display: inline-block;
  width: 50%;
  margin: -10px .5em 0 -55%;
  vertical-align: middle;
  border-bottom: 2px solid;
}

h1.lined:after {
  margin: -10px -55% 0 .5em;
}

h2.lined {
  width: 100%;
  margin: .7em auto;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

h2.lined:before, h2.lined:after {
  content: "";
  display: inline-block;
  width: 50%;
  margin: -10px .5em 0 -55%;
  vertical-align: middle;
  border-bottom: 2px solid;
}

h2.lined:after {
  margin: -10px -55% 0 .5em;
}

h3.lined {
  width: 100%;
  margin: .7em auto;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

h3.lined:before, h3.lined:after {
  content: "";
  display: inline-block;
  width: 50%;
  margin: -10px .5em 0 -55%;
  vertical-align: middle;
  border-bottom: 2px solid;
}

h3.lined:after {
  margin: -10px -55% 0 .5em;
}

h4.lined {
  width: 100%;
  margin: .7em auto;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

h4.lined:before, h4.lined:after {
  content: "";
  display: inline-block;
  width: 50%;
  margin: -10px .5em 0 -55%;
  vertical-align: middle;
  border-bottom: 2px solid;
}

h4.lined:after {
  margin: -10px -55% 0 .5em;
}

h5.lined {
  width: 100%;
  margin: .7em auto;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

h5.lined:before, h5.lined:after {
  content: "";
  display: inline-block;
  width: 50%;
  margin: -10px .5em 0 -55%;
  vertical-align: middle;
  border-bottom: 2px solid;
}

h5.lined:after {
  margin: -10px -55% 0 .5em;
}

h6.lined {
  width: 100%;
  margin: .7em auto;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
}

h6.lined:before, h6.lined:after {
  content: "";
  display: inline-block;
  width: 50%;
  margin: -10px .5em 0 -55%;
  vertical-align: middle;
  border-bottom: 2px solid;
}

h6.lined:after {
  margin: -10px -55% 0 .5em;
}

video.video-viewer-video {
  max-width: 100%;
}

.nounderline a {
  text-decoration: none;
}

.rma-return-block > div {
  padding-left: 30px;
  padding-right: 30px;
}

.rma-return-block {
  margin-bottom: 20px;
  padding-top: 5px;
}

.rma-return-block:nth-child(2n) {
  background-color: #bbb;
}

.rma-return-block:nth-child(2n+1) {
  background-color: #ddd;
}

/* Styleguide structure */
/*
Base

Styleguide 1
*/
/*
Layout

Styleguide 2
*/
/*
Components

Styleguide 3
*/
