@-webkit-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-moz-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30%, 70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.dropzone, .dropzone * {
    box-sizing: border-box;
}

.dropzone {
    min-height: 150px;
    max-width: 60%;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: white;
    padding: 54px 54px;
}

.dropzone.dz-clickable {
    cursor: pointer;
}

.dropzone.dz-clickable * {
    cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
    cursor: pointer;
}

.dropzone.dz-started .dz-message {
    display: none;
}

.dropzone.dz-drag-hover {
    border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5;
}

.dropzone .dz-message {
    text-align: center;
    margin: 4.56em 0;
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px;
    text-align: center;
    top: 50%; /*   left:45%; */
}

.dropzone .dz-preview:hover {
    z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 20px;
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
    background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
    border-radius: 20px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}

.dropzone .dz-preview .dz-image img {
    display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    -moz-transition: width 300ms ease-in-out;
    -ms-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: linear-gradient(to bottom, #be2626, #a92222);
    padding: 0.5em 1.2em;
    color: white;
}

.dropzone .dz-preview .dz-error-message:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626;
}

.dropzone .radio-unit {
    margin: .2em 10px;
    text-align: center
}

.dropzone .split-input {
    font-weight: 300;
    margin-right: 30px
}

.dropzone .next-step {
    margin-top: 5em
}

.dropzone .dropzone-proceed-button {
}

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

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

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],
template {
    display: none
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a,
    a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: ""
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr,
    img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,
    .table th {
        background-color: #fff !important
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important
    }
}

* {
    box-sizing: border-box
}

*:before,
*:after {
    box-sizing: border-box
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #333;
    text-decoration: none
}

a:hover,
a:focus {
    color: #009EC0;
    text-decoration: underline
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

[role="button"] {
    cursor: pointer
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
    font-size: 65%
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
    font-size: 75%
}

h1,
.h1 {
    font-size: 36px
}

h2,
.h2 {
    font-size: 30px
}

h3,
.h3 {
    font-size: 24px
}

h4,
.h4 {
    font-size: 18px
}

h5,
.h5 {
    font-size: 14px
}

h6,
.h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px
    }
}

small,
.small {
    font-size: 85%
}

mark,
.mark {
    background-color: #fcf8e3;
    padding: .2em
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #009EC0
}

a.text-primary:hover,
a.text-primary:focus {
    color: #00748d
}

.text-success {
    color: #3c763d
}

a.text-success:hover,
a.text-success:focus {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:hover,
a.text-info:focus {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:hover,
a.text-warning:focus {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:hover,
a.text-danger:focus {
    color: #843534
}

.bg-primary {
    color: #fff;
    background-color: #009EC0
}

a.bg-primary:hover,
a.bg-primary:focus {
    background-color: #00748d
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:hover,
a.bg-success:focus {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:hover,
a.bg-info:focus {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:hover,
a.bg-warning:focus {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:hover,
a.bg-danger:focus {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dt,
dd {
    line-height: 1.42857143
}

dt {
    font-weight: bold
}

dd {
    margin-left: 0
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
    margin-bottom: 0
}

blockquote footer,
blockquote small,
blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right
}

.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
    content: ''
}

.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
    content: '\00A0 \2014'
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

@media (min-width: 1230px) {
    .container {
        width: 1200px
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0
}

.table > tbody + tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #dff0d8
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f2dede
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc
}

.table-responsive {
    overflow-x: auto;
    min-height: .01%
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }

    .table-responsive > .table {
        margin-bottom: 0
    }

    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap
    }

    .table-responsive > .table-bordered {
        border: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0
    }
}

.modal-content .table-responsive {
    overflow: visible
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold
}

input[type="search"] {
    box-sizing: border-box
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

input[type="file"] {
    display: block
}

input[type="range"] {
    display: block;
    width: 100%
}

select[multiple],
select[size] {
    height: auto
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px
    }

    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: 30px
    }

    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        line-height: 46px
    }
}

.form-group {
    margin-bottom: 15px
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.radio label,
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px
}

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px
}

.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

textarea.input-sm,
select[multiple].input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-lg {
    height: 46px;
    line-height: 46px
}

textarea.input-lg,
select[multiple].input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-error .form-control:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label ~ .form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 0;
    color: #737373;
    min-height: 21px;
    font-size: 12px
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 5;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
        width: auto
    }

    .form-inline .input-group > .form-control {
        width: 100%
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio label,
    .form-inline .checkbox label {
        padding-left: 0
    }

    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.333333px;
        font-size: 18px
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn:hover,
.btn:focus,
.btn.focus {
    color: #333;
    text-decoration: none
}

.btn:active,
.btn.active {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    box-shadow: none
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default:focus,
.btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #009EC0;
    border-color: #0089a7
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #00748d;
    border-color: #002027
}

.btn-primary:hover {
    color: #fff;
    background-color: #00748d;
    border-color: #005769
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #00748d;
    border-color: #005769
}

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
    color: #fff;
    background-color: #005769;
    border-color: #002027
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #009EC0;
    border-color: #0089a7
}

.btn-primary .badge {
    color: #009EC0;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success:focus,
.btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    background-image: none
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info:focus,
.btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85
}

.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    background-image: none
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning:focus,
.btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d
}

.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    background-image: none
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger:focus,
.btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19
}

.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    background-image: none
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    color: #333;
    font-weight: normal;
    border-radius: 0
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent
}

.btn-link:hover,
.btn-link:focus {
    color: #009EC0;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #777;
    text-decoration: none
}

.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block + .btn-block {
    margin-top: 5px
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: .35s;
    transition-timing-function: ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropup,
.dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #fff;
    background-color: #009EC0
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #009EC0
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #777
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled false);
    cursor: not-allowed
}

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: ""
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    float: left
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
    z-index: 2
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
    margin-left: 5px
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical > .btn-group > .btn {
    float: none
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified > .btn-group .btn {
    width: 100%
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px
}

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px
}

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
    z-index: 2
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

.nav > li {
    position: relative;
    display: block
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.nav > li.disabled > a {
    color: #777
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
    color: #777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: #eee;
    border-color: #333
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav > li > a > img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.nav-tabs.nav-justified > li {
    float: none
}

.nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0
    }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.nav-pills > li {
    float: left
}

.nav-pills > li > a {
    border-radius: 4px
}

.nav-pills > li + li {
    margin-left: 2px
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #009EC0
}

.nav-stacked > li {
    float: none
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified {
    width: 100%
}

.nav-justified > li {
    float: none
}

.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-justified > li > a {
        margin-bottom: 0
    }
}

.nav-tabs-justified {
    border-bottom: 0
}

.nav-tabs-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 40px;
    margin-bottom: 0;
    border: 1px solid transparent
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 0
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important
    }

    .navbar-collapse.in {
        overflow-y: visible
    }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px
}

@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px
    }
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width: 768px) {
    .container > .navbar-header,
    .container-fluid > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 10px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 40px
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none
}

.navbar-brand > img {
    display: block
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 3px;
    margin-bottom: 3px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 5px -15px
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none
    }

    .navbar-nav .open .dropdown-menu > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px
    }

    .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }

    .navbar-nav > li {
        float: left
    }

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px
    }
}

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 3px;
    margin-bottom: 3px
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .form-control-static {
        display: inline-block
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn,
    .navbar-form .input-group .form-control {
        width: auto
    }

    .navbar-form .input-group > .form-control {
        width: 100%
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio label,
    .navbar-form .checkbox label {
        padding-left: 0
    }

    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 3px;
    margin-bottom: 3px
}

.navbar-btn.btn-sm {
    margin-top: 5px;
    margin-bottom: 5px
}

.navbar-btn.btn-xs {
    margin-top: 9px;
    margin-bottom: 9px
}

.navbar-text {
    margin-top: 10px;
    margin-bottom: 10px
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important;
        float: left
    }

    .navbar-right {
        float: right !important;
        float: right;
        margin-right: -15px
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0
    }
}

.navbar-default {
    background-color: #FFF;
    border-color: #eee
}

.navbar-default .navbar-brand {
    color: #009EC0
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #00748d;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #009EC0
}

.navbar-default .navbar-nav > li > a {
    color: #009EC0
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #FC6621;
    background-color: transparent
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #FC6621;
    background-color: transparent
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #eee
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    background-color: transparent;
    color: #FC6621
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #009EC0
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #FC6621;
        background-color: transparent
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #FC6621;
        background-color: transparent
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #009EC0
}

.navbar-default .navbar-link:hover {
    color: #FC6621
}

.navbar-default .btn-link {
    color: #009EC0
}

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
    color: #FC6621
}

.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #080808
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #080808
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #080808;
    color: #fff
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444
}

.breadcrumb {
    padding: 8px 0;
    margin-bottom: 20px;
    list-style: none;
    background-color: transparent;
    border-radius: 4px
}

.breadcrumb > li {
    display: inline-block
}

.breadcrumb > li + li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #ccc
}

.breadcrumb > .active {
    color: #FC6621
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination > li {
    display: inline
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 3;
    color: #009EC0;
    background-color: #eee;
    border-color: #ddd
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #009EC0;
    border-color: #009EC0;
    cursor: default
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center
}

.pager li {
    display: inline
}

.pager li > a,
.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li > a:hover,
.pager li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.pager .next > a,
.pager .next > span {
    float: right
}

.pager .previous > a,
.pager .previous > span {
    float: left
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
    color: #777;
    background-color: #fff;
    cursor: not-allowed
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

a.label:hover,
a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

.label-default {
    background-color: #777
}

.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #009EC0
}

.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #00748d
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #c9302c
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-xs .badge,
.btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px
}

a.badge:hover,
a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #333;
    background-color: #fff
}

.list-group-item > .badge {
    float: right
}

.list-group-item > .badge + .badge {
    margin-right: 5px
}

.nav-pills > li > a > .badge {
    margin-left: 3px
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.jumbotron h1,
.jumbotron .h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.jumbotron > hr {
    border-top-color: #d5d5d5
}

.container .jumbotron,
.container-fluid .jumbotron {
    border-radius: 6px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }

    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border .2s ease-in-out
}

.thumbnail > img,
.thumbnail a > img {
    margin-left: auto;
    margin-right: auto
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #333
}

.thumbnail .caption {
    padding: 9px;
    color: #333
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: bold
}

.alert > p,
.alert > ul {
    margin-bottom: 0
}

.alert > p + p {
    margin-top: 5px
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #009EC0;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: width .6s ease
}

.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px
}

.progress.active .progress-bar,
.progress-bar.active {
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media,
.media-body {
    zoom: 1;
    overflow: hidden
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right,
.media > .pull-right {
    padding-left: 10px
}

.media-left,
.media > .pull-left {
    padding-right: 10px
}

.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

a.list-group-item,
button.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    background-color: #eee;
    color: #777;
    cursor: not-allowed
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
    color: #777
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #009EC0;
    border-color: #009EC0
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
    color: #8debff
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.custom-card {
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05)
}

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
    margin-bottom: 0
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group + .panel-footer {
    border-top-width: 0
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
    margin-bottom: 0
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0
}

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel + .panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #009EC0
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #009EC0;
    border-color: #009EC0
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #009EC0
}

.panel-primary > .panel-heading .badge {
    color: #009EC0;
    background-color: #fff
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #009EC0
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6
}

.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc
}

.panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1
}

.panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15)
}

.well-lg {
    padding: 24px;
    border-radius: 6px
}

.well-sm {
    padding: 9px;
    border-radius: 3px
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20)
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out
}

.modal.in .modal-dialog {
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50)
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .9;
    filter: alpha(opacity=90)
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 14px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover > .arrow {
    border-width: 11px
}

.popover > .arrow:after {
    border-width: 10px;
    content: ""
}

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25)
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, 0.25)
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

.carousel-inner > .item {
    display: none;
    position: relative;
    transition: .6s ease-in-out left
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .carousel-inner > .item {
        transition: transform 0.6s ease-in-out;
        backface-visibility: hidden;
        perspective: 1000px
    }

    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        transform: translate3d(100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        transform: translate3d(-100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.next.left,
    .carousel-inner > .item.prev.right,
    .carousel-inner > .item.active {
        transform: translate3d(0, 0, 0);
        left: 0
    }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0
}

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
}

.carousel-control.left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
}

.carousel-control:hover,
.carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0)
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -15px
    }

    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -15px
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
    content: " ";
    display: table
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important
}

.affix {
    position: fixed
}

@-ms-viewport {
    width: device-width
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}

.bootstrap-select {
    width: 220px \0
}

.bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding-right: 25px
}

.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 220px
}

.bootstrap-select .dropdown-toggle:focus {
    outline: thin dotted #333333 !important;
    outline: 5px auto -webkit-focus-ring-color !important;
    outline-offset: -2px
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none
}

.bootstrap-select.form-control:not([class*="col-"]) {
    width: 100%
}

.bootstrap-select.form-control.input-group-btn {
    z-index: auto
}

.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
    float: none;
    display: inline-block;
    margin-left: 0
}

.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
    float: right
}

.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
    margin-bottom: 0
}

.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
    padding: 0
}

.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%
}

.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
    cursor: not-allowed
}

.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
    outline: none !important
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle
}

.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
    width: 100%
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    z-index: 1035;
    box-sizing: border-box
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none
}

.bootstrap-select.btn-group .dropdown-menu li {
    position: relative
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
    color: #fff
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
    cursor: not-allowed
}

.bootstrap-select.btn-group .dropdown-menu li a {
    cursor: pointer
}

.bootstrap-select.btn-group .dropdown-menu li a.opt {
    position: relative;
    padding-left: 2.25em
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
    display: none
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block
}

.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: .5em
}

.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    opacity: .9;
    box-sizing: border-box
}

.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    position: absolute;
    display: inline-block;
    right: 15px;
    margin-top: 5px
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
    z-index: 1036
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, 0.2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, 0.2);
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid white;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
    display: block
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
    padding: 4px 8px
}

.bs-actionsbox {
    float: left;
    width: 100%;
    box-sizing: border-box
}

.bs-actionsbox .btn-group button {
    width: 50%
}

.bs-donebutton {
    float: left;
    width: 100%;
    box-sizing: border-box
}

.bs-donebutton .btn-group button {
    width: 100%
}

.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%
}

select.bs-select-hidden,
select.selectpicker {
    display: none !important
}

select.mobile-device {
    position: absolute !important;
    top: 0;
    left: 0;
    display: block !important;
    width: 100%;
    height: 100% !important;
    opacity: 0
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */

.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    outline: none
}

.pswp * {
    box-sizing: border-box
}

.pswp img {
    max-width: none
}

.pswp--animate_opacity {
    opacity: .001;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp--open {
    display: block
}

.pswp--zoom-allowed .pswp__img {
    cursor: zoom-in
}

.pswp--zoomed-in .pswp__img {
    cursor: -webkit-grab;
    cursor: grab
}

.pswp--dragging .pswp__img {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    will-change: opacity
}

.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.pswp__container,
.pswp__zoom-wrap {
    -ms-touch-action: none;
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.pswp__container,
.pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    transform-origin: left top;
    transition: transform 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp__bg {
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    transition: none
}

.pswp__container,
.pswp__zoom-wrap {
    -webkit-backface-visibility: hidden
}

.pswp__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden
}

.pswp__img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0
}

.pswp__img--placeholder {
    -webkit-backface-visibility: hidden
}

.pswp__img--placeholder--blank {
    background: #222
}

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0
}

.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #CCC
}

.pswp__error-msg a {
    color: #CCC;
    text-decoration: underline
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */

.pswp__button {
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: .75;
    transition: opacity .2s;
    box-shadow: none
}

.pswp__button:focus,
.pswp__button:hover {
    opacity: 1
}

.pswp__button:active {
    outline: none;
    opacity: .9
}

.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.pswp__ui--over-close .pswp__button--close {
    opacity: 1
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background: url(../bg/photoswipe-default-skin.png) 0 0 no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px
}

@media (-webkit-min-device-pixel-ratio: 1.1),
(-webkit-min-device-pixel-ratio: 1.09375),
(min-resolution: 105dpi),
(min-resolution: 1.1dppx) {
    .pswp--svg .pswp__button,
    .pswp--svg .pswp__button--arrow--left:before,
    .pswp--svg .pswp__button--arrow--right:before {
        background-image: url(../bg/photoswipe-default-skin.svg)
    }

    .pswp--svg .pswp__button--arrow--left,
    .pswp--svg .pswp__button--arrow--right {
        background: none
    }
}

.pswp__button--close {
    background-position: 0 -44px
}

.pswp__button--share {
    background-position: -44px -44px
}

.pswp__button--fs {
    display: none
}

.pswp--supports-fs .pswp__button--fs {
    display: block
}

.pswp--fs .pswp__button--fs {
    background-position: -44px 0
}

.pswp__button--zoom {
    display: none;
    background-position: -88px 0
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: block
}

.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0
}

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background: none;
    top: 50%;
    margin-top: -50px;
    width: 70px;
    height: 100px;
    position: absolute
}

.pswp__button--arrow--left {
    left: 0
}

.pswp__button--arrow--right {
    right: 0
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    content: '';
    top: 35px;
    background-color: rgba(0, 0, 0, 0.3);
    height: 30px;
    width: 32px;
    position: absolute
}

.pswp__button--arrow--left:before {
    left: 6px;
    background-position: -138px -44px
}

.pswp__button--arrow--right:before {
    right: 6px;
    background-position: -94px -44px
}

.pswp__counter,
.pswp__share-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pswp__share-modal {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 1600;
    opacity: 0;
    transition: opacity .25s ease-out;
    -webkit-backface-visibility: hidden;
    will-change: opacity
}

.pswp__share-modal--hidden {
    display: none
}

.pswp__share-tooltip {
    z-index: 1620;
    position: absolute;
    background: #FFF;
    top: 56px;
    border-radius: 2px;
    display: block;
    width: auto;
    right: 44px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transform: translateY(6px);
    transition: transform .25s;
    -webkit-backface-visibility: hidden;
    will-change: transform
}

.pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px
}

.pswp__share-tooltip a:hover {
    text-decoration: none;
    color: #000
}

.pswp__share-tooltip a:first-child {
    border-radius: 2px 2px 0 0
}

.pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px
}

.pswp__share-modal--fade-in {
    opacity: 1
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
    transform: translateY(0)
}

.pswp--touch .pswp__share-tooltip a {
    padding: 16px 12px
}

a.pswp__share--facebook:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    right: 15px;
    border: 6px solid transparent;
    border-bottom-color: #FFF;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none
}

a.pswp__share--facebook:hover {
    background: #3E5C9A;
    color: #FFF
}

a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A
}

a.pswp__share--twitter:hover {
    background: #55ACEE;
    color: #FFF
}

a.pswp__share--pinterest:hover {
    background: #CCC;
    color: #CE272D
}

a.pswp__share--download:hover {
    background: #DDD
}

.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    color: #FFF;
    opacity: .75;
    padding: 0 10px
}

.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px
}

.pswp__caption small {
    font-size: 11px;
    color: #BBB
}

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #CCC
}

.pswp__caption--empty {
    display: none
}

.pswp__caption--fake {
    visibility: hidden
}

.pswp__preloader {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    transition: opacity .25s ease-out;
    will-change: opacity;
    direction: ltr
}

.pswp__preloader__icn {
    width: 20px;
    height: 20px;
    margin: 12px
}

.pswp__preloader--active {
    opacity: 1
}

.pswp__preloader--active .pswp__preloader__icn {
    background: url(../bg/photoswipe-preloader.gif) 0 0 no-repeat
}

.pswp--css_animation .pswp__preloader--active {
    opacity: 1
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    animation: clockwise 500ms linear infinite
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    animation: donut-rotate 1000ms cubic-bezier(.4, 0, .22, 1) infinite
}

.pswp--css_animation .pswp__preloader__icn {
    background: none;
    opacity: .75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0
}

.pswp--css_animation .pswp__preloader__cut {
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden
}

.pswp--css_animation .pswp__preloader__donut {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 2px solid #FFF;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0
}

@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right
    }
}

@keyframes clockwise {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes donut-rotate {
    0% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(-140deg)
    }
    100% {
        transform: rotate(0)
    }
}

.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550
}

.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 100%
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible
}

.pswp__top-bar,
.pswp__caption {
    background-color: rgba(0, 0, 0, 0.5)
}

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
    background-color: rgba(0, 0, 0, 0.3)
}

.pswp__ui--idle .pswp__top-bar {
    opacity: 0
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 0
}

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
    opacity: .001
}

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: none
}

.pswp__element--disabled {
    display: none !important
}

.pswp--minimal--dark .pswp__top-bar {
    background: none
}

label {
    font-weight: normal
}

label.req {
    font-weight: bold
}

.list-group-item.active,
.list-group-item.active a,
.list-group-item.active:hover,
.list-group-item.active:focus {
    color: #FFF
}

.text-secondary {
    color: #FC6621
}

#header {
    background-color: #FFF
}

#header .header-box {
    padding: 30px 0
}

#header .menus-col .menu-dropdowns > .btn-group.open > .dropdown-toggle,
#header .menus-col .menu-dropdowns > .btn-group > .btn.active,
#header .menus-col .menu-dropdowns > .btn-group > .btn:active {
    box-shadow: 0 0 0
}

#header .menus-col .menu-dropdowns > .btn-group > .btn {
    background-color: transparent;
    font-size: 11px;
    color: #777;
    border: 0
}

#header .menus-col .menu-dropdowns .service-menu .altLoginBox {
    margin-top: 10px
}

#header .menus-col .menu-dropdowns .service-menu .altLoginBox #loginboxFbConnect {
    display: inline-block
}

#header .form.search {
    margin-top: 5px
}

#header .minibasket-menu > .btn {
    padding: 0
}

#header .minibasket-menu .dropdown-menu {
    min-width: 400px;
    padding: 15px
}

#header .minibasket-menu .alert {
    margin-bottom: 0
}

#header .minibasket-menu table td {
    position: relative
}

#header .minibasket-menu table td.price,
#header .minibasket-menu table td.total_price {
    white-space: nowrap
}

#header .minibasket-menu table .badge {
    background-color: #FC6621;
    position: absolute;
    top: 3px;
    right: 3px;
    font-weight: 500
}

#header .service-menu.showLogin .dropdown-menu {
    min-width: 480px
}

#header .service-menu .dropdown-menu {
    min-width: 200px;
    padding: 15px
}

header a.logo.dxconradlogo {
    max-width: 315px;
    padding-top: 15px;
}

header a.logo.dxconradlogo img {
    width: 100%;
}

.small-header header a.logo.dxconradlogo img {
    width: 200px;
}

.shopping-bag-wrapper {
    color: #777
}

.shopping-bag-wrapper .shopping-bag-text {
    font-family: Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px
}

.shopping-bag-wrapper #shoppingBagMini .shopping-bag-text {
    font-size: 22px
}

.shopping-bag {
    height: 40px;
    width: 40px;
    margin: -5px 0
}

.shopping-bag.filled {
    color: #009EC0
}

.shopping-bag-mini {
    height: 25px;
    width: 25px;
    margin: -5px 0;
    color: #009EC0
}

.shopping-bag-mini.filled {
    color: #FC6621
}

#mainnav {
    border-left: 0;
    border-right: 0;
    border-top: 0
}

#mainnav .nav > li > a {
    font-size: 12px;
    font-weight: 200
}

#mainnav .fixed-header-actions {
    display: none
}

#mainnav .navbar-toggle {
    float: none;
    margin-left: 15px;
    margin-right: 5px
}

#mainnav .navbar-collapse.navbar-ex1-collapse.collapse.in ul li {
    border-bottom: 1px solid #E7E7E7
}

#mainnav .navbar-header {
    padding-bottom: 5px
}

#mainnav .navbar-default .navbar-collapse,
#mainnav .navbar-default .navbar-form {
    border-top: #E7E7E7;
    border-bottom: none;
    margin-top: 0
}

body.fixed-header #header {
    position: relative;
    padding-bottom: 42px
}

body.fixed-header #header #mainnav {
    position: fixed;
    top: 0;
    z-index: 1030;
    margin-top: -42px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2)
}

body.fixed-header #header #mainnav.fadeIn {
    background-color: rgba(255, 255, 255, 0.95);
    margin-top: 0;
    transition: all .2s
}

@media (min-width: 768px) {
    body.fixed-header #header #mainnav > .container-fluid {
        width: 750px
    }
}

@media (min-width: 992px) {
    body.fixed-header #header #mainnav > .container-fluid {
        width: 970px
    }
}

@media (min-width: 1200px) {
    body.fixed-header #header #mainnav > .container-fluid {
        width: 1170px
    }
}

body.fixed-header #header #mainnav .fixed-header-actions {
    display: block
}

body {
    padding-top: 0
}

.main-row-disabled {
    max-width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    position: relative;
    flex-direction: column;
    overflow-x: hidden;
}

body > .container > .main-row {
    margin-left: -15px;
    margin-right: -15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2)
}

body.cl-start .boxwrapper {
    margin: 0 0 50px 0
}

body.cl-start .boxwrapper:before,
body.cl-start .boxwrapper:after {
    content: " ";
    display: table
}

body.cl-start .boxwrapper:after {
    clear: both
}

body.cl-start .boxwrapper:before,
body.cl-start .boxwrapper:after {
    content: " ";
    display: table
}

body.cl-start .boxwrapper:after {
    clear: both
}

body.cl-start .boxwrapper .list-container {
    margin-top: 50px
}

body.cl-alist .page-header {
    position: relative
}

body.cl-alist .page-header h1 {
    font-weight: 200
}

body.cl-alist .page-header h1 .rss {
    font-size: 12px;
    color: orange;
    line-height: 1.3333333;
    vertical-align: middle
}

body.cl-alist .list-filter {
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    background-color: #F2F2F2;
    padding: 10px 15px;
    margin: 15px 0 0 0
}

body.cl-alist .subcatList .panel-body img {
    margin: 0 auto
}

body.cl-alist .boxwrapper {
    margin-top: 15px
}

body.cl-manufacturerlist .subcatList .panel-body img {
    margin: 0 auto
}

body.cl-details #detailsItemsPager {
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px
}

body.cl-details #detailsItemsPager .pager-overview-link,
body.cl-details #detailsItemsPager .pager-prev,
body.cl-details #detailsItemsPager .pager-next,
body.cl-details #detailsItemsPager .pager-overview-link a,
body.cl-details #detailsItemsPager .pager-prev a,
body.cl-details #detailsItemsPager .pager-next a {
    color: #009EC0
}

body.cl-details #detailsItemsPager .pager-overview-link .fa,
body.cl-details #detailsItemsPager .pager-prev .fa,
body.cl-details #detailsItemsPager .pager-next .fa {
    font-size: 18px
}

body.cl-details #detailsItemsPager .pager-current-page {
    color: #777
}

body.cl-details #zoom1 {
    display: block
}

body.cl-details #morePicsContainer {
    margin-top: 10px
}

body.cl-details #morePicsContainer img {
    max-width: 50px;
    border: 1px solid #E7E7E7;
    padding: 3px
}

body.cl-details #morePicsContainer a.selected img {
    border-color: #FC6621
}

body.cl-details #productTitle {
    margin: 0;
    font-weight: 200;
    font-size: 22px
}

body.cl-details .detailsInfo > .row {
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 10px;
    margin-bottom: 20px
}

body.cl-details .star-ratings {
    margin-top: 5px;
    margin-bottom: 20px
}

body.cl-details .star-ratings .fa-star,
body.cl-details .star-ratings .fa-star-half-o {
    font-size: 22px
}

body.cl-details .star-ratings .rating-star-filled {
    color: #F60
}

body.cl-details .star-ratings .rating-star-empty {
    color: #C7C7C7
}

body.cl-details .shortdesc {
    margin-bottom: 20px
}

body.cl-details .selectorsBox .selectbox {
    margin-bottom: 5px
}

body.cl-details .selectorsBox .selectbox .dropdown-wrapper {
    display: inline-block;
    position: relative
}

body.cl-details #productPrice {
    font-weight: 500;
    font-size: 21px;
    margin-bottom: 10px
}

body.cl-details .tobasket .tobasketFunction {
    margin-bottom: 5px
}

body.cl-details .tobasket .tobasketFunction input {
    width: 60px
}

body.cl-details .tobasket .tobasketFunction .input-group-btn {
    float: left
}

body.cl-details .tobasket .stockFlag,
body.cl-details .tobasket .deliverytime {
    font-size: 12px;
    color: #777
}

body.cl-details .tobasket .deliverytime::before {
    margin: 0 5px;
    display: inline-block;
    content: "  //  "
}

body.cl-details .details-col-right {
    border-left: 1px solid #E7E7E7
}

body.cl-details .details-col-right .action-links li {
    margin-bottom: 7px
}

body.cl-details .details-col-right .action-links li:last-child {
    margin-bottom: 0
}

body.cl-details .details-col-right .action-links a {
    color: #009EC0;
    font-size: 12px
}

body.cl-details #detailsRelated .tabbedWidgetBox .tab-content {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    padding: 10px 15px
}

body.cl-basket table#basket_table .basketImage {
    margin-right: 5px
}

body.cl-basket table#basket_table .quantity .textbox {
    width: 55px;
    text-align: right
}

body.cl-basket table#basket_table .unitPrice,
body.cl-basket table#basket_table .vatPercent,
body.cl-basket table#basket_table .totalPrice {
    text-align: right
}

/* body.cl-basket #basket_list li {
 	min-height: 130px
 }*/
body.cl-basket #basket_list li .row:first-child > div {
    min-height: 100px;
    height: 100%
}

body.cl-basket #basket_list li .toggle-actions {
    text-decoration: none;
    font-size: 24px
}

body.cl-basket #basket_list .totalPrice {
    position: absolute;
    bottom: 10px;
    right: 16px
}

body.cl-basket #basketSummary {
    width: 485px
}

/* body.cl-basket #basketSummary th,
 body.cl-basket #basketSummary td {
 	text-align: right
 }*/
body.cl-basket #basketVoucher .input-group {
    width: 353px
}

body.cl-basket #giftoptions_modal_form .priceCol img,
body.cl-basket #wrappCard img {
    cursor: pointer
}

body.cl-payment form#payment .panel-body > dl {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    padding: 9px;
    border-radius: 3px
}

body.cl-payment form#payment .panel-body > dl blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15)
}

body.cl-payment form#payment dt label {
    margin-left: 0px;
}

body.cl-payment form#payment dt label,
body.cl-payment form#payment dt input {
    cursor: pointer
}

body.cl-payment form#payment dd {
    display: none
}

body.cl-payment form#payment dd.activePayment {
    display: block
}

body.cl-order .agb a {
    text-decoration: underline;
    color: #a94442
}

body.cl-order .panel .panel-heading button {
    margin-top: -2px
}

body.cl-order #orderEditCart .panel-body {
    background-color: transparent
}

body.cl-order #orderEditCart table#basket_table thead tr {
    background-color: #FFF
}

body.cl-order #orderEditCart table#basket_table .basketImage {
    margin-right: 5px
}

body.cl-order #orderEditCart table#basket_table .quantity,
body.cl-order #orderEditCart table#basket_table .unitPrice,
body.cl-order #orderEditCart table#basket_table .vatPercent,
body.cl-order #orderEditCart table#basket_table .totalPrice {
    text-align: right
}

body.cl-order #orderEditCart #basketSummary {
    width: 455px
}

body.cl-order #orderEditCart #basketSummary th,
body.cl-order #orderEditCart #basketSummary td {
    text-align: right
}

body.cl-content #content {
    margin-bottom: 20px
}

body.cl-contact .google-maps {
    margin-bottom: 10px
}

body.cl-account_order .panel {
    margin-bottom: 35px
}

body.cl-user .dd-add-delivery-address,
body.cl-account_user .dd-add-delivery-address {
    cursor: pointer
}

body.cl-user .dd-add-delivery-address .icon-plus-circle,
body.cl-account_user .dd-add-delivery-address .icon-plus-circle {
    color: #777;
    font-size: 64px;
    opacity: .3;
    transition: opacity .3s
}

body.cl-user .dd-add-delivery-address:hover .icon-plus-circle,
body.cl-account_user .dd-add-delivery-address:hover .icon-plus-circle {
    opacity: 1;
    transition: opacity .3s
}

body.cl-user .dd-add-delivery-address .oxEqualized .icon-plus-circle,
body.cl-account_user .dd-add-delivery-address .oxEqualized .icon-plus-circle {
    margin-top: 15px
}

body.cl-compare #comparePlayground {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px
}

body.cl-compare #comparePlayground #compareLandscape {
    margin-left: 150px;
    overflow-x: scroll;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    transition: box-shadow .2s
}

body.cl-compare #comparePlayground #compareLandscape.shadowed {
    box-shadow: inset 3px 0 7px 1px rgba(0, 0, 0, 0.2)
}

body.cl-compare #comparePlayground #compareLandscape table {
    width: 100%;
    *margin-left: -150px;
    table-layout: fixed
}

body.cl-compare #comparePlayground #compareLandscape table td,
body.cl-compare #comparePlayground #compareLandscape table th {
    vertical-align: top;
    padding: 10px
}

body.cl-compare #comparePlayground #compareLandscape table th {
    background-color: #eee;
    border-right: none;
    width: 150px;
    position: absolute;
    *position: relative;
    left: 0;
    text-align: right;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

body.cl-compare #comparePlayground #compareLandscape table th.no-border {
    border: none;
    background-color: transparent
}

body.cl-compare #comparePlayground #compareLandscape table td {
    width: 260px
}

body.cl-compare #comparePlayground #compareLandscape table .item-wrapper .move-controls {
    margin-bottom: 5px
}

body.cl-compare #comparePlayground #compareLandscape table .item-wrapper .item .picture img {
    margin: 0 auto
}

body.cl-compare #comparePlayground #compareLandscape table .item-wrapper .item .title {
    display: block;
    height: 40px;
    overflow: hidden
}

body.cl-oxUBase .err-404 .page-header {
    margin-top: 10px !important
}

body.cl-oxUBase .err-404 .gears-box {
    background: transparent url('../../img/404/board.png') top center no-repeat;
    width: 551px;
    height: 514px;
    float: right;
    position: relative;
    overflow: hidden
}

body.cl-oxUBase .err-404 .gears-box .paper-overlay {
    background: transparent url('../../img/404/paper_crack.png') top left no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10
}

body.cl-oxUBase .err-404 .gears-box .gear-rotate {
    width: 280px;
    height: 280px;
    position: absolute;
    z-index: 5;
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 10s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear
}

body.cl-oxUBase .err-404 .gears-box .gear-rotate.reverse {
    -webkit-animation-name: rerotate;
    -moz-animation-name: rerotate
}

body.cl-thankyou ol.checkoutSteps,
body.is-checkout ol.checkoutSteps {
    border-top: 3px solid #009EC0;
    width: 100%;
    height: 40px;
    display: block;
    padding: 0;
    margin: 11px 0 0 0
}

body.cl-thankyou ol.checkoutSteps li,
body.is-checkout ol.checkoutSteps li {
    width: 20%;
    display: block;
    padding-top: 16px;
    float: left;
    position: relative;
    text-align: center
}

body.cl-thankyou ol.checkoutSteps li .num,
body.is-checkout ol.checkoutSteps li .num {
    border: 2px solid #FFF;
    border-radius: 50%;
    background-color: #009EC0;
    width: 30px;
    height: 30px;
    padding-top: 1px;
    margin-left: -16px;
    position: absolute;
    top: -16px;
    left: 50%;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    text-align: center
}

body.cl-thankyou ol.checkoutSteps li a:hover,
body.is-checkout ol.checkoutSteps li a:hover {
    text-decoration: none
}

body.cl-thankyou ol.checkoutSteps li.active .num,
body.is-checkout ol.checkoutSteps li.active .num {
    background-color: #FC6621;
    color: #FFF
}

body.cl-thankyou ol.checkoutSteps li.passed .num,
body.is-checkout ol.checkoutSteps li.passed .num {
    background-color: #5cb85c;
    color: #FFF
}

.paypalHelpBox {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
    display: none;
    position: absolute
}

.paypalHelpBox h4 {
    margin-top: 0;
    color: inherit
}

.paypalHelpBox .alert-link {
    font-weight: bold
}

.paypalHelpBox > p,
.paypalHelpBox > ul {
    margin-bottom: 0
}

.paypalHelpBox > p + p {
    margin-top: 5px
}

.paypalHelpBox hr {
    border-top-color: #a6e1ec
}

.paypalHelpBox .alert-link {
    color: #245269
}

#paypalExpressCheckoutDetailsBox {
    width: 100%;
    float: none !important
}

#paypalExpressCheckoutDetailsBox.paypalExpressCheckoutDetailsBox .paypalExpressCheckoutMsg {
    float: none
}

.paypalExpressCheckoutBox {
    padding-right: 15px !important;
    margin: 0 15px 0 0 !important
}

.paypalExpressCheckoutBox .paypalExpressCheckoutMsg {
    clear: both
}

#paypalExpressCheckoutMiniBasketImage {
    float: right !important
}

.btn:hover,
.nav li a:hover,
.dropdown li a:hover,
.pagination a:hover {
    transition: color .3s, background-color .3s, border .3s
}

.spacer {
    height: 30px
}

.spacer:before,
.spacer:after {
    content: " ";
    display: table
}

.spacer:after {
    clear: both
}

.spacer:before,
.spacer:after {
    content: " ";
    display: table
}

.spacer:after {
    clear: both
}

#wrapper {
    background-color: #FFF
}

#content .page-header:first-child {
    margin-top: 0
}

.boxwrapper .page-header {
    position: relative;
    text-align: center;
    border-bottom: 0
}

.boxwrapper .page-header h2,
.boxwrapper .page-header h3,
.boxwrapper .page-header .h3 {
    font-weight: 200
}

.boxwrapper .page-header h2 .rss,
.boxwrapper .page-header h3 .rss,
.boxwrapper .page-header .h3 .rss {
    font-size: 12px;
    color: orange;
    line-height: 1.3333333;
    vertical-align: middle
}

.boxwrapper .page-header .subhead {
    color: #777
}

.boxwrapper .list-container .gridView {
    margin-bottom: 30px
}

.boxwrapper .list-container .gridView .productBox .picture {
    border-bottom: 1px dashed #eee;
    width: 100%;
    height: 205px;
    display: table;
    margin-bottom: 15px;
    table-layout: fixed
}

.boxwrapper .list-container .gridView .productBox .picture a {
    display: table-cell;
    vertical-align: middle
}

.boxwrapper .list-container .gridView .productBox .picture img {
    max-height: 190px;
    margin: 0 auto
}

.boxwrapper .list-container .gridView .productBox .title {
    height: 40px;
    overflow: hidden;
    font-weight: 600
}

.boxwrapper .list-container .gridView .productBox .price {
    margin-bottom: 15px
}

.boxwrapper .list-container .gridView .productBox .price .lead {
    font-weight: 400
}

.boxwrapper .list-container .infogridView {
    margin-bottom: 50px
}

.boxwrapper .list-container .infogridView .productBox .picture {
    width: 100%;
    /*height: 275px;*/
    display: table;
    table-layout: fixed
}

.boxwrapper .list-container .infogridView .productBox .picture a {
    display: table-cell;
    vertical-align: middle
}

.boxwrapper .list-container .infogridView .productBox .picture img {
    max-height: 275px;
    margin: 0 auto
}

.boxwrapper .list-container .infogridView .productBox .title {
    min-height: 40px;
    font-weight: 600
}

.boxwrapper .list-container .infogridView .productBox .shortdesc {
    margin-bottom: 20px
}

.boxwrapper .list-container .infogridView .productBox .price {
    margin-bottom: 10px
}

.boxwrapper .list-container .infogridView .productBox .price .lead {
    font-weight: 400
}

.boxwrapper .list-container .lineView {
    margin-top: 15px
}

.boxwrapper .list-container .lineView:first-child {
    margin-top: 0
}

.boxwrapper .list-container .lineView .productBox form {
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px
}

.boxwrapper .list-container .lineView .productBox .picture img {
    max-height: 150px;
    margin: 0 auto
}

.boxwrapper .list-container .lineView .productBox .title {
    font-weight: 600
}

.boxwrapper .list-container .lineView .productBox .functions .price {
    font-weight: 400
}

.boxwrapper .list-container .lineView .productBox .functions .selectorsBox {
    margin: 10px 0
}

.boxwrapper .list-container .lineView .productBox .functions .form-group {
    margin-top: 10px;
    margin-bottom: 0
}

.boxwrapper .list-container .lineView .productBox .functions input.amount {
    width: 90px;
    float: right
}

.boxwrapper .list-container .dropdown-wrapper {
    display: inline-block;
    position: relative
}

.flexslider {
    border: none;
    background: transparent;
    margin-bottom: 15px
}

.flexslider .flex-control-paging {
    display: none
}

.flexslider .flex-direction-nav .flex-prev,
.flexslider .flex-direction-nav .flex-next {
    background-color: #000;
    opacity: .6;
    border-radius: 50%
}

.flexslider .flex-direction-nav .flex-prev::before,
.flexslider .flex-direction-nav .flex-next::before {
    color: #FFF;
    font-size: 30px;
    text-shadow: none;
    transition: color .3s
}

.flexslider .flex-direction-nav .flex-prev:hover::before,
.flexslider .flex-direction-nav .flex-next:hover::before {
    color: #009EC0
}

.flexslider .flex-direction-nav .flex-prev {
    left: 15px;
    text-align: left
}

.flexslider .flex-direction-nav .flex-prev::before {
    padding-left: 14px;
    margin-top: -2px
}

.flexslider .flex-direction-nav .flex-next {
    right: 15px;
    text-align: right
}

.flexslider .flex-direction-nav .flex-next::before {
    padding-right: 14px;
    margin-top: -2px
}

.flexslider .slides > li {
    position: relative
}

.flexslider .flex-caption {
    background: #000;
    width: 100%;
    margin: 0;
    padding: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all .3s ease-in-out
}

@media (max-width: 767px) {
    .flexslider .flex-caption {
        display: none
    }
}

.flexslider .flex-caption a {
    color: #fff;
    text-decoration: none
}

.flexslider .flex-caption a:hover .title {
    text-decoration: underline
}

.flexslider .flex-caption a:hover .shortdesc {
    text-decoration: none
}

.flexslider .flex-caption .title {
    font-weight: bold
}

.flexslider:hover .flex-caption {
    opacity: .7;
    filter: alpha(opacity=70)
}

#manufacturerSlider {
    border-top: 2px solid #E7E7E7;
    border-bottom: 2px solid #E7E7E7;
    background-color: #F2F2F2;
    padding-bottom: 40px;
    margin-bottom: 0
}

#manufacturerSlider .flexslider li {
    text-align: center
}

#manufacturerSlider .flexslider li img {
    width: auto;
    max-width: 100px;
    margin: 0 auto
}

.breadcrumb {
    font-size: 12px;
    margin: 0
}

.breadcrumb > .active a {
    color: #FC6621
}

.refineParams {
    margin-bottom: 15px
}

.refineParams.bottomParams {
    text-align: center
}

.refineParams .pagination {
    margin: 0
}

#sidebar .box.well .page-header {
    margin-top: 0
}

#footer {
    border-top: 2px solid #E7E7E7;
    border-bottom: 2px solid #E7E7E7;
    background-color: #F2F2F2;
    color: #666666;
    padding: 30px 0
}

#footer .footer-box .footer-box-title {
    text-transform: uppercase;
    font-weight: 400
}

#footer .footer-box .footer-box-content {
    font-weight: 400
}

#footer .footer-box.footer-box-facebook {
    margin-top: 10px
}

#footer .social-links li {
    margin: 0 10px;
    font-size: 16px
}

#footer .social-links li a {
    text-decoration: none;
    -webkit-transition: none;
    -ms-transition: none;
    transition: none
}

#footer .social-links li a i {
    font-size: 25px;
    vertical-align: middle;
    transition: color .2s
}

#footer .social-links li a i:before {
    -webkit-text-stroke: .3px;
    font-smooth: auto
}

#footer .social-links li a .fa-facebook {
    color: #428BCA
}

#footer .social-links li a .fa-google-plus-square {
    color: #d73d32
}

#footer .social-links li a .fa-twitter {
    color: #1AB2E8
}

#footer .social-links li a .fa-youtube-square {
    color: #CC181E
}

#footer .social-links li a .fa-wordpress {
    color: #333333
}

#footer .social-links li a:hover .fa-facebook {
    color: #2a6496
}

#footer .social-links li a:hover .fa-google-plus-square {
    color: #9e271f
}

#footer .social-links li a:hover .fa-twitter {
    color: #117ea5
}

#footer .social-links li a:hover .fa-youtube-square {
    color: #881014
}

#footer .social-links li a:hover .fa-wordpress {
    color: #0d0d0d
}

.legal {
    background-color: #FFF;
    padding: 30px 0
}

#incVatMessage {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 2px 5px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 500;
    border-radius: 4px 0 0 0
}

#incVatInfo {
    float: right;
    padding-right: 10px
}

#jumptotop {
    position: fixed;
    display: block;
    right: 35px;
    bottom: 40px;
    color: #009EC0;
    font-size: 45px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility 0s linear .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    z-index: 1000
}

#jumptotop.show {
    opacity: .5;
    visibility: visible;
    transition: opacity .3s
}

#jumptotop.show:hover {
    opacity: 1
}

.listRefine .btn-group {
    margin-bottom: 5px
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary.focus[disabled],
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary.active[disabled],
fieldset[disabled] .btn-primary.active {
    color: #C7C7C7
}

.freeButton {
    margin-bottom: 5px;
    display: inline-block;
    width: 250px
}

@media (max-width: 768px) {
    .freeButton {
        width: 100%
    }
}

.tobasket #toBasket {
    width: 100%
}

.tobasket .input-group {
    width: 250px
}

@media (max-width: 768px) {
    .tobasket .input-group {
        width: 100%
    }
}

@media (max-width: 768px) {
    #footer_newsletter_oxusername {
        margin-bottom: 5px
    }
}

#variants button {
    min-width: 250px
}

@media (max-width: 768px) {
    #variants button {
        width: 100%
    }
}

#variants .dropdown-wrapper {
    margin-bottom: 5px
}

@media (max-width: 768px) {
    #variants .dropdown-wrapper {
        width: 100%
    }
}

#variants .variant-label {
    margin-bottom: 0
}

.brandLogo {
    text-align: center;
    margin-bottom: 20px
}

@media (max-width: 768px) {
    .brandLogo {
        margin-top: 20px
    }
}

.input-group-tweak {
    width: 100%;
    display: table-cell;
    vertical-align: middle
}

.input-group-tweak #toBasket {
    -webkit-border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomleft: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.refineParams {
    margin-bottom: 0
}

@media (max-width: 768px) {
    .refineParams .options .btn-group {
        width: 100%
    }
}

@media (max-width: 768px) {
    .refineParams .options .btn-group button {
        width: 100%
    }
}

@media (max-width: 768px) {
    .list-filter .btn-group {
        width: 100%
    }
}

@media (max-width: 768px) {
    .list-filter .btn-group button {
        width: 100%
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px
    }

    .cart-buttons .btn,
    .cart-buttons form {
        width: 100%
    }

    .cart-buttons a.btn {
        margin-bottom: 5px
    }

    #empty-basket-warning a.btn {
        width: 100%;
        margin-bottom: 5px
    }

    .productBox {
        margin-bottom: 40px
    }
}

@media (max-width: 1199px) {
    .control-label.col-xs-12 {
        text-align: left
    }
}

@media (max-width: 991px) {
    body.cl-details #zoom1 img {
        margin: 0 auto
    }

    #header .header-box {
        padding-bottom: 10px
    }
}

@media (max-width: 767px) {
    #header .header-box .menus-col .menu-dropdowns .languages-menu .dropdown-menu {
        float: right
    }

    body.fixed-header #header #mainnav.fadeIn {
        width: 100%
    }

    body.fixed-header #header #mainnav a .fa-angle-down {
        display: none
    }

    body.cl-basket #basketVoucher .input-group {
        width: 100%
    }

    body.cl-details #detailsItemsPager {
        font-size: 70%
    }

    body.cl-details #detailsItemsPager .pager-current-page {
        line-height: 24px
    }

    body.cl-account_order .panel-heading {
        font-size: 70%
    }

    body.cl-thankyou ol.checkoutSteps,
    body.is-checkout ol.checkoutSteps {
        height: 20px
    }

    body.cl-thankyou ol.checkoutSteps .text,
    body.is-checkout ol.checkoutSteps .text {
        display: none
    }

    body.cl-thankyou #basketSummary,
    body.is-checkout #basketSummary {
        width: 100% !important
    }

    .boxwrapper .list-container .gridView {
        text-align: center
    }

    .boxwrapper .list-container .infogridView {
        text-align: center
    }

    .boxwrapper .list-container .infogridView .productBox .picture {
        border-bottom: 1px dashed #eee;
        margin-bottom: 15px
    }

    .boxwrapper .list-container .lineView .productBox .functions input.amount {
        width: 45px;
        float: right
    }

    #footer {
        text-align: center
    }

    #footer .footer-box {
        margin-bottom: 30px
    }
}

@media (max-width: 570px) {
    #header .header-box .logo-col {
        position: relative;
        float: left;
        width: 100%;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center
    }

    #header .header-box .menus-col {
        position: relative;
        float: left;
        width: 100%;
        min-height: 1px;
        padding-left: 15px;
        padding-right: 15px
    }

    #header .header-box .menus-col .menu-dropdowns {
        text-align: center;
        margin: 20px auto;
        float: none !important
    }
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

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

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background-color: transparent
}

a:active, a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"], input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
    *, *:before, *:after {
        background: transparent !important;
        color: #000 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: ""
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr, img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .table-bordered th, .table-bordered td {
        border: 1px solid #ddd !important
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
    content: "\002a"
}

.glyphicon-plus:before {
    content: "\002b"
}

.glyphicon-euro:before, .glyphicon-eur:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.glyphicon-cd:before {
    content: "\e201"
}

.glyphicon-save-file:before {
    content: "\e202"
}

.glyphicon-open-file:before {
    content: "\e203"
}

.glyphicon-level-up:before {
    content: "\e204"
}

.glyphicon-copy:before {
    content: "\e205"
}

.glyphicon-paste:before {
    content: "\e206"
}

.glyphicon-alert:before {
    content: "\e209"
}

.glyphicon-equalizer:before {
    content: "\e210"
}

.glyphicon-king:before {
    content: "\e211"
}

.glyphicon-queen:before {
    content: "\e212"
}

.glyphicon-pawn:before {
    content: "\e213"
}

.glyphicon-bishop:before {
    content: "\e214"
}

.glyphicon-knight:before {
    content: "\e215"
}

.glyphicon-baby-formula:before {
    content: "\e216"
}

.glyphicon-tent:before {
    content: "\26fa"
}

.glyphicon-blackboard:before {
    content: "\e218"
}

.glyphicon-bed:before {
    content: "\e219"
}

.glyphicon-apple:before {
    content: "\f8ff"
}

.glyphicon-erase:before {
    content: "\e221"
}

.glyphicon-hourglass:before {
    content: "\231b"
}

.glyphicon-lamp:before {
    content: "\e223"
}

.glyphicon-duplicate:before {
    content: "\e224"
}

.glyphicon-piggy-bank:before {
    content: "\e225"
}

.glyphicon-scissors:before {
    content: "\e226"
}

.glyphicon-bitcoin:before {
    content: "\e227"
}

.glyphicon-btc:before {
    content: "\e227"
}

.glyphicon-xbt:before {
    content: "\e227"
}

.glyphicon-yen:before {
    content: "\00a5"
}

.glyphicon-jpy:before {
    content: "\00a5"
}

.glyphicon-ruble:before {
    content: "\20bd"
}

.glyphicon-rub:before {
    content: "\20bd"
}

.glyphicon-scale:before {
    content: "\e230"
}

.glyphicon-ice-lolly:before {
    content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232"
}

.glyphicon-education:before {
    content: "\e233"
}

.glyphicon-option-horizontal:before {
    content: "\e234"
}

.glyphicon-option-vertical:before {
    content: "\e235"
}

.glyphicon-menu-hamburger:before {
    content: "\e236"
}

.glyphicon-modal-window:before {
    content: "\e237"
}

.glyphicon-oil:before {
    content: "\e238"
}

.glyphicon-grain:before {
    content: "\e239"
}

.glyphicon-sunglasses:before {
    content: "\e240"
}

.glyphicon-text-size:before {
    content: "\e241"
}

.glyphicon-text-color:before {
    content: "\e242"
}

.glyphicon-text-background:before {
    content: "\e243"
}

.glyphicon-object-align-top:before {
    content: "\e244"
}

.glyphicon-object-align-bottom:before {
    content: "\e245"
}

.glyphicon-object-align-horizontal:before {
    content: "\e246"
}

.glyphicon-object-align-left:before {
    content: "\e247"
}

.glyphicon-object-align-vertical:before {
    content: "\e248"
}

.glyphicon-object-align-right:before {
    content: "\e249"
}

.glyphicon-triangle-right:before {
    content: "\e250"
}

.glyphicon-triangle-left:before {
    content: "\e251"
}

.glyphicon-triangle-bottom:before {
    content: "\e252"
}

.glyphicon-triangle-top:before {
    content: "\e253"
}

.glyphicon-console:before {
    content: "\e254"
}

.glyphicon-superscript:before {
    content: "\e255"
}

.glyphicon-subscript:before {
    content: "\e256"
}

.glyphicon-menu-left:before {
    content: "\e257"
}

.glyphicon-menu-right:before {
    content: "\e258"
}

.glyphicon-menu-down:before {
    content: "\e259"
}

.glyphicon-menu-up:before {
    content: "\e260"
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #337ab7;
    text-decoration: none
}

a:hover, a:focus {
    color: #23527c;
    text-decoration: underline
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

[role="button"] {
    cursor: pointer
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #777
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
    font-size: 65%
}

h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
    font-size: 75%
}

h1, .h1 {
    font-size: 36px
}

h2, .h2 {
    font-size: 30px
}

h3, .h3 {
    font-size: 24px
}

h4, .h4 {
    font-size: 18px
}

h5, .h5 {
    font-size: 14px
}

h6, .h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px
    }
}

small, .small {
    font-size: 85%
}

mark, .mark {
    background-color: #fcf8e3;
    padding: .2em
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #337ab7
}

a.text-primary:hover, a.text-primary:focus {
    color: #286090
}

.text-success {
    color: #3c763d
}

a.text-success:hover, a.text-success:focus {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:hover, a.text-info:focus {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:hover, a.text-warning:focus {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:hover, a.text-danger:focus {
    color: #843534
}

.bg-primary {
    color: #fff;
    background-color: #337ab7
}

a.bg-primary:hover, a.bg-primary:focus {
    background-color: #286090
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:hover, a.bg-success:focus {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:hover, a.bg-info:focus {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:hover, a.bg-warning:focus {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:hover, a.bg-danger:focus {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px
}

ul ul, ol ul, ul ol, ol ol {
    margin-bottom: 0
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dt, dd {
    line-height: 1.42857143
}

dt {
    font-weight: bold
}

dd {
    margin-left: 0
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[title], abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
    margin-bottom: 0
}

blockquote footer, blockquote small, blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777
}

blockquote footer:before, blockquote small:before, blockquote .small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse, blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right
}

.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
    content: ''
}

.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
    content: '\00A0 \2014'
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143
}

code, kbd, pre, samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    -webkit-box-shadow: none;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1500px
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
    border-top: 0
}

.table > tbody + tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    border-bottom-width: 2px
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column
}

table td[class*="col-"], table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell
}

.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
    background-color: #f5f5f5
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8
}

.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: #dff0d8
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6
}

.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
    background-color: #d9edf7
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3
}

.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
    background-color: #fcf8e3
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc
}

.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
    background-color: #f2dede
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }

    .table-responsive > .table {
        margin-bottom: 0
    }

    .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap
    }

    .table-responsive > .table-bordered {
        border: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0
    }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type="radio"], input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

input[type="file"] {
    display: block
}

input[type="range"] {
    display: block;
    width: 100%
}

select[multiple], select[size] {
    height: auto
}

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control::-ms-expand {
    border: 0;
    background-color: transparent
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

input[type="search"] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control {
        line-height: 34px
    }

    input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] {
        line-height: 30px
    }

    input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] {
        line-height: 46px
    }
}

.form-group {
    margin-bottom: 15px
}

.radio, .checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.radio label, .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9
}

.radio + .radio, .checkbox + .checkbox {
    margin-top: -5px
}

.radio-inline, .checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px
}

input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed
}

.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px
}

.form-control-static.input-lg, .form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0
}

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

textarea.input-sm, select[multiple].input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-lg {
    height: 46px;
    line-height: 46px
}

textarea.input-lg, select[multiple].input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px
}

.form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label ~ .form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
        width: auto
    }

    .form-inline .input-group > .form-control {
        width: 100%
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio, .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio label, .form-inline .checkbox label {
        padding-left: 0
    }

    .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .radio, .form-horizontal .checkbox {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn:hover, .btn:focus, .btn.focus {
    color: #333;
    text-decoration: none
}

.btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

a.btn.disabled, fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default:focus, .btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c
}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
    background-image: none
}

.btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40
}

.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40
}

.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    background-image: none
}

.btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus {
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success {
    background-image: none
}

.btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85
}

.btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info {
    background-image: none
}

.btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d
}

.btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning {
    background-image: none
}

.btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19
}

.btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger {
    background-image: none
}

.btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    color: #337ab7;
    font-weight: normal;
    border-radius: 0
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent
}

.btn-link:hover, .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
    color: #777;
    text-decoration: none
}

.btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block + .btn-block {
    margin-top: 5px
}

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropup, .dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-background-clip: padding-box;
    background-clip: padding-box
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #777
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed
}

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group > .btn, .btn-group-vertical > .btn {
    position: relative;
    float: left
}

.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
    z-index: 2
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
    float: left
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
    margin-left: 5px
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical > .btn-group > .btn {
    float: none
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified > .btn-group .btn {
    width: 100%
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto
}

[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px
}

textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px
}

textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
    margin-top: 0
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
    z-index: 2
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

.nav > li {
    position: relative;
    display: block
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.nav > li.disabled > a {
    color: #777
}

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
    color: #777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eee;
    border-color: #337ab7
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav > li > a > img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.nav-tabs.nav-justified > li {
    float: none
}

.nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0
    }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.nav-pills > li {
    float: left
}

.nav-pills > li > a {
    border-radius: 4px
}

.nav-pills > li + li {
    margin-left: 2px
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #337ab7
}

.nav-stacked > li {
    float: none
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified {
    width: 100%
}

.nav-justified > li {
    float: none
}

.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-justified > li > a {
        margin-bottom: 0
    }
}

.nav-tabs-justified {
    border-bottom: 0
}

.nav-tabs-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: left
    }
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important
    }

    .navbar-collapse.in {
        overflow-y: visible
    }

    .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px
}

@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px
    }
}

.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width: 768px) {
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-top, .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width: 768px) {
    .navbar-fixed-top, .navbar-fixed-bottom {
        border-radius: 0
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px
}

.navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none
}

.navbar-brand > img {
    display: block
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 7.5px -15px
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }

    .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px
    }

    .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0
    }

    .navbar-nav > li {
        float: left
    }

    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .form-control-static {
        display: inline-block
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control {
        width: auto
    }

    .navbar-form .input-group > .form-control {
        width: 100%
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio, .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .radio label, .navbar-form .checkbox label {
        padding-left: 0
    }

    .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px
}

.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px
}

.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0
    }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent
}

.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav > li > a {
    color: #777
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #333;
    background-color: transparent
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7
}

.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
    color: #333
}

.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #080808
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #080808
}

.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #080808;
    color: #fff
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px
}

.breadcrumb > li {
    display: inline-block
}

.breadcrumb > li + li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #ccc
}

.breadcrumb > .active {
    color: #777
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination > li {
    display: inline
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #337ab7;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
    cursor: default
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center
}

.pager li {
    display: inline
}

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li > a:hover, .pager li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.pager .next > a, .pager .next > span {
    float: right
}

.pager .previous > a, .pager .previous > span {
    float: left
}

.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
    color: #777;
    background-color: #fff;
    cursor: not-allowed
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

.label-default {
    background-color: #777
}

.label-default[href]:hover, .label-default[href]:focus {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #337ab7
}

.label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #286090
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c9302c
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-xs .badge, .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px
}

a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
    color: #337ab7;
    background-color: #fff
}

.list-group-item > .badge {
    float: right
}

.list-group-item > .badge + .badge {
    margin-right: 5px
}

.nav-pills > li > a > .badge {
    margin-left: 3px
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.jumbotron h1, .jumbotron .h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.jumbotron > hr {
    border-top-color: #d5d5d5
}

.container .jumbotron, .container-fluid .jumbotron {
    border-radius: 6px;
    padding-left: 15px;
    padding-right: 15px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron, .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }

    .jumbotron h1, .jumbotron .h1 {
        font-size: 63px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
}

.thumbnail > img, .thumbnail a > img {
    margin-left: auto;
    margin-right: auto
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
    border-color: #337ab7
}

.thumbnail .caption {
    padding: 9px;
    color: #333
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: bold
}

.alert > p, .alert > ul {
    margin-bottom: 0
}

.alert > p + p {
    margin-top: 5px
}

.alert-dismissable, .alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
}

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.progress-striped .progress-bar, .progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px
}

.progress.active .progress-bar, .progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media, .media-body {
    zoom: 1;
    overflow: hidden
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right, .media > .pull-right {
    padding-left: 10px
}

.media-left, .media > .pull-left {
    padding-right: 10px
}

.media-left, .media-right, .media-body {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

a.list-group-item, button.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    background-color: #eee;
    color: #777;
    cursor: not-allowed
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #777
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit
}

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: #c7ddef
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success, button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info, button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning, button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger, button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05)
}

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .list-group, .panel > .panel-collapse > .list-group {
    margin-bottom: 0
}

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group + .panel-footer {
    border-top-width: 0
}

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
    margin-bottom: 0
}

.panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px
}

.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd
}

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0
}

.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0
}

.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0
}

.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0
}

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel + .panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #337ab7
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #337ab7
}

.panel-primary > .panel-heading .badge {
    color: #337ab7;
    background-color: #fff
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #337ab7
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6
}

.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc
}

.panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1
}

.panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15)
}

.well-lg {
    padding: 24px;
    border-radius: 6px
}

.well-sm {
    padding: 9px;
    border-radius: 3px
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20)
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50)
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .9;
    filter: alpha(opacity=90)
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 14px;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover > .arrow {
    border-width: 11px
}

.popover > .arrow:after {
    border-width: 10px;
    content: ""
}

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25)
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, 0.25)
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

.carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
    line-height: 1
}

@media all and (transform-3d),(-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px
    }

    .carousel-inner > .item.next, .carousel-inner > .item.active.right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0
    }
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    left: 0
}

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0)
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
}

.carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block
}

.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px
}

.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-prev, .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0)
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table
}

.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-header:after, .modal-footer:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important
}

.affix {
    position: fixed
}

@-ms-viewport {
    width: device-width
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
    display: none !important
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    th.visible-xs, td.visible-xs {
        display: table-cell !important
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    th.visible-sm, td.visible-sm {
        display: table-cell !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    th.visible-md, td.visible-md {
        display: table-cell !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    th.visible-lg, td.visible-lg {
        display: table-cell !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    th.visible-print, td.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}

.btn-default, .btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075)
}

.btn-default:active, .btn-primary:active, .btn-success:active, .btn-info:active, .btn-warning:active, .btn-danger:active, .btn-default.active, .btn-primary.active, .btn-success.active, .btn-info.active, .btn-warning.active, .btn-danger.active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
}

.btn-default.disabled, .btn-primary.disabled, .btn-success.disabled, .btn-info.disabled, .btn-warning.disabled, .btn-danger.disabled, .btn-default[disabled], .btn-primary[disabled], .btn-success[disabled], .btn-info[disabled], .btn-warning[disabled], .btn-danger[disabled], fieldset[disabled] .btn-default, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-success, fieldset[disabled] .btn-info, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-danger {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-default .badge, .btn-primary .badge, .btn-success .badge, .btn-info .badge, .btn-warning .badge, .btn-danger .badge {
    text-shadow: none
}

.btn:active, .btn.active {
    background-image: none
}

.btn-default {
    background-image: -webkit-linear-gradient(top, #fff 0, #e0e0e0 100%);
    background-image: -o-linear-gradient(top, #fff 0, #e0e0e0 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#e0e0e0));
    background-image: linear-gradient(to bottom, #fff 0, #e0e0e0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #dbdbdb;
    text-shadow: 0 1px 0 #fff;
    border-color: #ccc
}

.btn-default:hover, .btn-default:focus {
    background-color: #e0e0e0;
    background-position: 0 -15px
}

.btn-default:active, .btn-default.active {
    background-color: #e0e0e0;
    border-color: #dbdbdb
}

.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
    background-color: #e0e0e0;
    background-image: none
}

.btn-primary {
    background-image: -webkit-linear-gradient(top, #337ab7 0, #265a88 100%);
    background-image: -o-linear-gradient(top, #337ab7 0, #265a88 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#265a88));
    background-image: linear-gradient(to bottom, #337ab7 0, #265a88 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #245580
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #265a88;
    background-position: 0 -15px
}

.btn-primary:active, .btn-primary.active {
    background-color: #265a88;
    border-color: #245580
}

.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
    background-color: #265a88;
    background-image: none
}

.btn-success {
    background-image: -webkit-linear-gradient(top, #5cb85c 0, #419641 100%);
    background-image: -o-linear-gradient(top, #5cb85c 0, #419641 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5cb85c), to(#419641));
    background-image: linear-gradient(to bottom, #5cb85c 0, #419641 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #3e8f3e
}

.btn-success:hover, .btn-success:focus {
    background-color: #419641;
    background-position: 0 -15px
}

.btn-success:active, .btn-success.active {
    background-color: #419641;
    border-color: #3e8f3e
}

.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
    background-color: #419641;
    background-image: none
}

.btn-info {
    background-image: -webkit-linear-gradient(top, #5bc0de 0, #2aabd2 100%);
    background-image: -o-linear-gradient(top, #5bc0de 0, #2aabd2 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5bc0de), to(#2aabd2));
    background-image: linear-gradient(to bottom, #5bc0de 0, #2aabd2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #28a4c9
}

.btn-info:hover, .btn-info:focus {
    background-color: #2aabd2;
    background-position: 0 -15px
}

.btn-info:active, .btn-info.active {
    background-color: #2aabd2;
    border-color: #28a4c9
}

.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
    background-color: #2aabd2;
    background-image: none
}

.btn-warning {
    background-image: -webkit-linear-gradient(top, #f0ad4e 0, #eb9316 100%);
    background-image: -o-linear-gradient(top, #f0ad4e 0, #eb9316 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f0ad4e), to(#eb9316));
    background-image: linear-gradient(to bottom, #f0ad4e 0, #eb9316 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #e38d13
}

.btn-warning:hover, .btn-warning:focus {
    background-color: #eb9316;
    background-position: 0 -15px
}

.btn-warning:active, .btn-warning.active {
    background-color: #eb9316;
    border-color: #e38d13
}

.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
    background-color: #eb9316;
    background-image: none
}

.btn-danger {
    background-image: -webkit-linear-gradient(top, #d9534f 0, #c12e2a 100%);
    background-image: -o-linear-gradient(top, #d9534f 0, #c12e2a 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), to(#c12e2a));
    background-image: linear-gradient(to bottom, #d9534f 0, #c12e2a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #b92c28
}

.btn-danger:hover, .btn-danger:focus {
    background-color: #c12e2a;
    background-position: 0 -15px
}

.btn-danger:active, .btn-danger.active {
    background-color: #c12e2a;
    border-color: #b92c28
}

.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
    background-color: #c12e2a;
    background-image: none
}

.thumbnail, .img-thumbnail {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075)
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background-image: -webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
    background-image: -o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));
    background-image: linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
    background-color: #e8e8e8
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    background-image: -webkit-linear-gradient(top, #337ab7 0, #2e6da4 100%);
    background-image: -o-linear-gradient(top, #337ab7 0, #2e6da4 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#2e6da4));
    background-image: linear-gradient(to bottom, #337ab7 0, #2e6da4 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
    background-color: #2e6da4
}

.navbar-default {
    background-image: -webkit-linear-gradient(top, #fff 0, #f8f8f8 100%);
    background-image: -o-linear-gradient(top, #fff 0, #f8f8f8 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#f8f8f8));
    background-image: linear-gradient(to bottom, #fff 0, #f8f8f8 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075)
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .active > a {
    background-image: -webkit-linear-gradient(top, #dbdbdb 0, #e2e2e2 100%);
    background-image: -o-linear-gradient(top, #dbdbdb 0, #e2e2e2 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dbdbdb), to(#e2e2e2));
    background-image: linear-gradient(to bottom, #dbdbdb 0, #e2e2e2 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
    -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075)
}

.navbar-brand, .navbar-nav > li > a {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25)
}

.navbar-inverse {
    background-image: -webkit-linear-gradient(top, #3c3c3c 0, #222 100%);
    background-image: -o-linear-gradient(top, #3c3c3c 0, #222 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3c3c3c), to(#222));
    background-image: linear-gradient(to bottom, #3c3c3c 0, #222 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border-radius: 4px
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .active > a {
    background-image: -webkit-linear-gradient(top, #080808 0, #0f0f0f 100%);
    background-image: -o-linear-gradient(top, #080808 0, #0f0f0f 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #080808), to(#0f0f0f));
    background-image: linear-gradient(to bottom, #080808 0, #0f0f0f 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
    -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25)
}

.navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav > li > a {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25)
}

.navbar-static-top, .navbar-fixed-top, .navbar-fixed-bottom {
    border-radius: 0
}

@media (max-width: 767px) {
    .navbar .navbar-nav .open .dropdown-menu > .active > a, .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-image: -webkit-linear-gradient(top, #337ab7 0, #2e6da4 100%);
        background-image: -o-linear-gradient(top, #337ab7 0, #2e6da4 100%);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#2e6da4));
        background-image: linear-gradient(to bottom, #337ab7 0, #2e6da4 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0)
    }
}

.alert {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05)
}

.alert-success {
    background-image: -webkit-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);
    background-image: -o-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#c8e5bc));
    background-image: linear-gradient(to bottom, #dff0d8 0, #c8e5bc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
    border-color: #b2dba1
}

.alert-info {
    background-image: -webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%);
    background-image: -o-linear-gradient(top, #d9edf7 0, #b9def0 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#b9def0));
    background-image: linear-gradient(to bottom, #d9edf7 0, #b9def0 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
    border-color: #9acfea
}

.alert-warning {
    background-image: -webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
    background-image: -o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#f8efc0));
    background-image: linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
    border-color: #f5e79e
}

.alert-danger {
    background-image: -webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
    background-image: -o-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#e7c3c3));
    background-image: linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
    border-color: #dca7a7
}

.progress {
    background-image: -webkit-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ebebeb), to(#f5f5f5));
    background-image: linear-gradient(to bottom, #ebebeb 0, #f5f5f5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0)
}

.progress-bar {
    background-image: -webkit-linear-gradient(top, #337ab7 0, #286090 100%);
    background-image: -o-linear-gradient(top, #337ab7 0, #286090 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#286090));
    background-image: linear-gradient(to bottom, #337ab7 0, #286090 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0)
}

.progress-bar-success {
    background-image: -webkit-linear-gradient(top, #5cb85c 0, #449d44 100%);
    background-image: -o-linear-gradient(top, #5cb85c 0, #449d44 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5cb85c), to(#449d44));
    background-image: linear-gradient(to bottom, #5cb85c 0, #449d44 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0)
}

.progress-bar-info {
    background-image: -webkit-linear-gradient(top, #5bc0de 0, #31b0d5 100%);
    background-image: -o-linear-gradient(top, #5bc0de 0, #31b0d5 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5bc0de), to(#31b0d5));
    background-image: linear-gradient(to bottom, #5bc0de 0, #31b0d5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0)
}

.progress-bar-warning {
    background-image: -webkit-linear-gradient(top, #f0ad4e 0, #ec971f 100%);
    background-image: -o-linear-gradient(top, #f0ad4e 0, #ec971f 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f0ad4e), to(#ec971f));
    background-image: linear-gradient(to bottom, #f0ad4e 0, #ec971f 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0)
}

.progress-bar-danger {
    background-image: -webkit-linear-gradient(top, #d9534f 0, #c9302c 100%);
    background-image: -o-linear-gradient(top, #d9534f 0, #c9302c 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), to(#c9302c));
    background-image: linear-gradient(to bottom, #d9534f 0, #c9302c 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0)
}

.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)
}

.list-group {
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075)
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    text-shadow: 0 -1px 0 #286090;
    background-image: -webkit-linear-gradient(top, #337ab7 0, #2b669a 100%);
    background-image: -o-linear-gradient(top, #337ab7 0, #2b669a 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#2b669a));
    background-image: linear-gradient(to bottom, #337ab7 0, #2b669a 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
    border-color: #2b669a
}

.list-group-item.active .badge, .list-group-item.active:hover .badge, .list-group-item.active:focus .badge {
    text-shadow: none
}

.panel {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05)
}

.panel-default > .panel-heading {
    background-image: -webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
    background-image: -o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));
    background-image: linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0)
}

.panel-primary > .panel-heading {
    background-image: -webkit-linear-gradient(top, #337ab7 0, #2e6da4 100%);
    background-image: -o-linear-gradient(top, #337ab7 0, #2e6da4 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #337ab7), to(#2e6da4));
    background-image: linear-gradient(to bottom, #337ab7 0, #2e6da4 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0)
}

.panel-success > .panel-heading {
    background-image: -webkit-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);
    background-image: -o-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#d0e9c6));
    background-image: linear-gradient(to bottom, #dff0d8 0, #d0e9c6 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0)
}

.panel-info > .panel-heading {
    background-image: -webkit-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);
    background-image: -o-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#c4e3f3));
    background-image: linear-gradient(to bottom, #d9edf7 0, #c4e3f3 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0)
}

.panel-warning > .panel-heading {
    background-image: -webkit-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);
    background-image: -o-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#faf2cc));
    background-image: linear-gradient(to bottom, #fcf8e3 0, #faf2cc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0)
}

.panel-danger > .panel-heading {
    background-image: -webkit-linear-gradient(top, #f2dede 0, #ebcccc 100%);
    background-image: -o-linear-gradient(top, #f2dede 0, #ebcccc 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#ebcccc));
    background-image: linear-gradient(to bottom, #f2dede 0, #ebcccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0)
}

.well {
    background-image: -webkit-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e8e8e8), to(#f5f5f5));
    background-image: linear-gradient(to bottom, #e8e8e8 0, #f5f5f5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
    border-color: #dcdcdc;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1)
}

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

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

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
    color: inherit; /* 1 */
    font: inherit; /* 2 */
    margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
    line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp, .pswp__bg, .pswp__scroll-wrap {
    width: 100%;
    height: 100%
}

.pswp, .pswp__item, .pswp__scroll-wrap {
    overflow: hidden;
    top: 0;
    position: absolute;
    left: 0
}

.pswp, .pswp__bg, .pswp__error-msg, .pswp__img, .pswp__item, .pswp__scroll-wrap, .pswp__zoom-wrap {
    position: absolute
}

.pswp--touch .pswp__button--arrow--left, .pswp--touch .pswp__button--arrow--right, .pswp__caption--fake {
    visibility: hidden
}

.pswp, .pswp__bg, .pswp__container, .pswp__img--placeholder, .pswp__share-modal, .pswp__share-tooltip, .pswp__zoom-wrap {
    -webkit-backface-visibility: hidden
}

.pswp {
    display: none;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    outline: 0
}

.pswp--open, .pswp__button {
    display: block
}

.pswp * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.pswp img {
    max-width: none
}

.pswp--animate_opacity {
    opacity: .001;
    will-change: opacity;
    -webkit-transition: opacity 333ms cubic-bezier(.4, 0, .22, 1);
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp--zoom-allowed .pswp__img {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.pswp--zoomed-in .pswp__img {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab
}

.pswp--dragging .pswp__img {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing
}

.pswp__container, .pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.pswp__zoom-wrap {
    width: 100%;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform 333ms cubic-bezier(.4, 0, .22, 1);
    transition: transform 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp__bg {
    left: 0;
    top: 0;
    background: #000;
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity 333ms cubic-bezier(.4, 0, .22, 1);
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp--animated-in .pswp__bg, .pswp--animated-in .pswp__zoom-wrap {
    -webkit-transition: none;
    transition: none
}

.pswp__container, .pswp__zoom-wrap {
    -ms-touch-action: none;
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    will-change: transform
}

.pswp__item {
    right: 0;
    bottom: 0
}

.pswp__img {
    width: auto;
    height: auto;
    top: 0;
    left: 0
}

.pswp__img--placeholder--blank {
    background: #222
}

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0
}

.pswp__error-msg {
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #CCC
}

.pswp__error-msg a {
    color: #CCC;
    text-decoration: underline
}

.pswp__share-tooltip a, .pswp__share-tooltip a:hover {
    text-decoration: none;
    color: #000
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
    position: relative;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: .75;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    -webkit-box-shadow: none;
    box-shadow: none
}

.pswp__button:focus, .pswp__button:hover {
    opacity: 1
}

.pswp__button:active {
    outline: 0;
    opacity: .9
}

.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.pswp__ui--over-close .pswp__button--close {
    opacity: 1
}

.pswp__button, .pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
    background: url(../img/default-skin.png) no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px
}

@media (-webkit-min-device-pixel-ratio: 1.1),(-webkit-min-device-pixel-ratio: 1.09375),(min-resolution: 105dpi),(min-resolution: 1.1dppx) {
    .pswp--svg .pswp__button, .pswp--svg .pswp__button--arrow--left:before, .pswp--svg .pswp__button--arrow--right:before {
        background-image: url(../img/default-skin.svg)
    }

    .pswp--svg .pswp__button--arrow--left, .pswp--svg .pswp__button--arrow--right {
        background: 0 0
    }
}

.pswp__button--close {
    background-position: 0 -44px
}

.pswp__button--share {
    background-position: -44px -44px
}

.pswp__button--fs {
    display: none
}

.pswp--supports-fs .pswp__button--fs {
    display: block
}

.pswp--fs .pswp__button--fs {
    background-position: -44px 0
}

.pswp__button--zoom {
    display: none;
    background-position: -88px 0
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: block
}

.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0
}

.pswp__button--arrow--left, .pswp__button--arrow--right {
    background: 0 0;
    top: 50%;
    margin-top: -50px;
    width: 70px;
    height: 100px;
    position: absolute
}

.pswp__button--arrow--left {
    left: 0
}

.pswp__button--arrow--right {
    right: 0
}

.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
    content: '';
    top: 35px;
    background-color: rgba(0, 0, 0, .3);
    height: 30px;
    width: 32px;
    position: absolute
}

.pswp__button--arrow--left:before {
    left: 6px;
    background-position: -138px -44px
}

.pswp__button--arrow--right:before {
    right: 6px;
    background-position: -94px -44px
}

.pswp__counter, .pswp__share-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pswp__share-modal {
    display: block;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 1600;
    opacity: 0;
    -webkit-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out;
    will-change: opacity
}

.pswp__share-modal--hidden {
    display: none
}

.pswp__share-tooltip {
    z-index: 1620;
    position: absolute;
    background: #FFF;
    top: 56px;
    border-radius: 2px;
    display: block;
    width: auto;
    right: 44px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
    -webkit-transition: -webkit-transform .25s;
    transition: transform .25s;
    will-change: transform
}

.pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 18px
}

.pswp__share-tooltip a:first-child {
    border-radius: 2px 2px 0 0
}

.pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px
}

.pswp__share-modal--fade-in {
    opacity: 1
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.pswp--touch .pswp__share-tooltip a {
    padding: 16px 12px
}

a.pswp__share--facebook:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    right: 15px;
    border: 6px solid transparent;
    border-bottom-color: #FFF;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none
}

.pswp__caption--empty, .pswp__ui--one-slide .pswp__button--arrow--left, .pswp__ui--one-slide .pswp__button--arrow--right, .pswp__ui--one-slide .pswp__counter {
    display: none
}

.pswp__counter, .pswp__preloader {
    height: 44px;
    top: 0;
    position: absolute
}

a.pswp__share--facebook:hover {
    background: #3E5C9A;
    color: #FFF
}

a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A
}

a.pswp__share--twitter:hover {
    background: #55ACEE;
    color: #FFF
}

a.pswp__share--pinterest:hover {
    background: #CCC;
    color: #CE272D
}

a.pswp__share--download:hover {
    background: #DDD
}

.pswp__counter {
    left: 0;
    font-size: 13px;
    line-height: 44px;
    color: #FFF;
    opacity: .75;
    padding: 0 10px
}

.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px
}

.pswp__caption small {
    font-size: 11px;
    color: #BBB
}

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #CCC
}

.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right, .pswp__ui {
    visibility: visible
}

.pswp__preloader {
    width: 44px;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    -webkit-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out;
    will-change: opacity;
    direction: ltr
}

.pswp--css_animation .pswp__preloader--active, .pswp__preloader--active {
    opacity: 1
}

.pswp__preloader__icn {
    width: 20px;
    height: 20px;
    margin: 12px
}

.pswp__preloader--active .pswp__preloader__icn {
    background: url(../img/preloader.gif) no-repeat
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise .5s linear infinite;
    animation: clockwise .5s linear infinite
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1s cubic-bezier(.4, 0, .22, 1) infinite;
    animation: donut-rotate 1s cubic-bezier(.4, 0, .22, 1) infinite
}

.pswp--css_animation .pswp__preloader__icn {
    background: 0 0;
    opacity: .75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0
}

.pswp--css_animation .pswp__preloader__cut {
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden
}

.pswp--css_animation .pswp__preloader__donut {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 2px solid #FFF;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: 0 0;
    margin: 0
}

@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right
    }
}

@-webkit-keyframes clockwise {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes clockwise {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes donut-rotate {
    0%, 100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    50% {
        -webkit-transform: rotate(-140deg);
        transform: rotate(-140deg)
    }
}

@keyframes donut-rotate {
    0%, 100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    50% {
        -webkit-transform: rotate(-140deg);
        transform: rotate(-140deg)
    }
}

.pswp__ui {
    -webkit-font-smoothing: auto;
    opacity: 1;
    z-index: 1550
}

.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 100%
}

.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right, .pswp__caption, .pswp__top-bar {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    -webkit-transition: opacity 333ms cubic-bezier(.4, 0, .22, 1);
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp__caption, .pswp__top-bar {
    background-color: rgba(0, 0, 0, .5)
}

.pswp__ui--fit .pswp__caption, .pswp__ui--fit .pswp__top-bar {
    background-color: rgba(0, 0, 0, .3)
}

.pswp__ui--idle .pswp__button--arrow--left, .pswp__ui--idle .pswp__button--arrow--right, .pswp__ui--idle .pswp__top-bar {
    opacity: 0
}

.pswp__ui--hidden .pswp__button--arrow--left, .pswp__ui--hidden .pswp__button--arrow--right, .pswp__ui--hidden .pswp__caption, .pswp__ui--hidden .pswp__top-bar {
    opacity: .001
}

.pswp__element--disabled {
    display: none !important
}

.pswp--minimal--dark .pswp__top-bar {
    background: 0 0
}

body, html {
    height: 100%;
    margin: 0; /* overflow:auto */
}

.jDialog {
    position: fixed;
    top: 15%;
    left: 50%;
    z-index: 10000;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: hidden
}

.jDialog.show {
    visibility: visible
}

.jDialog-content {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .4)
}

.jDialog-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .4)
}

.fade-in .jDialog-content {
    opacity: 0;
    -webkit-transform: scale(.7);
    transform: scale(.7);
    -webkit-transition: all .3s;
    transition: all .3s
}

.fade-in.jDialog.show .jDialog-content {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.sticky-up.jDialog {
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.sticky-up.jDialog .jDialog-content {
    opacity: 0;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: all .3s;
    transition: all .3s
}

.sticky-up.jDialog.show .jDialog-content {
    opacity: 1;
    border-radius: 0 0 3px 3px;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.slide-in.jDialog .jDialog-content {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
    -webkit-transition: all .3s cubic-bezier(.25, .5, .5, .9);
    transition: all .3s cubic-bezier(.25, .5, .5, .9)
}

.slide-in.jDialog.show .jDialog-content {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.flip.jDialog {
    -webkit-perspective: 1300px;
    perspective: 1300px
}

.flip.jDialog .jDialog-content {
    opacity: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-70deg);
    transform: rotateY(-70deg);
    -webkit-transition: all .3s;
    transition: all .3s
}

.flip.jDialog.show .jDialog-content {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg)
}

.-accordion {
    margin: 0;
    padding: 0;
}

.-accordion:before,
.-accordion:after {
    content: " ";
    display: table;
}

.-accordion:after {
    clear: both;
}

.-accordion__panel {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.-accordion__heading {
    position: relative;
    display: block;
    padding: 15px;
    color: #9ea6aa;
    font-size: 14px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.-accordion__heading > .-icon {
    margin-top: 3px;
    color: #bbb;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
}

.-accordion__heading > .-icon--right {
    float: right;
    margin-left: 10px;
}

.-accordion__heading > .-icon--left {
    float: left;
    margin-right: 10px;
}

.-accordion__heading > .-icon:before {
    content: "＋";
}

.-accordion__expander {
    padding: 15px;
    color: #8b9597;
}

.-accordion--active .-accordion__heading {
    color: #687175;
}

.-accordion--active .-accordion__heading > .-icon:before {
    content: "—";
}

.-accordion--horizontal {
    height: 260px;
}

.-accordion--horizontal .-accordion__panel {
    position: relative;
    float: left;
    height: 100%;
    width: 100%;
}

.-accordion--horizontal .-accordion__heading {
    width: 260px;
    text-align: right;
    -webkit-transform: /*translateX(-100%)*/ rotate(-90deg) translateZ(0px);
    -moz-transform: /*translateX(-100%)*/ rotate(-90deg) translateZ(0px);
    -ms-transform: /*translateX(-100%)*/ rotate(-90deg) translateZ(0px);
    -o-transform: /*translateX(-100%)*/ rotate(-90deg) translateZ(0px);
    transform: /*translateX(-100%)*/ rotate(-90deg) translateZ(0px);
    -webkit-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -ms-transform-origin: right top 0;
    -o-transform-origin: right top 0;
    transform-origin: right top 0;
}

.-accordion--horizontal .-accordion__heading > .-icon {
    right: 227px;
    -webkit-transform: rotate(90deg) translateZ(0px);
    -moz-transform: rotate(90deg) translateZ(0px);
    -ms-transform: rotate(90deg) translateZ(0px);
    -o-transform: rotate(90deg) translateZ(0px);
    transform: rotate(90deg) translateZ(0px);
}

.-accordion--horizontal .-accordion__expander {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 450px;
    margin-left: 50px;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.-accordion--basic.-accordion--vertical .-accordion__panel {
    border-bottom: 2px solid #edf1f2;
}

.-accordion--basic.-accordion--horizontal .-accordion__panel {
    border-right: 2px solid #edf1f2;
}

.-accordion--basic .-accordion--active {
    background-color: #f6f9f9;
}

.-accordion--box .-accordion__panel {
    border: 2px solid #edf1f2;
}

.-accordion--box.-accordion--vertical .-accordion__panel {
    margin-bottom: 10px;
}

.-accordion--box.-accordion--horizontal .-accordion__panel {
    margin-right: 10px;
}

.-accordion--box .-accordion__heading {
    background-color: #edf1f2;
}

*, *:focus {
    outline: none;
    border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

a, .container, .list-view .sub-category, .cascade-slider_arrow-left, .cascade-slider_arrow-left:hover, .cascade-slider_arrow-right, .cascade-slider_arrow-right:hover, .small-header #header .header-top, header, .small-header .header-nav-links, .header-nav-links, #header .inner-logo a img, #header .inner-logo a img, #header .header-top.inner-header .header-title span, .product-box, .btn-inner, button, button:hover, .btn-inner:hover, .product-box:hover, .news-box:hover, .news-box, .logo img, img, .btn, header, .small-header, .upper-header, header .inner-header .bottom-header .submenu ul li a:before, .sm_menu_outer, #sm_menu_ham, .green-btn, main, .white-btn, footer {
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

/* General
--------------------------------------------------------------------------------------------------------*/

input[type=search] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
}

input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
}

::-moz-selection {
    color: #fff;
    background: #0098a1;
}

::selection {
    color: #fff;
    background: #0098a1;
}

html, body {
    height: 100%;
}

.wrapper {
    min-height: 100%;
    flex: 1 0 auto;
}

a, a:hover, a:focus {
    outline: none;
    text-decoration: none;
}

a {
    color: #0098a1;
}

a:hover {
    color: #96be0d;
}

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

em {
    font-style: normal;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    color: #282828;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

label {
    font-size: 14px;
    color: #3c3c3b;
    font-weight: 400;
    padding-top: 14px;
    margin-bottom: 8px;
    word-wrap: break-word;
}

h1 {
    font-weight: 300;
    color: #000;
    font-size: 50px;
    line-height: 54px;
    letter-spacing: 0.5px;
    margin-bottom: 60px;
}

h2 {
    font-weight: unset;
    font-size: 36px;
    line-height: 30px;
    letter-spacing: 0.2px;
    padding-bottom: 30px
}

h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #282828;
    padding: 0;
    margin-bottom: 20px;
}

h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #282828;
    padding: 0;
    margin-bottom: 5px;
}

p {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #282828;
}

/* Header
--------------------------------------------------------------------------------------------------------*/

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    background: #fff;
}

header .logo {
    display: block;
    padding: 12px 0 0 0;
}

header .logo img {
    width: 174px;
}

.small-header header {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.small-header .header-nav-links {
    margin-top: 38px;
}

.small-header header .logo {
    padding: 12px 0 0 0;
}

.small-header header .logo img {
    width: 150px;
}

.small-header header .submenu {
    top: 115px;
}

header .mob-header {
    display: none;
}

.inner-header {
    text-align: right;
}

/*.inner-header .upper-header {*/
/*transition: 0;*/
/*}*/

.inner-header .upper-header > ul {
    float: right;
}

.inner-header .upper-header ul li {
    position: relative;
    float: left;
}

.inner-header .upper-header ul li.open > a {
    background: #FFF;
    color: #0098a1;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.is-checkout .inner-header .upper-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.is-checkout .inner-header .upper-header ul li > a {
    color: #000;
}

.is-checkout .inner-header .upper-header ul li.open > a {
    box-shadow: none;
}

.inner-header .upper-header ul li.open .hover-img {
    opacity: 1;
}

.inner-header .upper-header ul li .sub-dropdown.sub-dropdown-basket {
    top: calc(100% + 6px);
}

.header-top {
    background: #4a4a49;
}

.header-nav-links {
    margin-top: 57px;
}

.header-nav-links li img {
    position: relative;
    top: -3px;
}

header .help-text {
    padding: 2px 0 2px 35px;
    background: url(../img/help-icon.png) no-repeat;
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    float: left;
    margin: 16px 0 0;
    text-align: left;
    background-position: left center;
}

@media (min-width: 992px) and (max-width: 1199px) {
    header .help-text {
        margin: 7px 0 0;
    }
}

.inner-header .upper-header ul li.chalan a .no.lang {
    width: auto;
    padding: 0 5px;
    border-radius: 10px;
    right: 0px;
}

.inner-header .upper-header ul li.chalan a i {
    width: 23px;
    height: 18px;
}

.chalan ul li {
    width: 100%;
}

.inner-header .upper-header ul li .sub-dropdown {
    background: #fff;
    position: absolute;
    right: 0;
    z-index: 1;
    top: 95%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    display: none;
    text-align: left;
    padding: 15px 20px;
    /* Anpassung width: 340px; */
}

.inner-header .upper-header ul li .sub-dropdown.lang {
    padding: 10px 20px;
    width: fit-content;
    left: 0;
}

html[lang="it"] .inner-header .upper-header ul li .sub-dropdown.lang {
    min-width: 140px;
}

.inner-header .upper-header ul li .sub-dropdown.login-box {
    width: 400px;
}

.inner-header .upper-header ul li .sub-dropdown.login-box .form-group {
    margin-bottom: 30px;
}

.inner-header .upper-header ul li .sub-dropdown.login-box .form-control {
    height: 40px;
    font-size: 14px;
    padding-bottom: 0;
}

.inner-header .upper-header ul li .sub-dropdown.login-box .effect-input label{
    font-size: 16px;
}

.inner-header .upper-header ul li .sub-dropdown.login-box .forgot-password {
    font-weight: 600;
    color: #96be0d;
    font-size: 13px;
    margin: 5px 0;
    display: block;
}

.inner-header .upper-header ul li .sub-dropdown.login-box .forgot-password:hover {
    color: #0098a1;
}

.inner-header .upper-header ul li .sub-dropdown .checkbox {
    text-align: left;
    margin: -2px 0 15px 0;
}

.inner-header .upper-header ul li .sub-dropdown .checkbox label {
    padding-top: 0;
}

.inner-header .upper-header ul li .sub-dropdown .green-btn {
    width: 100%;
    min-width: 85px;
    float: right;
    text-align: center;
    display: block;
    padding: 7px 6px;
    border: 0;
    margin: 0;
    text-align: center;
}

.inner-header .upper-header ul li .sub-dropdown .search-outer {
    position: relative;
}

.inner-header .upper-header ul li .sub-dropdown .search-outer .form-control {
    padding-right: 30px;
    min-width: 250px;
}

.inner-header .upper-header ul li .sub-dropdown .search-outer .search-btn {
    position: absolute;
    background: transparent;
    border: none;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.inner-header .upper-header ul li .sub-dropdown li {
    display: block;
    margin-right: 0;
    text-align: left;
    width: 100%;
}

.inner-header .upper-header ul li .sub-dropdown li a {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    display: block;
    padding: 5px 0;
}

.inner-header .upper-header ul li.open .sub-dropdown li a {
    color: #282828;
    white-space: nowrap;
}

.inner-header .upper-header ul li .sub-dropdown li a:hover {
    color: #0098a1;
}

.inner-header .upper-header ul li .sub-dropdown li a i {
    position: relative;
    top: 8px;
}

.inner-header .upper-header ul li .sub-dropdown li a i img {
    opacity: 1 !important;
}

.inner-header .upper-header ul li:last-child {
    margin-right: 0;
}

.inner-header .upper-header ul li:last-child a {
    padding-right: 0;
}

.inner-header .upper-header ul li > a {
    font-size: 13px;
    line-height: 16px;
    color: #FFf;
    position: relative;
    display: block;
    padding: 13px 21px 16px;
}

.inner-header .upper-header ul li a:hover {
    color: #0098a1;
}

.inner-header .upper-header ul li a.cart {
    font-weight: 700;
}

.inner-header .upper-header ul li a i {
    height: 18px;
    width: 18px;
    display: inline-block;
    margin-right: 6px;
    top: 4px;
    position: relative;
}

.inner-header .upper-header ul li a i img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 100%;
}

.inner-header .upper-header ul li a i img.hover-img {
    opacity: 0;
}

.inner-header .upper-header ul li a:hover i img {
    opacity: 0;
}

.inner-header .upper-header ul li a:hover i img.hover-img {
    opacity: 1;
}

.inner-header .upper-header ul li a .no {
    height: 17px;
    width: 17px;
    display: inline-block;
    background: #0098a1;
    border-radius: 50%;
    text-align: center;
    font-size: 11.52px;
    line-height: 17px;
    position: relative;
    top: -12px;
    right: 0;
    color: #fff;
    font-weight: 700;
}

@-moz-document url-prefix() {
    .inner-header .upper-header ul li a .no {
        line-height: 16px;
    }
}

.inner-header .upper-header ul li a i.fa.fa-power-off {
    top: 1px;
}

.inner-header .upper-header ul li a .no.lang {
    font-size: 9.6px;
}

.inner-header .bottom-header {
    padding-bottom: 19px;
}

.small-header .inner-header .bottom-header {
    padding-bottom: 10px;
}

.inner-header .bottom-header ul li {
    display: inline-block;
    margin-right: 23px;
    position: relative;
}

.inner-header .bottom-header ul li a i {
    height: 18px;
    width: 17px;
    display: inline-block;
    position: relative;
}

.inner-header .bottom-header ul li a i img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 100%;
}

.inner-header .bottom-header ul li a i img.hover-img {
    opacity: 0;
}

.inner-header .bottom-header ul li a:hover i img {
    opacity: 0;
}

.inner-header .bottom-header ul li a:hover i img.hover-img {
    opacity: 1;
}

.inner-header .bottom-header ul li:last-child {
    margin-right: 0;
}

.inner-header .bottom-header ul li a {
    font-size: 16px;
    line-height: 19px;
    color: #282828;
    font-weight: 700;
    padding-bottom: 5px;
}

.inner-header .bottom-header ul li a.green-btn {
    padding: 6px 22px;
    border-radius: 0 !important;
}

.inner-header .bottom-header ul li a:hover {
    color: #0098a1;
}

.inner-header .bottom-header ul li:hover a, .inner-header .bottom-header ul li a.first-click {
    color: #0098a1;
}

.inner-header .bottom-header:not(.no-hover) ul li:hover > .submenu, .inner-header .bottom-header ul li .submenu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transition-delay: 0s, 0s, 0.3s;
    -webkit-transition-delay: 0s, 0s, 0.3s;
    -moz-transition-delay: 0s, 0s, 0.3s;
    -o-transition-delay: 0s, 0s, 0.3s;
    -ms-transition-delay: 0s, 0s, 0.3s;
}

.inner-header .bottom-header ul li .submenu.single {
    position: absolute;
    right: 0;
    left: auto;
    padding: 26px 0 0 0;
    top: 100%;
    box-shadow: none;
}

.inner-header .bottom-header ul li .submenu.single.news-drop {
    width: auto;
}

.inner-header .bottom-header ul li .submenu.single.news-drop a {
    white-space: nowrap;
}

.small-header .inner-header .bottom-header ul li .submenu.single {
    top: 100%;
}

.inner-header .bottom-header ul li .submenu.single .inner-block {
    padding-left: 0;
    background: #fff;
    padding: 15px 15px 1px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.inner-header .bottom-header ul li .submenu.single.unternehmen {
    right: 0;
}

.inner-header .bottom-header .submenu.single ul li a {
    white-space: nowrap;
}

.inner-header .upper-header ul li .sub-dropdown.search-dropdown {
    padding: 10px;
}

.inner-header .upper-header .custom-form label {
    font-size: 18px;
}

.inner-header .upper-header ul li .sub-dropdown .checkbox label {
    position: relative;
    font-size: 13px;
    color: #666666;
    font-weight: 600;
    padding-left: 24px;
}

.inner-header .upper-header .custom-form .form-control {
    border-bottom: 2px solid #666666;
    font-size: 18px;
}

.inner-header .upper-header .custom-form .last {
    margin-bottom: 10px;
}

.inner-header .upper-header .custom-form .form-group {
    margin-bottom: 18px;
}

.inner-header .upper-header .checkbox-outer .icheckbox_square {
    top: 2px;
}

.inner-header .upper-header .custom-form .effect-input {
    padding-top: 0;
}

.inner-header .upper-header .effect-input label {
    top: 8px;
}

.inner-header .upper-header .effect-input.focused label, .inner-header .upper-header .effect-input.filled label {
    font-size: 14px;
    top: -13px;
}

.inner-header .upper-header .effect-input.focused .form-control, .inner-header .upper-header .effect-input.filled .form-control {
    border-bottom: 2px solid #96be0d !important
}

.primary-color {
    background: #96be0d;
}

.green-btn {
    background: #96be0d;
    text-align: center;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 12.48px !important;
    line-height: 16px !important;
    padding: 14px 25px;
    color: #fff !important;
    display: inline-block;
    font-weight: 700;
}

.green-btn:hover {
    background: #0098a1;
}

.white-btn {
    background: #fff;
    text-transform: uppercase;
    font-size: 12.48px;
    line-height: 16px;
    padding: 12px 15px;
    border-radius: 21.5px;
    color: #0098a1;
    display: inline-block;
    font-weight: 700;
    border: 2px solid transparent;
}

.white-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.white-btn.border-btn {
    background: transparent;
    border: 2px solid #4db8bd;
    color: #fff;
}

.white-btn.border-btn.white-border {
    border: 2px solid #fff;
}

.white-btn.border-btn.white-border:hover {
    background: #fff;
    color: #0098a1;
    border-color: #fff;
}

.white-btn.border-btn:hover {
    background: #4db8bd;
    color: #fff;
    border-color: #83cdd1;
}

.form-control-login {
    box-shadow: none;
    border-radius: 4px;
}

.form-control-login:focus {
    box-shadow: none;
    border-color: #0098a1;
}

.trusted-shops {
    position: fixed;
    left: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 20;
}

/* header */
header .submenu {
    position: fixed;
    left: 0;
    right: 0;
    top: 138px;
    padding: 22px 0 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    -webkit-transform: translateY(-16px);
    -moz-transform: translateY(-16px);
    -o-transform: translateY(-16px);
    -ms-transform: translateY(-16px);
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    -webkit-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    -moz-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    -o-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    -ms-transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

header .submenu .container-fluid {
    background: #fff;
    padding: 20px;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.2);
}

header .submenu:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    background: #fff;
    bottom: 0;
    width: 100%;
    display: none;
}

header .submenu h4 {
    font-size: 21.12px;
    line-height: 25px;
    color: #96be0d;
    font-weight: 700;
    margin-bottom: 19px;
    letter-spacing: 0.6px;
    word-wrap: break-word;
}

header .inner-header .bottom-header .submenu ul li {
    display: block;
    margin: 0 0 19px 0;
}

header .inner-header .bottom-header .submenu ul li a {
    font-size: 15.36px;
    word-wrap: break-word;
    line-height: 20px;
    color: #282828;
    font-weight: 700;
    letter-spacing: 0.4px;
    position: relative;
    display: inline;
    padding-bottom: 0;
}

header .inner-header .bottom-header .submenu ul li a:before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    background: #96be0d;
    width: 0;
    height: 2px;
    bottom: 0;
}

header .inner-header .bottom-header .submenu ul li a:hover:before {
    left: 0;
    right: 0;
    width: 100%;
}

header .inner-header .bottom-header .submenu ul li a.top:after, header .inner-header .bottom-header .submenu ul li a.new:after {
    position: absolute;
    background: #0098a1;
    border-radius: 30px;
    padding: 1px 7px;
    color: white;
    font-weight: bolder;
    font-size: 11px;
    top: -1px;
    right: -50px;
}

header .inner-header .bottom-header .submenu ul li a.new
{
    margin-right:40px;
}

header .inner-header .bottom-header .submenu ul li a.new:after {
    content: "NEW";
}

header .inner-header .bottom-header .submenu ul li a.top:after {
    content: "TOP";
}

header .inner-header .bottom-header .submenu ul li a:hover {
    color: #96be0d;
}

header .inner-header .bottom-header .submenu ul li ul {
    padding: 3px 0 0 14px;
}

header .inner-header .bottom-header .submenu ul li ul li {
    margin: 0 0 3px 0;
}

header .inner-header .bottom-header .submenu ul li ul li a {
    font-weight: 400;
}

header .inner-header .dd-shortcode-text {
    padding-top: 0px !important
}

header .cart-block {
    display: none;
}

body.mmactive:before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}

html.mmactive {
    overflow: hidden;
}

main {
    margin-top: 160px;
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.banner {
    position: relative;
    text-align: center;
}

.banner.imagefill {
    height: 657px;
}

.banner .info {
    position: absolute;
    left: 14%;
    right: 0;
    top: 43%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.banner .info p {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 26px;
    padding-bottom: 40px;
    margin-bottom: 0;
    color: #FFF;
}

.dropzone-ctn {
    position: relative;
    text-align: center;
}

.dropzone-ctn.imagefill {
    height: 480px;
}

.dropzone-ctn .info {
    position: absolute;
    left: 14%;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.dropzone-ctn .info p {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 26px;
    padding-bottom: 40px;
    margin-bottom: 0;
    color: #FFF;
}

h2.main-title {
    font-size: 36.48px;
    line-height: 45.48px;
    color: #282828;
    padding-left: 0;
    letter-spacing: 0.4px;
}

.how-works {
    text-align: center;
}

.how-works .row {
    padding: 0 100px;
}

.main-title h2, h2.main-title {
    font-size: 38px;
    line-height: 43px;
    font-weight: 600;
    color: #96be0d;
    padding-bottom: 50px;
}

.how-works .info {
    padding: 0 470px 66px;
}

.how-works .detail-block {
    padding: 0 15px;
    border: none;
}

.how-works .detail-block i {
    display: block;
    margin-bottom: 52px;
}

.how-works .detail-block i img {
    margin: 0 auto;
}

/*.how-works .detail-block h3 {font-size: 22px; line-height: 27px; font-weight: 700; color: #282828;}*/
.how-works .detail-block p {
    line-height: 22px;
    margin-bottom: 3px;
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 15px;
    letter-spacing: 0.1px;
}

.how-works .btn-block {
    text-align: center;
    margin-top: 83px;
}

.how-works .btn-block a {
    display: inline-block;
    max-width: 300px;
    width: 100%;
}

/*.material-block {padding: 50px 0 157px;}
.material-block h2 { padding-bottom: 70px; font-size: 28px; line-height: 37px; font-weight: 600; color: #282828; padding-right: 35%; letter-spacing: -0.3px }*/
.material-block .left-inner-block.imagefill {
    height: 695px;
}

.material-block .right-inner-block {
    padding-top: 61px;
    margin-left: -36px;
}

.material-block .material-inner {
    margin-bottom: 34px;
    padding-right: 25px;
}

.material-block .material-inner:last-child {
    margin-bottom: 0;
}

/*.material-block .material-inner h3 { padding-bottom: 12px; color: #282828; font-size: 22px; font-weight: 700; }*/
.material-block .material-inner p {
    padding: 0 0 20px 0;
    letter-spacing: 0.13px;
    font-weight: 400;
}

.material-block .left-inner-block.imagefill {
    height: 695px;
}

.already-done {
    text-align: center;
    position: relative;
}

.already-done .container {
    position: relative;
}

.already-done .dropzone-ctn {
    height: 409px;
    background: #3c3c3b;
}

.dd-shortcode-text .already-done .banner {
    height: 355px;
}

.dd-shortcode-text .already-done .dropzone-ctn {
    height: 355px;
}

.already-done h2.main-title, .newsletter-block-head h2 {
    color: #fff;
    padding-bottom: 50px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.already-done .info-block {
    position: absolute;
    left: 0;
    right: 0;
    top: 92px;
    padding: 0 15px;
}

.already-done .info-block p, .newsletter-block-head p {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.2px;
}

.already-done ul {
    margin-top: 52px;
}

.already-done.induktor ul {
    margin-top: unset;
}

.already-done ul li {
    display: inline-block;
    margin-right: 40px;
    margin-bottom: 5px;
}

.already-done ul li:last-child {
    margin-right: 0 !important;
}

.already-done ul li a {
    width: 330px;
    max-width: 100%;
}

.suitable-method .left-inner-block.imagefill {
    height: 692px;
}

.suitable-method .info-block {
    position: absolute;
    left: 344px;
    right: 0;
    top: 177px;
    width: 24%;
}

.suitable-method .info-block h2.main-title {
    padding-bottom: 45px;
}

/*.suitable-method .info-block h3 { padding-right: 85px; line-height: 27px; }*/
.suitable-method .info-block a {
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #0098a1;
}

.suitable-method .info-block a:hover {
    color: #96be0d;
}

.suitable-method .info-block p {
    padding-bottom: 13px;
}

.already-done.projects-block .dropzone-ctn.imagefill {
    height: 390px;
}

.already-done.projects-block .info-block {
    top: 131px;
}

.already-done.projects-block ul {
    margin-top: 51px;
}

.already-done.projects-block ul li a {
    width: 280px;
}

.questions {
    text-align: center;
    padding: 120px 0;
}

.questions h2.main-title {
    padding-bottom: 50px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 600;
    color: #282828;
}

.questions p {
    letter-spacing: 0.2px;
    font-size: 16px;
    font-weight: 400;
    color: #282828;
}

.questions ul {
    margin: 75px 70px 0 67px;
}

.questions ul li {
    display: inline-block;
    float: left;
    width: 33%;
}

.questions ul a {
    display: inline-block;
    font-size: 22px;
    line-height: 27px;
    color: #282828;
    font-weight: 600;
}

.questions ul a:hover {
    color: #0098a1;
}

.questions ul a span {
    margin: 19px 0 0 -3px;
    display: block;
}

.questions ul a i {
    display: block;
    height: 83px;
    width: 83px;
    position: relative;
    margin: 0 auto;
}

.questions ul a i img {
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.questions ul a i img.hover-img {
    opacity: 0;
}

.questions ul a:hover i img {
    opacity: 0;
}

.questions ul a:hover i img.hover-img {
    opacity: 1;
}

/* footer */
footer {
    background: #e8e8e8;
    position: relative;
    flex-shrink: 0;
    overflow-x: hidden;
}

.mmactive footer {
    right: 78%;
}

footer .footer-outer {
    margin: 0 -14px;
}

footer .footer-top {
    padding: 35px 0 8px;
    border-bottom: 1px solid #fff;
}


.footer-links {
    margin-bottom: 20px;
}

footer .footer-top .footer-links {
    float: left;
    width: 28%;
    letter-spacing: 0.1px;
    margin: 0 35px 13px 0;
}

@media (max-width: 468px) {
    footer .footer-top .footer-links {
        float: none;
        width: 100%;
    }
}

footer .footer-top .footer-links.col2 {
    width: 24.4%;
}

footer .footer-top .footer-links:last-child {
    margin-right: 0;
}

footer .footer-top .footer-links h3 {
    font-size: 14.4px;
    line-height: 18.4px;
    font-weight: 700;
    padding-bottom: 13px;
    text-transform: uppercase;
}

footer .footer-top .footer-links li {
    margin-bottom: 4px;
}

footer .footer-top .footer-links li a {
    color: #282828;
    display: inline-block;
}

footer .footer-top .footer-links li a:hover {
    color: #0098a1;
}

footer .footer-top .footer-links.payment-methods {
    width: auto;
}

footer .footer-top .footer-links.payment-methods ul li {
    margin: 0 10px 10px 0;
    display: inline-block;
}

footer .footer-top .footer-links.payment-methods ul li a:hover img {
    opacity: 0.7;
}

footer .footer-top .footer-links.last-col {
    width: 100%;
}

footer .footer-bottom {
    padding: 27px 0 38px;
    width: 100%;
}

footer .footer-bottom .social-icons li {
    display: inline-block;
    margin-right: 15px;
}

footer .footer-bottom .social-icons li.zinc-award {
    margin-left: 40px;
}

footer .footer-bottom .social-icons li.award {
    margin-right: 30px;
}

footer .footer-bottom .social-icons li.award.shop-award {
    margin-right: 10px;
}

footer .footer-bottom .social-icons li a {
    display: inline-block;
}

footer .footer-bottom .social-icons li a i {
    height: 28px;
    width: 28px;
    position: relative;
    display: block;
}

footer .footer-bottom .social-icons li a i img {
    position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
    bottom: 0;
    max-width: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

footer .footer-bottom .social-icons li a i img.hover-img {
    opacity: 0;
}

footer .footer-bottom .social-icons li a:hover i img {
    opacity: 0;
}

footer .footer-bottom .social-icons li a:hover i img.hover-img {
    opacity: 1;
}

footer .footer-bottom .signup-link {
    text-align: right;
}

footer .footer-bottom .signup-link button {
    margin: 55px -14px 0 0;
    display: inline-block;
    line-height: 22px;
    border: none;
}

footer .post-footer {
    background: #282828;
    padding: 24px 0;
    text-align: center;
}

.commercial-configurator-hint
{
    font-size:9pt;
    color:gray;
    padding-bottom:5px;
}

footer .commercial-footer{
    text-align:center;
    font-size:9pt;
    padding-bottom:5px;
}

footer .post-footer p {
    color: #fff;
    font-size: 11.52px;
    line-height: 15.52px;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.footer-links-partner {
    text-align:center;
}

.footer-links-partner li {
    display:inline-block;
    margin-right:30px;
}

/* Inner Detail page */
/* 10-02-2018 */
.detail-page h2.main-title {
    font-size: 38px;
    line-height: 42px;
    padding-bottom: 52px;
}

/* 10-02-2018 */
.detail-page .detail-listing {
    padding: 64px 0 16px;
}

.detail-page .detail-listing .listing-link {
    margin: 33px 0 139px;
}

.detail-page .detail-listing .listing-link li {
    margin-bottom: 23px;
}

.detail-page .detail-listing .listing-link li:last-child {
    margin-bottom: 0;
}

.detail-page .detail-listing .listing-link li a {
    letter-spacing: -0.3px;
    font-weight: 400;
}

.detail-page .product-details {
    border-top: 1px solid #4d4f4f;
    padding: 81px 0 21px;
}

.detail-page .product-details h3.section-title {
    padding: 76px 0 10px 0;
}

.detail-page .product-details .img-block {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.detail-page .product-details .img-block:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.detail-page .product-details .product-text {
    padding: 74px 0;
}

.detail-page .product-details .product-text a {
    font-weight: 700;
}

.detail-page .product-details .product-text p {
    margin-bottom: 13px;
}

/** 1 nov 2017 **/

.detail-page .product-details .product-text h3 {
    margin-right: -50px;
}

.detail-page .product-details .tech-list {
    margin-bottom: 34px;
}

.detail-page .product-details .tech-list .left-img {
    height: 216px;
}

.detail-page .product-details .tech-list .left-img a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.detail-page .product-details .tech-list:last-child {
    margin-bottom: 65px;
}

.detail-page .product-details .tech-list p {
    margin-bottom: 12px;
}

.detail-page .product-details .tech-list a {
    font-weight: 600;
}

.detail-page .product-details .detail-text {
    margin-bottom: 35px;
}

.detail-page .product-details .full-product-img {
    height: 492px;
    margin: 83px 0 89px;
}

.detail-page .product-details .thumbnail-img {
    height: 204px;
    margin-bottom: 25px;
}

.eingangstore .themen-box {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    cursor:pointer;
}

.eingangstore .themen-box:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    cursor:pointer;
}

.eingangstore .dd-image-box {
    margin:0px;
}

.eingangstore .dd-image-box img{
    width:100%;
}

.detail-page .product-details .thumbnail-img a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.detail-page .product-details .thumbnail-view {
    margin-bottom: 50px;
}

.detail-page .product-details .thumbnail-view p {
    margin-bottom: 13px;
}

.detail-page .product-details .thumbnail-view a {
    font-weight: 700;
}

.detail-page .already-done .info-block {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.detail-page .already-done h2.main-title {
    padding-bottom: 6px;
}

.detail-page .questions h2.main-title {
    padding-bottom: 13px;
}

.form-control {
    box-shadow: none;
    border-radius: 4px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0098a1;
}

/* 1st nov 2017 */
span.no.lang {
    text-transform: uppercase;
}

a, a:hover, a:focus {
    outline: none;
    text-decoration: none;
}

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

a:focus {
    outline: none !important;
}

em {
    font-style: normal;
}

/* Header
-------------------------------------------------------------------------------------------------------------- */
#header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    background: transparent;
}

#header .service-menu.showLogin .dropdown-menu {
    min-width: 207px;
    padding: 23px 0 10px;
}

.header-top {
    background: #4a4a49;
}

.header-top .row {
    display: flex;
}

.header-links {
    margin: 0;
    padding: 0;
    float: right;
}

.header-links li {
    float: left;
    margin-right: 28px;
}

.header-links li:last-child {
    margin-right: 0;
}

.header-links li a {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding: 10px 10px 6px;
    position: relative;
}

.header-links li a em {
    background: #96be0d;
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 18px;
    border: 1px solid #fff;
    border-radius: 100%;
    top: 5px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    display: block;
    font-style: normal;
}

.header-links li a.tag-block em {
    right: 17px;
}

.header-links li a.cart-block em {
    right: 25px;
}

.header-links li a:hover, .header-links li a:focus {
    text-decoration: none;
    background: #363635;
}

.header-links li a img {
    margin: 0 auto 2px;
    display: block;
    width: 33px;
    height: 29px;
}

.header-links li span {
    display: block;
    color: #fff;
}

.header-bottom {
    padding-top: 12px;
    box-shadow: 0 0 2px #707070;
    -webkit-box-shadow: 0 0 2px #707070;
    -moz-box-shadow: 0 0 2px #707070;
    -ms-box-shadow: 0 0 2px #707070;
    background: #fff;
}

.header-bottom .navbar {
    margin-top: 90px;
    border-bottom: 0;
}

.header-bottom .navbar-nav li a {
    font-size: 12px;
    line-height: 16px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600 !important;
    padding: 8px 18px;
    position: relative;
    text-transform: uppercase;
}

.header-bottom .navbar-nav li a:after {
    position: absolute;
    content: "";
    bottom: 0px;
    left: 0;
    width: 1px;
    height: 30px;
    background: #96be0d;
}

.header-bottom .navbar-nav li.active a, .header-bottom .navbar-nav li.active a:hover, .header-bottom .navbar-nav li.active a:focus {
    background: #96be0d;
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.header-bottom .navbar-nav li a:hover {
    color: #96be0d;
    text-decoration: none;
}

.header-bottom .navbar-nav li.active-nav a {
    color: #96be0d;
    text-decoration: none;
}

.header-bottom .navbar-default {
    min-height: inherit;
}

.header-bottom .navbar-collapse {
    padding-right: 0;
}

.header-bottom .dropdown.moreLinks {
    display: none !important;
}

.header-right-links {
    padding-right: 10px;
}

.header-right-links li {
    float: left;
    padding-top: 4px;
    padding-right: 10px;
}

.header-right-links li:last-child {
    padding-right: 0;
}

.logo {
    display: inline-block;
}

.dropdown-menu {
    background-color: #363635;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border: 0;
}

.dropdown-menu-variants {
    background-color: white;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    border: 0;
}

.dropdown-menu .form-control {
    border: 1px solid #aeaeae;
    border-radius: 0;
    font-size: 12px;
    background: transparent;
    box-shadow: none;
}

.dropdown-menu .form-control:focus {
    border: 1px solid #96be0d;
}

.header-links li .dropdown-menu li a img {
    width: auto !important;
    height: auto !important;
}

.dropdown-toggle {
    border-radius: 0;
}

.languages-menu .dropdown-menu {
    padding: 0;
    min-width: 130px;
}

.languages-menu .dropdown-menu li {
    width: 100%;
    margin-right: 0;
}

.languages-menu .dropdown-menu li a {
    padding: 10px 0 10px 35px;
}

.languages-menu .dropdown-menu li a img {
    left: 10px;
    position: absolute;
    top: 12px;
}

.languages-menu .dropdown-menu li.active a, .languages-menu .dropdown-menu li a:hover, .languages-menu .dropdown-menu li a:focus {
    background: #96be0d;
}

.form-control::-webkit-input-placeholder {
    color: #aeaeae;
}

.form-control::-moz-placeholder {
    color: #aeaeae;
}

.form-control:-ms-input-placeholder {
    color: #aeaeae;
}

.form-control:-moz-placeholder {
    color: #aeaeae;
}

.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

.btn-secondary {
    background: #96be0d;
    border: 0 none;
    color: #ffffff;
    font-weight: 600;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}

.btn-secondary:hover, .btn-secondary:focus {
    background: #0098a1;
    color: #fff;
}

.dropdown-menu form .forgot-link {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    font-weight: 600;
    text-transform: none;
    margin: 24px 0 0;
    padding: 0;
}

.dropdown-menu form .forgot-link:hover, .dropdown-menu form .forgot-link:focus {
    color: #96be0d;
}

.dropdown-menu .checkbox {
    padding: 11px 0 17px;
    margin: 0;
    vertical-align: middle;
}

.dropdown-menu .checkbox label {
    color: #ffffff;
    font-size: 12px;
    line-height: 16px;
    padding-left: 20px;
    position: relative;
}

.dropdown-menu .checkbox-inner {
    margin-bottom: 5px;
}

.dropdown-menu .form-group {
    margin-bottom: 9px;
}

.dropdown-menu .form-control {
    height: 31px;
    color: #fff;
}

.dropdown-menu .form-control {
    height: 31px;
    color: #fff;
}

.service-menu li {
    float: none;
}

.service-menu a.btn:hover span, .service-menu a.btn:focus span {
    color: #fff;
}

.service-menu.open, .languages-menu.open {
    background: #363635;
}

.roll-over {
    opacity: 0;
}

.header-right-links li a:hover .roll-over, .header-right-links li a:focus .roll-over {
    opacity: 1;
}

.header-right-links li a:hover .normal, .header-right-links li a:focus .normal {
    opacity: 0;
}

.header-right-links li a img {
    position: absolute;
    left: 10px;
    top: 1px;
}

.header-right-links li a.header-check img {
    top: -2px;
}

@media (min-width: 992px) {
    .header-top-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*Search*/
.header-links li a.search-link {
    padding: 0;
    height: 65px;
    width: 60px;
}

.header-links li a.search-open {
    background: #363635;
}

.search-icon span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.search::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
}

.search::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

.search:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

.search:-moz-placeholder {
    color: #fff;
    opacity: 1;
}

.search-box-outer {
    position: relative;
}

.search-box {
    position: absolute;
    width: 205px;
    max-width: 0;
    padding: 17px 20px;
    box-sizing: border-box;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    right: 60px;
    color: #4a4a49;
    background: #363636;
    border: 0;
    color: #ffffff;
    height: 65px;
    top: 0;
    opacity: 0;
    overflow: hidden;
}

.expanded.search-box {
    max-width: 270px;
    opacity: 1;
}

.search-icon {
    width: 60px;
    height: 45px;
    background: transparent;
    position: absolute;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    top: 10px;
}

.search-icon {
    right: 0;
}

.search {
    line-height: 19px;
    font-size: 16px;
    height: 22px;
    font-size: 13px;
    font-weight: 400;
    background: transparent;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    padding: 4px 10px;
    width: 145px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

.search:focus {
    border: 1px solid #96be0d;
}

input[type="search"].search {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

/* Content */

#wrapper {
    margin-top: 160px;
    overflow: hidden;
}

.flexslider {
    border: 0;
}

.left-block {
    padding: 0 4px 0 0;
}

.right-block {
    padding: 0 0 0 4px;
}

#dropzone {
    margin-right: 0;
    position: relative;
}

#dropzone p {
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    margin: 10px auto;
    width: 60% !important
}

#dropzone .info.noautolinker p {
    margin: 10px 0;
}

#dropzone input {
    vertical-align: sub;
}

.dropzone {
    padding: 43px 0 5px;
    text-align: center;
}

.dropzone.dz-started {
    padding: 71px 54px;
}

.flexslider {
    margin-bottom: 0;
}

.flexslider .flex-control-paging {
    display: block;
}

.flex-control-nav {
    bottom: 20px;
}

.flex-control-paging li a {
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    background: transparent;
}

.flex-control-paging li a.flex-active, .flex-control-paging li a:hover, .flex-control-paging li a:focus {
    background: #96be0d;
}

.dropzone .dz-message {
    position: relative;
    top: -10px;
}

.dz-fallback {
    display: none;
}

.dropzone.clickable {
    cursor: pointer;
}

#dropzoneBox1 {
    padding: 20px;
}

#wrapper > .container > #dropzone {
    margin-top: 40px;
}

.flexslider .slides img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.support-block {
    position: fixed;
    top: 320px;
    right: 0;
    background: #4a4a49;
    width: 56px;
    margin: 0;
    padding: 10px;
    z-index: 999;
}

/* height:105px; */
.support-block li {
    border-bottom: 1px solid #fff;
    padding: 10px 0;
}

.support-block li:first-child {
    padding-top: 0;
}

.support-block li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.support-block li a {
    display: block;
}

.support-block li img {
    margin: 0 auto 2px;
    display: block;
}

.support-block .roll-over {
    opacity: 0;
}

.support-block li a:hover .roll-over, .support-block li a:focus .roll-over {
    opacity: 1;
}

.support-block li a:hover .normal, .support-block li a:focus .normal {
    opacity: 0;
}

.support-block li a.phone .roll-over {
    margin-top: -28px;
}

.support-block li a.chat .roll-over {
    margin-top: -38px;
}

.support-block li a.upload .roll-over {
    margin-top: -37px;
}

.support-block li a.phone img {
    width: 22px;;
    height: auto;
}

.support-block li a.chat img {
    width: 39px;
    height: 36px;
}

.support-block li a.chat img:last-child {
    height: 30px;
    margin-top: -35px;
}

.support-block li a.upload img {
    width: 39px;
    height: 35px;
}

/* .title,.page-header{font-size:40px;line-height:44px;font-weight:600;text-transform:uppercase;color:#96be0d;padding: 0 0 12px 0;margin: 0;} */
.page-header {
    padding-top: 35px;
    border: none;
}

.content-block p {
    color: #000;
    font-weight: 400;
    width: 100%;
    padding: 0 0 12px 0;
    font-size: 15px;
}

.service-block {
    padding: 40px 0 49px
}

.content-block .left {
    padding-right: 6px;
}

.content-block .right {
    padding-left: 6px;
}

.method-block {
    background-image: url(../img/background.png);
    background-repeat: no-repeat;
    background-color: #3c3c3b;
    padding: 40px 0 38px;
    margin-left: -15px;
    margin-right: -15px;
}

.method-block .col-sm-6 {
    margin-bottom: 12px;
}

.method-inner-content {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.method-inner-content h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    line-height: 35px;
    font-weight: 600;
    float: left;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    margin: 0;
    line-height: 1;
}

.method-inner-content a img {
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: #fff;
}

.method-inner-content a {
    color: #fff;
}

.method-inner-content a:hover {
    color: #fff;
    text-decoration: underline;
}

.method-inner-content span {
    display: block;
    text-transform: none;
}

.content-block.white p {
    color: #fff;
}

.method-content {
    position: relative;
}

/* .video-block img{width:74px;height:74px;} */

#video-block1, #video-block2, #video-block3, #video-block4 {
    width: 1170px;
}

#video-block1 > div, #video-block2 > div, #video-block3 > div, #video-block4 > div {
    line-height: 0;
}

#video-block1 iframe, #video-block2 iframe, #video-block3 iframe, #video-block4 iframe {
    width: 100%;
}

.credentials-block {
    padding: 38px 0 26px;
}

.credentials-inner-block {
    position: relative;
    margin: 10px 0 4px;
    display: inline-block;
}

.triangle-block {
    float: left;
    width: 39%;
    margin-bottom: 12px;
}

.first-block {
    left: 0;
    top: 0;
}

.second-block {
    margin-top: 30px;
    margin-left: -214px;
}

.third-block {
    margin-left: -215px;
}

.fourth-block {
    margin-top: 30px;
    margin-left: -227px;
    position: relative;
    left: 13px;
}

.fifth-block {
    margin-top: 30px;
}

.sixth-block {
    margin-left: -214px;
}

.seventh-block {
    margin-top: 30px;
    margin-left: -215px;
}

.eighth-block {
    left: 13px;
    margin-left: -228px;
    position: relative;
}

.triangle-block {
    display: block;
    position: relative;
}

.triangle-block .roll-over {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

.triangle-block:hover .roll-over {
    opacity: 1;
}

.triangle-block:hover .normal-img {
    opacity: 0;
}

.credentials-inner-block img {
    max-width: 100%;
}

.triangle-content-block {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    display: none;
    padding: 0 40px;
}

.triangle-content-block span {
    display: block;
    color: #fff;
    font-size: 17px;
    line-height: 21px;
    font-weight: 700;
    padding-bottom: 10px;
}

.triangle-content-block em {
    font-size: 17px;
    line-height: 21px;
    color: rgb(255, 255, 255);
    font-style: normal;
    font-weight: 400;
}

.up {
    bottom: 20px;
}

.down {
    top: 20px;
}

.triangle-block:hover .triangle-content-block {
    display: block;
}

.contact-outer-block {
    padding-top: 80px;
}

.contact-outer-block .title {
    padding-bottom: 19px;
}

.contact-block {
    background: #708e0a;
    height: 59px;
}

.contact-links li {
    padding: 0;
}

.contact-links li:first-child {
    padding-left: 15px;
}

.contact-links li:last-child {
    padding-right: 15px;
}

.contact-links li .contact-content {
    position: relative;
    background: #96be0d;
}

.contact-links li:last-child .contact-content:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 1px;
}

.contact-links li .contact-content:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    width: 1px;
}

.contact-links li a {
    display: block;
    text-align: center;
    height: 59px;
    position: relative;
    padding: 10px 25px 10px 0;
}

.contact-links li a.email {
    padding: 13px 25px 13px 0;
}

.contact-links li a:after {
    position: absolute;
    content: "";
    left: 1px;
    top: 0;
    background: #708e0a;
    width: 0;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    height: 100%;
}

.contact-links li a:hover:after {
    width: 100%;
}

.contact-links li a em {
    font-style: normal;
    position: relative;
    z-index: 1;
    display: block;
}

.contact-links li a span {
    font-size: 13px;
    line-height: 17px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px 0;
    position: relative;
    top: 1px;
    left: 14px;
}

.contact-links li a span:after {
    position: absolute;
    top: -2px;
    left: -7px;
    right: -7px;
    background: #fff;
    height: 1px;
    content: "";
}

.contact-links li a span:before {
    position: absolute;
    bottom: -2px;
    left: -7px;
    right: -7px;
    background: #fff;
    height: 1px;
    content: "";
}

.contact-links li a.hotline img {
    width: 35px;
    height: 40px;
}

.contact-links li a.callback img {
    width: 35px;
    height: 43px;
}

.contact-links li a.chat img {
    width: 44px;
    height: 41px;
}

.contact-links li a.email img {
    width: 51px;
    header-bottom: 33px;
}

.work-block {
    background: #4a4a49;
    margin-left: -15px;
    margin-right: -15px;
}

.work-block .col-sm-5 {
    width: 38.4%;
}

.work-block .col-sm-7 {
    width: 61.6%;
}

.work-block .col-sm-5, .work-block .col-sm-7 {
    padding: 0;
}

.works-inner-block {
    padding: 50px;
}

.works-inner-block .btn-tertiary {
    float: none;
    padding: 3px 14px;
    width: auto;
    color: #96be0d;
    border-top: 1px solid #96be0d;
    border-bottom: 1px solid #96be0d;
}

.works-inner-block .btn-tertiary:hover, .works-inner-block .btn-tertiary:focus {
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.works-content-block {
    min-height: 320px;
}

.works-content-block p {
    line-height: 14px;
    width: 91%;
}

.title span {
    display: block;
    color: #fff;
}

/* Footer */
.footer-top {
    padding: 14px 0 19px;
}

.footer-top h6 {
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #4a4a49;
    padding: 0 0 8px 0;
    margin: 0;
}

.footer-top ul li {
    padding-bottom: 2px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
    color: #4a4a49;
}

.footer-top ul li a:hover, .footer-top ul li a:focus {
    color: #96be0d;
}

.footer-thumb-block span {
    display: block;
    padding-bottom: 10px;
}

.footer-thumb-block span a {
    display: inline-block;
}

.sponser-block {
    margin-top: -36px;
}

.sponser-block li {
    float: left;
    margin-right: 2px;
}

.sponser-block li:last-child {
    margin-right: 0;
}

/*.footer-bottom{background:#4a4a49;padding:26px 0;}*/
#footer .social-links li {
    margin: 0 23px 0 0;
    padding: 0;
    float: left;
}

.social-links li a {
    width: 34px;
    height: 34px;
    display: block;
}

.social-links li a.facebook {
    background: url(../img/social-icons.png) no-repeat 0 0;
}

.social-links li a.google-plus {
    background: url(../img/social-icons.png) no-repeat -43px 0;
}

.social-links li a.instagram {
    background: url(../img/social-icons.png) no-repeat -85px 0;
}

.social-links li a.linkedin {
    background: url(../img/social-icons.png) no-repeat -129px 0;
}

.social-links li a.twitter {
    background: url(../img/social-icons.png) no-repeat -172px 0;
}

.social-links li a.youtube {
    background: url(../img/social-icons.png) no-repeat -215px 0;
}

.social-links li a.facebook:hover, .social-links li a.facebook:focus {
    background: url(../img/social-icons.png) no-repeat 0 -34px;
}

.social-links li a.google-plus:hover, .social-links li a.google-plus:focus {
    background: url(../img/social-icons.png) no-repeat -43px -34px;
}

.social-links li a.instagram:hover, .social-links li a.instagram:focus {
    background: url(../img/social-icons.png) no-repeat -85px -34px;
}

.social-links li a.linkedin:hover, .social-links li a.linkedin:focus {
    background: url(../img/social-icons.png) no-repeat -129px -34px;
}

.social-links li a.twitter:hover, .social-links li a.twitter:focus {
    background: url(../img/social-icons.png) no-repeat -172px -34px;
}

.social-links li a.youtube:hover, .social-links li a.youtube:focus {
    background: url(../img/social-icons.png) no-repeat -215px -34px;
}

.footer-bottom .form-group {
    float: left;
    width: 420px;
    margin-right: 4px;
}

.footer-bottom .form-control {
    border: 1px solid #fff;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
}

.footer-bottom .form-control:focus {
    border: 1px solid #96be0d;
}

.footer-bottom .button {
    float: left;
}

.footer-bottom .footer-right {
    float: right;
}

.footer-bottom .copyright {
    font-size: 10px;
    line-height: 14px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 20px 0 0;
    margin: 0;
}

.footer-bottom .form-control::-webkit-input-placeholder {
    color: #fff;
}

.footer-bottom .form-control::-moz-placeholder {
    color: #fff;
}

.footer-bottom .form-control:-ms-input-placeholder {
    color: #fff;
}

.footer-bottom .form-control:-moz-placeholder {
    color: #fff;
}

.btn-tertiary {
    font-size: 13px;
    position: relative;
    display: block;
    font-weight: 600;
    background: transparent;
    color: #fff;
    text-align: center;
    border: 0;
    text-transform: uppercase;
    padding: 3px;
    float: left;
    position: relative;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-top: 3px;
}

.btn-tertiary:hover, .btn-tertiary:focus {
    color: #96be0d;
    border-top: 1px solid #96be0d;
    border-bottom: 1px solid #96be0d;
}

.footer-left-block {
    padding-right: 27px;
}

.languages-menu .dropdown-menu li a {
    border-bottom: 1px solid #fff;
}

.languages-menu .dropdown-menu li:last-child a {
    border-bottom: 0;
}

/* Accordion */
.accordion {
    width: 100%;
    overflow: hidden;
    margin: 0;
}

.accordion ul {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    height: 100%;
}

.accordion ul li {
    display: table-cell;
    vertical-align: bottom;
    position: relative;
    width: 20%;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
}

.accordion ul li div {
    display: block;
    overflow: hidden;
    width: 100%;
    text-align: center
}

.accordion ul li .accordion-content > div {
    display: block;
    width: 77%;
    position: relative;
    z-index: 1;
    vertical-align: bottom;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    font-family: Open Sans, sans-serif;
    transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    outline: none;
}

.accordion .dd-shortcode-text {
    height: 451px !important;
}

.accordion ul li .accordion-content > div > * {
    opacity: 0;
    visibility: hidden;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 5;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    transition: all 400ms ease;
    outline: none;
}

.accordion ul li .accordion-content > div h5 {
    font-family: Open Sans, sans-serif;
    text-overflow: clip;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-weight: 600;
    top: 59px;
}

.accordion ul li .accordion-content > div p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    font-weight: 400;
}

.accordion ul li:nth-child(1) {
    background: #0098a1;
}

.accordion ul li:nth-child(2) {
    background: #0f888f;
}

.accordion ul li:nth-child(3) {
    background: #1e797e;
}

.accordion ul li:nth-child(4) {
    background: #2c696c;
}

.accordion ul li:nth-child(5) {
    background: #3b5a5b;
}

.accordion ul li:nth-child(1).accordion-open div.accordion-header {
    border-left: 1px solid #80ccd0;
}

.accordion ul li:nth-child(2).accordion-open div.accordion-header {
    border-left: 1px solid #75b7bb;
}

.accordion ul li:nth-child(3).accordion-open div.accordion-header {
    border-left: 1px solid #609b9e;
}

.accordion ul li:nth-child(4).accordion-open div.accordion-header {
    border-left: 1px solid #649496;
}

.accordion ul li:nth-child(5).accordion-open div.accordion-header {
    border-left: 1px solid #628889;
}

.accordion ul li.accordion-open {
    width: 61%;
}

.accordion ul li.accordion-open .accordion-content > div * {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    outline: none;
}

.accordion ul li div.accordion-header {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

.accordion ul li.accordion-open div.accordion-header {
    width: 23%;
    border-left: 1px solid #80ccd0;
}

.accordion ul li div.accordion-header h4 {
    left: 50%;
    margin-left: -17px;
}

.accordion ul li.accordion-open div.accordion-header h4 {
    height: 23%;
    left: 50%;
    margin-left: -17px;
}

.accordion-content img {
    display: block;
    margin: 0 auto !important;
    text-align: center;
}

.accordion-header h4 {
    bottom: 0;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    height: 40%;
    left: 0;
    position: absolute;
    text-align: left;
    top: 0;
    transform: translateX(-100%) rotate(-90deg);
    -webkit-transform: translateX(-100%) rotate(-90deg);
    -moz-transform: translateX(-100%) rotate(-90deg);
    -ms-transform: translateX(-100%) rotate(-90deg);
    transform-origin: right top 0;
    -webkit-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -ms-transform-origin: right top 0;
    width: 451px;
    padding-left: 102px;
}

.accordion ul li.accordion-open .accordion-content > div p, .accordion ul li.accordion-open div a h5 {
    overflow: visible;
    white-space: pre-wrap;
    padding-bottom: 10px;
}

.accordion ul li .accordion-content > div span {
    display: block;
}

.accordion ul li:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    width: 8px;
    background: #4a4a49;
    height: 100%;
    right: 0;
}

.accordion ul li:last-child:after {
    display: none;
}

.accordion ul li .accordion-header em {
    position: absolute;
    bottom: 50px;
    left: 50%;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: rotate(-270deg);
    -webkit-transform: rotate(-270deg);
    -moz-transform: rotate(-270deg);
    -ms-transform: rotate(-270deg);
    display: inline-table;
    margin-left: -10px;
}

.accordion ul li .accordion-header em img {
    width: 24px;
    height: 15px;
}

.accordion ul li .accordion-header em .roll-over {
    opacity: 1;
    display: none;
}

.accordion ul li.accordion-open .accordion-header em .roll-over {
    display: block;
}

.accordion ul li.accordion-open .accordion-header em .normal {
    opacity: 1;
    display: none;
}

.accordion ul li.accordion-open .accordion-header em {
    margin-left: -13px;
    bottom: 53px;
}

.accordion .accordion-content > div p a {
    color: #fff;
    text-decoration: underline;
}

.accordion .accordion-content {
    cursor: pointer;
}

/* cart page */
.checkout-block {
    padding: 15px 0;
}

.well {
    background: none;
    border: 0;
    box-shadow: none;
    margin-top: 20px;
}

.well-sm {
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.well span {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: #4a4a49;
    font-size: 400;
}

.btn-main {
    font-size: 20px;
    padding: 15px 32px;
    border-radius: 0;
    line-height: 24px;
}

.basketcontents_table {
    padding-right: 75px;
}

.basketcontents_table .table-bordered, .basketcontents_table .table-bordered > thead > tr > td, .basketcontents_table .table-bordered > tbody > tr > td, .basketcontents_table .table-bordered > tfoot > tr > td {
    border: 0;
    padding: 15px 0;
}

.basketcontents_table .table-bordered tr {
    border-top: 1px solid #96be0d;
}

.basketcontents_table .table-bordered tr td {
    vertical-align: top;
}

.basketcontents_table .table-striped > tbody > tr:nth-of-type(2n+1) {
    background: none;
}

.basketcontents_table .table-bordered .totalPrice {
    text-align: right;
    width: 385px;
}

.basketcontents_table .table-bordered tr td span.ratio {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    display: block;
    color: #96be0d;
}

.css-basketcontents-padleft
{
    padding-left:30px !important;
}

.basketSummary {
    padding-left: 14%;
}

.quantity ul {
    float: left;
}

.quantity ul li {
    float: left;
}

.quantity ul li a {
    width: 30px;
    height: 30px;
    border: 1px solid #ececec;
    display: inline-block;
    background: #ececec;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #000;
}

.quantity ul li:last-child a {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.quantity ul li:first-child a {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.quantity ul li a:hover, .quantity ul li a:focus {
    background: #0098a1;
    color: #FFF;
    border-color: #0098a1;
}

.quantity ul li input {
    border-radius: 0;
    height: 30px;
    width: 43px;
    border: 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    color: #000;
    text-align: center;
    font-size: 15px;
}

.quantity ul li input.form-control:focus {
    box-shadow: none;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    border-left: 0;
    border-right: 0;
}

.quantity a.delete {
    float: left;
    padding: 4px 0 0 0;
    margin-left: 20px;
}

.quantity a.delete img {
    max-height: 20px;
}

.basketcontents_table td.quantity.clearfix {
    position: relative;
}

.basketcontents_table td.quantity.clearfix div {
    position: absolute;
    top: 50%;
    margin-left: 15px;
    transform: translate(0, -50%);
}

.dxMerchantBasket .basketcontents_table td.quantity.clearfix div {
    position: inherit;
    top: inherit;
    margin-left: 15px;
    transform: inherit;
}

.quantity a.delete .roll-over {
    display: none;
    opacity: 1;
}

.quantity a.delete:hover .roll-over, .quantity a.delete:focus .roll-over {
    display: block;
}

.quantity a.delete:hover .normal, .quantity a.delete:focus .normal {
    display: none;
}

.basketItemDesc h6 {
    font-size: 15px;
    line-height: 18px;
    color: #0098a1;
    font-weight: 700;
    word-wrap: break-word;
}

.basketItemSubItem
{
    padding-left:25px;
}

.basketItemDesc ul li {
    padding-bottom: 5px;
}

.basketItemDesc ul li:last-child {
    padding-bottom: 0;
}

.basketItemDesc ul li span {
    font-size: 14px;
    line-height: 18px;
    color: #575756;
    display: inline-block;
    padding-left: 8px;
    font-weight: 400;
    position: relative;
    top: 0;
    vertical-align: top;
}

.totalPrice em {
    color: #000000;
    display: block;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
}

.totalPrice span {
    color: #96be0d;
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
    display: block;
}

.text-muted {
    font-size: 15px;
    color: #000;
    font-weight: 300;
}

strong.text-muted {
    font-weight: 700;
}

.basketSummary .table-bordered, .basketSummary .table-bordered > thead > tr > td, .basketSummary .table-bordered > tbody > tr > td, .basketSummary .table-bordered > tfoot > tr > td, .basketSummary .table-bordered > tbody > tr > th {
    border: 0;
}

.basketSummary .table-bordered {
    background: #ececec;
    margin-bottom: 0;
}

.basketSummary .table-bordered tr th, .basketSummary .table-bordered tr td {
    padding: 15px 10px;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
}

.basketSummary .table-bordered tr td {
    font-weight: 600;
}

.basketSummary .table-bordered tr th.lead {
    font-weight: 700;
    vertical-align: middle;
}

.basketSummary .table-bordered tr td.lead {
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
}

.basketSummary .table-bordered > thead > tr > td.lead, .basketSummary .table-bordered > tbody > tr > td.lead, .basketSummary .table-bordered > tfoot > tr > td.lead {
    width: 130px;
}

.basketSummary .table-bordered tr th.lead, .basketSummary .table-bordered tr td.lead {
    padding: 4px 10px;
}

.basketSummary .table-responsive {
    border: 0px;
    overflow-y: hidden;
    padding-bottom: 15px;
    width: 100%;
}

.inner-row-lineup {
    border-top: 2px solid white;
}

.basketGrandTotal {
    font-weight: bold;
}

.form-control.checkout_basket_customusage {
    vertical-align: bottom;
}

.custom-usage-children .btn {
    padding: 0;
}

.custom-usage-children i:before {
    content: '\1F892';
    color: transparent;
    font-size: 18px;
    font-style: normal;
    padding: 0 5px 0 0;
}

.custom-usage-children i:last-child:before {
    color: #ccc;
}

.custom-usage-children .input-group {
    margin-top: 5px;
}

.lineBox {
    border-bottom: 1px solid #96be0d;
    padding-bottom: 20px;
    padding-top: 34px;
}

.btn-inner {
    color: #fff;
    display: inline-block;
    border: 0;
    box-shadow: none;
    background: #ececec;
    padding: 3px 12px;
    color: #0098a1;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    margin-right: 10px;
}

.btn-inner:last-child {
    margin-right: 0;
}

.btn-inner:hover, .btn-inner:focus {
    background: #0098a1;
    color: white;
}

.direct-to-block {
    padding-top: 215px;
}

.direct-to-block li {
    float: left;
    margin-right: 25px;
}

.direct-to-block li:last-child {
    margin-right: 0;
}

.direct-to-block li a {
    display: block;
}

/* News Page */
.inner-wrap {
    padding: 72px 0;
}

.inner-wrap p {
    width: 100%;
}

.news-content {
    padding: 15px 0;
}

.news-content a {
    color: #96be0d;
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.news-content a:hover, .news-content a:focus {
    color: #4a4a49;
}

.news-content span {
    display: block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #96be0d;
    padding-bottom: 16px;
}

.news-content p {
    padding-bottom: 6px;
}

.news-inner-block {
    padding-top: 22px;
}

.thumb-block {
    overflow: hidden;
    display: block;
}

.thumb-block img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

.thumb-block:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
}

.newsletter-block {
    background-image: url(/out/phoenix/img/banner-10.jpg);
    background-repeat: no-repeat;
    background-position: 0 15px;
    background-color: #3c3c3b;
    padding: 55px 30px 52px;
    text-align: center;
}

.newsletter-block.newsletter-sign {
    background-image: url(/out/phoenix/img/banner-10.jpg);
    background-repeat: no-repeat;
    background-position: 0 15px;
    background-color: #3c3c3b;
    padding: unset;
    text-align: unset
}

.newsletter-block form, form.newsletter-form {
    max-width: 915px;
    width: 100%;
    margin: 30px auto 15px;
}

.newsletter-block.newsletter-sign form {
    max-width: 700px;
    width: unset;
    margin: unset;
}

.newsletter-block .form-group {
    margin-bottom: 25px;
}

.newsletter-block .form-group label {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    padding-top: 0;
}

.newsletter-block .form-control {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #FFF;
    height: 29px;
    background: transparent;
}

.newsletter-block .form-control:focus {
    box-shadow: none;
    border: 1px slid
}

.newsletter-block.newsletter-sign .form-control {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #b3b2b2;
    height: 29px;
    background: transparent;
}

.newsletter-block.newsletter-sign .form-control:focus {
    box-shadow: none;
    border: 1px solid #b3b2b2;
}

.newsletter-block form p a {
    color: #fff;
    text-decoration: underline;
}

.newsletter-block form p a:hover, .newsletter-block form p a:focus {
    text-decoration: none;
}

.newsletter-block p {
    padding-bottom: 5px;
    line-height: 20px;
}

.newsletter-block.newsletter-sign p {
    padding: 10px 0;
    line-height: 20px;
}

.newsletter-block .form-control option:hover {
    background: #000;
}

.newsletter-block h2.title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: #FFF;
    padding-bottom: 25px;
}

/* *****************  CHECK BOX CSS **********************/
.checkbox {
    margin-bottom: 8px;
}

.checkebox label a {
    color: #fff;
    text-decoration: underline;
    display: block;
}

.checkbox label a:hover, .checked label a:focus {
    text-decoration: none;
}

.checkbox label, .radio label {
    line-height: 18px;
    font-size: 14px;
}

.checkbox label input[type="checkbox"] {
    margin-top: 2px;
}

.news-checkbox {
    max-width: 477px;
    margin-bottom: 15px;
}

.checkbox a {
    text-decoration: underline;
    color: #4a4a49;
}

.checkbox-news a {
    text-decoration: underline;
    color: #fff;
}

.checkbox a:hover {
    text-decoration: none;
}

/* News Detail */
.news-detail-block {
    padding: 23px 0 72px;
}

.news-detail-block h4 {
    font-size: 20px;
    line-height: 24px;
    color: #96be0d;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 3px;
}

.news-detail-block span {
    font-size: 12px;
    line-height: 16px;
    color: #96be0d;
    font-weight: 600;
    display: block;
    padding-bottom: 15px;
}

.more-news-block {
    background: #ededed;
    padding: 25px 0 0;
    margin-top: 20px;
}

.more-news-block .news-inner-block {
    padding-top: 3px;
}

.more-news-block .news-content {
    margin-bottom: 32px;
}

.newsletter-block .checkbox label, .newsletter-block .checkbox label a {
    color: #fff;
}

/* Impressum */
.button-block {
    padding-bottom: 30px;
}

.button-block li {
    float: left;
    width: 20%;
    display: table;
    padding-right: 5px;
    box-sizing: border-box;
}

.button-block li:last-child {
    padding-right: 0;
}

.button-block li a {
    display: table-cell;
    text-align: center;
    background: #b3b2b2;
    height: 30px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    vertical-align: middle;
}

.button-block li a:hover, .button-block li a:focus /* ,.button-block li.active a */
{
    background: #96be0d;
}

.detail-wrap {
    padding-bottom: 54px;
}

.detail-block {
    font-size: 12px;
    line-height: 16px;
    border-bottom: 1px solid #96be0d;
    padding: 35px 0 25px;
}

.detail-block address {
    font-weight: 400;
    color: #4a4a49;
    line-height: 16px;
    margin-bottom: 15px;
}

.detail-block address .phone-block {
    padding-top: 15px;
}

.detail-block .name {
    color: #4a4a49;
    padding-bottom: 16px;
}

.detail-block .name span {
    display: block;
    font-weight: 700;
}

.detail-block .name em {
    display: block;
    font-weight: 400;
}

.detail-block .account-block span {
    display: block;
    font-weight: 700;
    color: #4a4a49;
}

.detail-block .account-block em {
    display: inline-block;
    font-weight: 400;
}

.detail-block.terms-block p {
    font-weight: 700;
}

.detail-block .btn-secondary {
    padding: 5px 16px 5px 16px;
    letter-spacing: 1.3px;
    display: inline-block;
}

.detail-block .btn-secondary img {
    margin-right: 7px;
    width: 21px;
    height: 17px;
}

.detail-block a.btn-secondary:hover {
    color: #fff;
}

.detail-block a.btn-secondary:visited {
    color: #fff;
}

/*------------------------------------- Checkout Pages ------------------------------------------*/
/* Header */
.header-top.inner-header {
    padding: 10px 0 16px;
}

.header-top.inner-header .inner-logo {
    width: 11%;
}

.header-top.inner-header .header-logo {
    padding: 0;
    width: 9%;
}

.header-top.inner-header .header-title span {
    display: block;
    font-size: 12px;
    line-height: 16px;
    padding-top: 20px;
    color: #fff;
    font-weight: 400;
}

/* Content */

.checkout-page #wrapper, .is-checkout #wrapper {
    margin-top: 0;
    padding-top: 62px;
}

.checkout-page .inner-wrap, .is-checkout .inner-wrap, .inner-page .inner-wrap {
    padding: 37px 0;
}

.checkoutsteps {
    margin: 63px 23% 0 3%;
    width: 100%;
}

.checkoutsteps li {
    float: left;
    width: 26%;
    position: relative;
    padding-top: 16px;
    box-sizing: border-box;
}

.checkoutsteps li em {
    background: #cccccc;
    margin-left: 38px;
    height: 4px;
    display: block
}

.checkoutsteps li:last-child {
    padding-right: 0;
    width: auto;
}

.checkoutsteps li:first-child {
    margin-left: 35px;
}

.checkoutsteps li:first-child:before {
    display: none;
}

.checkoutsteps li:last-child:after {
    display: none;
}

.checkoutsteps li span {
    display: block;
    max-width: 140px;
    text-align: left;
    font-size: 20px;
    line-height: 24px;
    color: #cccccc;
    text-transform: capitalize;
    font-weight: 600;
    padding: 30px 5px;
}

.checkoutsteps li.passed span {
    color: #96be0d;
}

.checkoutsteps li.passed em {
    background: #96be0d;
}

.checkoutsteps li.passed:after {
    border-left: 15px solid #96be0d;
}

.checkoutsteps li.active em {
    background: #0098a1;
}

.checkoutsteps li.active span {
    color: #0098a1;
}

.checkoutsteps li.active:after {
    border-left: 15px solid #96be0d;
}

.checkoutsteps li.passed {
    background: url(../img/passed-step.png) no-repeat 0 0;
    background-size: 37px;
}

.checkoutsteps li.active {
    background: url(../img/active-step.png) no-repeat 0 0;
    background-size: 37px;
}

.checkoutsteps li {
    background: url(../img/next-step.png) no-repeat 0 0;
    background-size: 37px;
}

.login-title-block {
    padding: 35px 0;
}

.title-inner {
    text-transform: uppercase;
    margin: 0;
    padding: 0 0 15px 0
}

.title-inner .orderremarks_addition {
    font-size: 14px;
}

.login-block {
    border: 1px solid #b3b2b2;
    font-size: 12px;
    line-height: 16px;
    color: #4a4a49;
    padding: 23px 15px 12px 15px;
}

.login-block p {
    width: 80%;
    padding-bottom: 5px;
}

.login-block a {
    font-weight: 400;
    color: #000;
    display: block;
    margin-top: 28px;
}

.login-block a:hover, .login-block a:focus {
    color: #96be0d;
}

.login-block form {
    padding-top: 18px;
}

.login-block .form-group {
    margin-bottom: 7px;
    max-width: 364px;
}

.login-block .btn-secondary {
    margin-top: 14px;
    padding: 3px 15px;
}

.login-block span {
    display: block;
    font-weight: 600;
    padding-bottom: 18px;
}

.login-block ul {
    margin-bottom: 16px;
}

.login-block ul li {
    font-weight: 400;
    position: relative;
    padding-left: 10px;
    padding-bottom: 4px;
}

.login-block ul li:after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    line-height: 5px;
    background: #4a4a49;
    left: 0;
    top: 5px;
    border-radius: 100%;
}

.login {
    padding-right: 5px;
}

.register {
    padding-left: 5px;
}

.inner-logo a {
    display: block;
}

.inner-logo a img {
    width: 89px;
    height: 37px;
}

/*16-01-2018*/
.login-heading-block {
    text-align: center;
    margin: 48px 0 55px;
}

.login-heading-block h2 {
    float: none;
}

.login-heading-block h2.title {
    text-transform: capitalize;
    color: #4a4a49;
    font-size: 50px;
    line-height: 54px;
    font-weight: 300;
}

.accountLoginView {
    margin-bottom: 100px;
}

.accountLoginView .login-heading-block p {
    color: #000;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}

.inner-container {
    max-width: 1270px;
    margin: 0 auto;
}

.accountLoginView h4 {
    color: #282828;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 13px;
}

.accountLoginView p {
    font-weight: 300;
    font-size: 15px;
    line-height: 21px;
    color: #282828;
    margin-bottom: 10px;
}

.accountLoginView .panel-body {
    padding: 45px 53px;
}

.accountLoginView .panel-body .form-group {
    padding: 10px 0;
    position: relative;
}

.accountLoginView .panel-body span {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
    display: block;
}

.accountLoginView .form-control {
    background: #FFF;
    height: 40px;
    line-height: 43px;
    padding: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border: none !important;
    border-bottom: 3px solid #666666 !important;
    color: #666666;
    font-size: 22px;
    font-weight: 400;
}

.accountLoginView .align-right {
    float: right;
}

.accountLoginView .textLink {
    color: #96be0d;
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.accountLoginView div.panel-body .textLink:hover {
    color: #0098a1;
}

.accountLoginView .panel-body ul {
    margin-bottom: 65px;
}

.accountLoginView .panel-body li {
    padding-left: 10px;
    position: relative;
    font-weight: 300;
    font-size: 15px;
    color: #282828;
}

.accountLoginView .panel-body li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 11px;
    width: 3px;
    height: 3px;
    background: #282828;
    border-radius: 100%;
}

.effect-input {
    margin-top: 20px;
    position: relative;
}

.effect-input label,
.effect-input.focused label,
.effect-input.filled label {
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.effect-input label {
    position: absolute;
    padding: 0 !important;
    top: 8px;
    font-weight: 400;
    left: 0;
    font-size: 22px;
    color: #666666;
}

.effect-input.focused label {
    top: -20px;
    left: 0;
    font-size: 15px;
    color: #96be0d;
    font-weight: 500;
}

.effect-input.filled label {
    top: -20px;
    left: 0;
    font-size: 15px;
    color: #96be0d;
    font-weight: 500;
}

.effect-input.focused .form-control, .effect-input.filled .form-control {
    border-bottom: 3px solid #96be0d !important
}

label {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #4a4a49;
}

.form-control {
    line-height: 34px;
    height: 34px;
    width: 100%;
    border: 1px solid #b3b2b2;
    border-radius: 0;
    color: #4a4a49;
    padding: 0px 12px;
}

.form-control .btn {
    line-height: 20px;
    border: none;
}

.form-control:focus {
    box-shadow: none;
    border-radius: 0;
    border: 1px solid #96be0d;
}

.last-form-group {
    margin-top: 20px;
}

.first-form-group {
    margin-top: 28px;
}

.form-control::-webkit-input-placeholder {
    color: #b2b2b2;
}

.form-control::-moz-placeholder {
    color: #b2b2b2;
}

.form-control:-ms-input-placeholder {
    color: #b2b2b2;
}

.form-control:-moz-placeholder {
    color: #b2b2b2;
}

/* Address Page */
.checkbox-main.checkbox label {
    font-weight: 700;
    color: #000;
    width: 100%;
    padding-left: 20px;
}

.upper-block {
    padding-bottom: 27px;
}

.upper-block p {
    color: #000;
    padding: 0;
    margin: 0;
}

.upper-block p a {
    text-decoration: underline;
}

.upper-block p a:hover, .upper-block p a:focus {
    text-decoration: none;
    color: #000;
}

.upper-block .checkbox-main {
    padding-top: 5px;
}

.upper-block form {
    max-width: 756px;
    width: 100%;
}

.newsletter-checkbox-block {
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.newsletter-checkbox-block p {
    padding: 0
}

.newsletter-checkbox-block .dd-shortcode-text {
    padding: 0 !important
}

.border-block {
    border-bottom: 1px solid #96be0d;
    margin-bottom:20px;
}

.privacy-policy-block {
    margin-bottom: 12px;
}

.privacy-policy-block .checkbox-main.checkbox label, .order-block #basketVoucher .checkbox-main.checkbox label {
    color: #000000;
    font-weight: 400;
    padding-left: 17px;
    font-size: 15px;
    letter-spacing: 0.1px;
}

.privacy-policy-block .checkbox-main {
    margin: 10px 0 6px;
}

.privacy-policy-block .checkbox-main label a, .order-block .checkbox-main label a {
    display: inline-block;
    color: #575756;
    text-decoration: underline;
}

.privacy-policy-block .checkbox-main label a:hover, .privacy-policy-block .checkbox-main label a:focus, .order-block #basketVoucher .checkbox-main label a:hover, .order-block #basketVoucher .checkbox-main label a:focus {
    text-decoration: none;
}

.privacy-policy-block label a:hover {
    color: #96bf0d;
}

.data-block {
    padding: 15px 0 0;
}

.data-block form {
    padding: 15px 0 0;
}

.data-block label {
    margin-bottom: 0;
}

.text-danger .bootstrap-select {
    border-color: red !important;
}

.data-block .form-group {
    margin-bottom: 5px;
    padding-bottom: 10px;
    position: relative;
}

.help-block:empty {
    display: none;
}

.help-block li {
    white-space: nowrap;
}

.company {
    max-width: 338px;
}

.dd-small {
    max-width: 169px;
}

.bg-block {
    max-width: 283px;
}

.sm-block {
    max-width: 110px;
}

.md-block {
    max-width: 124px;
}

.sub-checkbox {
    margin-left: 30px;
}

.customer-account-block {
    padding: 10px 0;
}

.data-block .btn-secondary {
    margin-bottom: 15px;
}

/* Contact */
.form-wrap {
    padding: 0 0 32px;
}

.form-wrap .content-block p {
    width: 100%;
}

.banner {
    position: relative;
}

.banner img {
    width: 100%;
}

.banner-content {
    left: 0;
    margin-top: -35px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
}

.banner-content span {
    color: #ffffff;
    display: block;
    font-size: 60px;
    line-height: 66px;
    font-weight: 600;
    text-transform: uppercase;
}

.dropzone-ctn {
    position: relative;
}

.dropzone-ctn img {
    width: 100%;
}

.dropzone-ctn-content {
    left: 0;
    margin-top: -35px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
}

.dropzone-ctn-content span {
    color: #ffffff;
    display: block;
    font-size: 60px;
    line-height: 66px;
    font-weight: 600;
    text-transform: uppercase;
}

.message-block {
    padding: 20px 0;
}

.message-block textarea.form-control {
    height: 170px;
    max-width: 595px;
    resize: none;
    width: 100%;
    margin-top: 5px;
}

.form-wrap .btn-callback-send {
    margin-top: 25px;
}

/* Order Page */
.order-block .basketcontents_table .table-bordered tr td.quantity, .order-block .basketcontents_table .table-bordered tr td span.ratio {
    font-size: 14px;
    line-height: 18px;
    color: #4a4a49;
    font-weight: 400;
}

.address-wrap {
    padding-bottom: 25px;
}

.address-wrap li {
    float: left;
    width: 33%;
}

.address-wrap address {
    font-weight: 400;
    color: #4a4a49;
    margin-bottom: 10px;
}

.address-wrap span {
    display: block;
    font-weight: 700;
    color: #4a4a49;
    padding-bottom: 0;
}

.address-wrap em {
    display: block;
    font-weight: 400;
    color: #4a4a49;
}

.address-wrap .edit-block.last {
    padding-top: 12px;
}

.address-wrap .edit-block img {
    width: 14px;
    height: 19px;
}

.address-wrap .edit-block span {
    display: inline-block;
    position: relative;
    top: 5px;
}

.address-wrap .edit-block button, .orderRemarks button {
    border: none;
    background: none;
    font-size: 12px;
    color: #4a4a49;
    font-weight: bold;
    padding: 0px;
}

.address-wrap .edit-block button em, .orderRemarks button em {
    background: url(../img/edit@2x.png) no-repeat;
    width: 14px;
    height: 19px;
    background-size: 100% 100%;
    float: left;
}

.address-wrap .edit-block button:hover {
    color: #96be0d;
}

.address-wrap .edit-block button:hover em {
    background: url(../img/edit-hover@2x.png) no-repeat;
    background-size: 100% 100%;
}

.delievery-payment-block {
    padding-bottom: 20px
}

.order-block .condition.content-block {
    padding: 20px 0 0;
    margin-bottom: 12px;
}

.order-block .title-inner {
    padding-bottom: 9px;
}

.order-block .lineBox {
    padding-top: 0;
    padding-bottom: 16px;
}

.order-block #basketVoucher .checkbox-main.checkbox label {
    padding: 0 35px 0 25px;
}

.order-block #basketVoucher .checkbox-main {
    margin: 11px 0 0 10px;
}

.order-block .well .btn-main {
    width: 100%;
}

/* Upload Page */
.upload-main-block {
    padding: 71px 0 78px;
}

.upload-main-block #dropzone img {
    width: 257px;
    height: 225px;
}

.upload-main-block #dropzone {
    margin: 55px 0;
}

.upload-main-block .dropzone {
    padding: 70px 0 56px;
}

.upload-main-block .dropzone .radio-unit {
    max-width: 260px;
    width: 100%;
    margin: 0.2em auto;
    padding-bottom: 25px;
}

.upload-main-block .dropzone .split-input {
    margin-right: 0;
    font-weight: 600;
}

.upload-main-block .dropzone .split-input label {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.btn-upload {
    background: #4a4a49;
    border: 0;
    color: #ffffff;
    cursor: pointer !important;
    font-size: 20px;
    line-height: 24px;
    padding: 20px 45px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-upload:hover, .btn-upload:focus {
    background: #fff;
    color: #96be0d;
}

/* Payment Block */
.payment-content-block {
    padding: 17px 0 12px;
}

.payment-content-block li {
    padding-bottom: 5px;
}

.payment-content-block li:last-child {
    padding-bottom: 0;
}

.payment-content-block .payment-thumb {
    float: left;
    width: 9.4%;
}

.payment-content-block .payment-title {
    float: left;
    width: 47%;
    padding-left: 21px;
}

.payment-content-block .payment-title .radio {
    margin: 0;
    position: relative;
    top: -2px;
}

.payment-content-block .payment-title .radio label {
    font-weight: 700;
}

.payment-content-block .payment-title .radio input {
    margin-top: 2px;
}

.payment-content-block .payment-title p {
    font-size: 13px;
    line-height: 18px;
    color: #4a4a49;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.payment-content-block .payment-title label {
    font-size: 14px;
}

.payment-content-block .payment-detail {
    padding-left: 20px;
    display: none;
    margin-bottom: 5px;
}

.payment-outer-block {
    margin-bottom: 14px;
}

.payment {
    padding-bottom: 16px;
}

.payment h2 {
    float: left;
}

.payment a {
    float: right;
    color: #b3b2b2;
    font-size: 12px;
    line-height: 15px;
    padding-left: 30px;
    position: relative;
    width: 16%;
    margin-top: 19px;
}

.payment a img {
    height: 28px;
    left: 0;
    position: absolute;
    width: 20px;
}

.payment a:hover, .payment a:focus {
    color: #96be0d;
}

.payment a .roll-over {
    opacity: 0;
}

.payment a:hover .roll-over, .payment a:focus .roll-over {
    opacity: 1;
}

.payment a:hover .normal, .payment a:focus .normal {
    opacity: 0;
}

/* DropDown */
.dropdown-inner.btn-group {
    border: 1px solid #b3b2b2;
    box-shadow: none;
}

.dropdown-inner .dropdown-toggle {
    background: none;
    box-shadow: none;
    border: 0;
    height: 34px;
    outline: 0;
    color: #b2b2b2;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.dropdown-inner.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.dropdown-inner.btn-group .dropdown-toggle:active, .dropdown-inner.btn-group.open .dropdown-toggle {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    background: transparent;
    border: 0;
    font-weight: 400;
    color: #b2b2b2;
}

.dropdown-inner .dropdown-menu {
    background: #fff;
    border: 1px solid #b3b2b2;
    list-style: none;
    padding: 0;
}

.dropdown-inner .dropdown-menu li {
    display: block;
    padding: 0;
}

.dropdown-inner .dropdown-menu li:after {
    background: none;
}

.dropdown-inner .dropdown-menu li a {
    margin-top: 0;
    padding: 5px 10px;
    color: #4a4a49;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.dropdown-inner .dropdown-menu li a:hover, .dropdown-inner .dropdown-menu li a:focus {
    background: #96be0d;
    color: #fff;
}

.dropdown-inner .dropdown-menu li a span {
    padding-bottom: 0;
}

.inner-row-singlepayment {
    padding-top: 14px !important;
}

.titlelinkcolor {
    color: #96be0d !important;
}

.btn-grey {
    background: #575756;
    padding: 3px 15px;
    display: inline-block;
}

.inner-content {
    padding: 20px 0;
}

.inner-content .content-block.login-title-block {
    padding-bottom: 0;
}

.inner-content .content-block p {
    width: 100%;
}

.edit-table.basketcontents_table .table-bordered thead tr {
    border-top: 0;
}

.edit-table.basketcontents_table .table-bordered thead tr td {
    font-weight: 700;
    padding: 5px 0;
}

.edit-table.basketcontents_table .table-bordered tr td {
    vertical-align: top;
    color: #575756;
    font-weight: 400;
    padding: 7px 0;
}

.edit-table.basketcontents_table .acc_tbl tr td {
    width: 25%;
}

.edit-table.basketcontents_table .table-bordered tr td div {
    padding-bottom: 7px;
}

.edit-table.basketcontents_table .table-bordered tr td div img {
    width: 14px;
    height: 14px;
}

.edit-table.basketcontents_table .table-bordered tr td div label {
    position: relative;
    top: 2px;
    left: 6px;
}

.order-table.basketcontents_table .table-bordered tr td {
    vertical-align: middle;
}

.order-table.basketcontents_table .table-bordered tr td.status-bar {
    width: 150px;
}

.order-table .detail-btn {
    float: right;
}

.personal-info-block .newsletter-block, .newsletter-block.info-newsletter {
    background-image: none;
    background: #fff;
}

.newsletter-block.black .form-group label, .newsletter-block.black .checkbox label, .newsletter-block.black .checkbox a {
    color: #575756;
}

.newsletter-block.black form p a {
    color: #575756;
}

.newsletter-block.black .btn-secondary {
    padding: 3px 13px;
}

.linking-block {
    float: left;
    padding-top: 21px;
}

.linking-block li {
    border-top: 1px solid #96be0d;
}

.linking-block li:last-child {
    border-bottom: 1px solid #96be0d;
}

.linking-block li a {
    font-size: 12px;
    line-height: 16px;
    color: #575756;
    font-weight: 700;
    padding: 6px 10px;
    text-transform: uppercase;
    display: block;
}

.linking-block li a:hover, .linking-block li a:focus {
    color: #96be0d;
}

.content-blockacc span {
    display: block;
    color: #96be0d;
    font-weight: 700;
    padding-bottom: 22px;
}

.content-blockacc span label {
    width: 160px;
    color: #96be0d;
    font-weight: 700;
    font-size: inherit;
}

.password-block .bottom-block {
    padding-top: 15px;
}

.password-block .password-inner .form-group {
    max-width: 394px;
}

.reorder-table.basketcontents_table .table-bordered .totalPrice {
    width: 250px;
    text-align: center;
}

.reorder-table.basketcontents_table .table-bordered .totalPrice em {
    margin-right: 60px;
}

.reorder-list .list-unstyled .cartitem-block .quantity {
    float: left;
    padding-top: 5px;
}

.reorder-list .list-unstyled .cartitem-block button {
    float: right;
}

.revoucher-box .basketSummary .table-bordered {
    background: none;
    border-top: 1px solid #96be0d;
    border-bottom: 1px solid #96be0d;
}

.revoucher-box .basketSummary .table-bordered tr {
    border-bottom: 0;
}

.revoucher-box .basketSummary .table-bordered tr th, .revoucher-box .basketSummary .table-bordered tr td, .revoucher-box .basketSummary .table-bordered tr td.lead {
    font-size: 14px;
    line-height: 18px;
    padding: 0px 10px;
}

.revoucher-box .basketSummary .table-bordered tr td {
    text-align: right;
}

.revoucher-box .basketSummary .table-bordered tr:first-child th, .revoucher-box .basketSummary .table-bordered tr:first-child td {
    padding: 10px 10px 0 10px;
}

.revoucher-box .basketSummary .table-bordered tr:last-child th, .revoucher-box .basketSummary .table-bordered tr:last-child td {
    padding: 20px 10px 10px 10px;
}

.revoucher-box .basketSummary .table-responsive {
    border-bottom: 1px solid #96be0d;
    padding-bottom: 5px;
}

.revoucher-box .maturity-block {
    display: block;
    font-size: 14px;
    line-height: 18px;
    color: #575756;
    padding: 20px 10px 0;
}

.basketcontents_table .table-bordered tr td .basketImage a {
    display: block;
}

.reorder-table.basketcontents_table .table-bordered > thead > tr > td, .reorder-table.basketcontents_table .table-bordered > tbody > tr > td, .reorder-table.basketcontents_table .table-bordered > tfoot > tr > td {
    padding: 20px 10px;
}

.reorder-table.basketcontents_table .table-bordered > thead > tr > td:first-child, .reorder-table.basketcontents_table .table-bordered > tbody > tr > td:first-child, .reorder-table.basketcontents_table .table-bordered > tfoot > tr > td:first-child {
    padding: 15px 10px 15px 0;
}

.reorder-table.basketcontents_table .table-bordered > thead > tr > td:last-child, .reorder-table.basketcontents_table .table-bordered > tbody > tr > td:last-child, .reorder-table.basketcontents_table .table-bordered > tfoot > tr > td:last-child {
    padding: 15px 0 15px 10px;
}

.basketFunctions .btn-inner {
    color: #000;
    margin-right: 0;
    margin-bottom: 5px;
    margin-top: 5px;
}

.basketFunctions .btn-inner:hover, .basketFunctions .btn-inner:focus {
    color: #FFF;
}

.checkout-parent-custom {
    padding-left: 14%;
}

.checkout-btn-custom {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    height: 45px;
}

.checkout-btn-custom:hover, .checkout-btn-custom:focus {
    background: #0098a1;
}

.btn-return, .btn-return:hover, .btn-return:focus {
    background: #b3b2b2;
}

.return-table.basketcontents_table .table-bordered tbody tr .checkbox-main.checkbox {
    margin: 0;
}

.return-table.basketcontents_table .table-bordered tbody tr .checkbox-main.checkbox label {
    font-size: 14px;
    line-height: 18px;
    color: #96be0d;
    font-weight: 600;
}

.return-table.basketcontents_table .table-bordered tbody tr span {
    display: block;
    font-weight: 600;
    padding-bottom: 10px;
}

.return-table.basketcontents_table .table-bordered tbody tr span:last-child {
    padding-bottom: 0;
}

.return-table.basketcontents_table .table-bordered tbody tr span em {
    display: inline-block;
    font-weight: 400;
}

.return-table.basketcontents_table .table-bordered tbody tr .basketItemDesc h6 {
    margin: 0;
}

.return-table.basketcontents_table .table-bordered thead tr {
    border-bottom: 1px solid #96be0d;
}

.return-table.basketcontents_table .table-bordered thead tr th {
    border: 0;
    padding: 8px 2px;
    border-top: 1px solid #96be0d;
}

/* 11102016 */
.return-table.basketcontents_table .table-bordered thead tr th span {
    font-size: 12px;
    color: #4a4a49;
    font-weight: 700;
}

.return-table.basketcontents_table .table-bordered thead tr th span em {
    color: #4a4a49;
    font-weight: 400;
    display: inline-block;
    padding-left: 5px;
}

.return-table.basketcontents_table .table-bordered > tbody > tr.checked-item > td {
    padding-bottom: 60px;
}

.return-table.basketcontents_table .table-bordered > tbody > tr.checked-item > td.checked-dropdown {
    position: relative;
    padding-bottom: 65px;
}

.return-table.basketcontents_table .table-bordered > tbody > tr.checked-item > td.checked-dropdown > .table-dropdown {
    position: absolute;
    bottom: 0;
    width: 253px;
}

.return-table.basketcontents_table .table-bordered > tbody > tr.checked-item > td.send-back-block {
    padding-bottom: 15px;
}

.return-table.basketcontents_table .table-bordered > tbody > tr.checked-item > td.send-back-block .btn-secondary:hover {
    background: #96be0d;
}

.return-table.basketcontents_table .table-bordered tbody tr td .basketItemDesc h6 {
    padding-left: 0;
}

/* 11102016 */
.return-table.basketcontents_table .table-bordered tbody tr td.table-img {
    width: 90px;
}

/* 11102016 */
.return-table.basketcontents_table .table-bordered tbody tr td.date-outer {
    width: 125px;
}

/* 11102016 */
.return-table.basketcontents_table .table-bordered tbody tr td.quantity {
    width: 248px;
}

/* 11102016 */
.return-table.basketcontents_table .table-bordered tbody tr td .btn-secondary {
    letter-spacing: 1.1px;
    padding: 3px 13px;
}

.return-table.basketcontents_table .table-bordered thead tr th .status {
    padding-left: 130px;
}

/* 11102016 */
.return-table.basketcontents_table .table-bordered thead tr th .bestell {
    padding-left: 142px;
}

/* 11102016 */
.return-table.basketcontents_table .table-bordered thead tr th div {
    float: left;
}

.project-name-block {
    background: #96be0d;
    padding: 10px 20px;
}

.project-name-block h5 {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    float: left;
    padding: 0;
    margin: 0;
}

.project-name-block span {
    float: right;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    font-weight: 400;
    padding-top: 3px;
    padding-left: 10px;
}

.project-name-block span em {
    font-weight: 700;
    display: inline-block;
}

.project-table {
    border: 1px solid #dddddd;
    border-top: 0;
    width: 100%;
}

.project-table tr td {
    padding: 21px 10px;
}

.project-table .project-detail h6 {
    font-size: 16px;
    line-height: 20px;
    color: #96be0d;
    font-weight: 700;
    padding-bottom: 7px;
}

.project-table .project-detail ul li {
    float: left;
    font-size: 14px;
    line-height: 18px;
    color: #4a4a49;
    font-weight: 400;
    padding-right: 19px;
}

.project-table .project-detail ul li:last-child {
    padding-right: 0;
}

.project-table .project-detail ul li img {
    margin-right: 10px;
    position: relative;
    top: -1px;
}

.project-table .price em {
    font-size: 12px;
    line-height: 16px;
    display: block;
    text-transform: uppercase;
    font-weight: 400;
}

.project-table .price em.per {
    display: inline;
}

.project-table .price span.priceparameterspan {
    font-size: 15px;
    line-height: 16px;
    text-transform: lowercase;
    font-weight: 400;
    color: #333;
}

.project-table .price span {
    font-size: 40px;
    line-height: 44px;
    display: inline-block;
    font-weight: 600;
    color: #96be0d;
}

.project-table tr td .form-group {
    position: relative;
}

.project-table a.img-block img {
    width: 100%;
}

.project-table tr td a.img-block img {
    width: 100%;
}

.project-table tr td .form-group {
    float: left;
}

.project-table tr td .btn-red {
    float: left;
    height: 34px;
    margin-left: 5px;
    width: 40px;
}

.project-table tr td .btn-red i {
    font-size: 20px;
    line-height: 26px;
}

.project-table tr td .project-inner-content {
    float: right;
}

.project-table tr td .project-inner-content .btn-red {
    margin-top: 10px;
}

.btn-cart {
    background: #96be0d;
    border: 0 none;
    height: 34px;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
}

.btn-cart img {
    width: 15px;
    height: 15px;
}

.project-block {
    margin-bottom: 20px;
}

.project-table tr {
    border-bottom: 1px solid #dddddd;
}

.project-table tr:last-child {
    border-bottom: 0;
}

.project-table tr td .project-detail h6 {
    margin-top: 0;
}

.project-table tr td.bottom {
    vertical-align: bottom;
}

.project-table tr td .form-group {
    margin-bottom: 0;
}

.project-table tr td .btn-cart {
    height: 34px;
}

.shopping-btn-block {
    padding: 0 0 50px;
    margin-top: -10px;
}

.shopping-btn-block .checkbox.checkbox-main {
    display: inline-block;
    padding-right: 10px;
    margin-left: 20px;
}

.shopping-btn-block .checkbox.checkbox-main label .checkbox {
    top: 9px;
}

.shopping-btn-block .btn-inner:hover, .shopping-btn-block .btn-inner:focus {
    background: #575756;
}

.shopping-btn-block .btn-secondary {
    margin-right: 6px !important;
}

.shopping-btn-block .btn-secondary:last-child {
    margin-right: 0 !important;
}

.shopping-btn-block form {
    float: left;
    margin-right: 10px;
}

.btn-red {
    background: #d9534f;
}

.btn-red:hover, .btn-red:focus {
    background: #cb1e19;
}

.project-table tr td:first-child {
    width: 52px;
    padding: 21px 0 21px 20px;
}

.project-table tr td:nth-child(2) {
    width: 119px;
    padding: 21px 20px 21px 0;
}

.project-table tr td:nth-child(3) {
    width: 380px;
    padding: 10px 20px 21px 0;
}

/* Confifuration page - 27/10/2016 */
.config-page .lineBox {
    border-bottom: none;
    padding-bottom: 6px;
}

.config-page .basketcontents_table .table-bordered tbody tr:last-child {
    border-bottom: none;
}

.config-page .basketcontents_table .table-bordered tbody tr {
    border-top: none;
}

.config-page .basketcontents_table .table-bordered .totalPrice {
    width: auto;
}

.config-page .basketcontents_table .table-bordered .totalPrice ul li {
    margin-bottom: 6px;
}

.config-page .basketcontents_table .table-bordered .totalPrice ul li:last-child {
    margin-bottom: 0;
}

.config-page .well span {
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #575756;
    font-weight: 600;
    padding-bottom: 9px;
}

.add-cart em {
    display: inline-block;
    position: relative;
    top: -5px;
    margin-right: 9px;
}

.add-cart em img {
    width: 26px;
    height: 21px;
}

.add-cart {
    font-size: 20px;
    line-height: 24px;
    padding: 11px 20px 5px 10px;
    position: relative;
    bottom: -5px;
}

.config-page .basketcontents_table .table-bordered tr td.config-col span.ratio {
    color: #010100;
}

.config-page .basketcontents_table .table-bordered tr td.config-col span.config-val {
    color: #96be0d;
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    display: block;
    margin-bottom: -6px;
    max-width: 155px;
    overflow-wrap: break-word;
}

.config-page .basketcontents_table #table_cartItem_1 td:first-child {
    width: 444px;
}

.config-page .basketcontents_table #table_cartItem_1 td:first-child .basketImage a img {
    width: 100%;
}

.config-page .basketcontents_table #table_cartItem_1 td.filename-col {
    padding-left: 12px;
    width: 222px;
}

.config-page .basketcontents_table #table_cartItem_1 td.filename-col h6 {
    margin-bottom: 5px;
}

.config-page .basketcontents_table #table_cartItem_1 td.filename-col .basketItemDesc ul li {
    padding-bottom: 10px;
}

.config-page .basketcontents_table #table_cartItem_1 td.filename-col .basketItemDesc ul li:last-child {
    padding-bottom: 0;
}

.config-page .title-inner {
    text-transform: none;
    margin: 39px 0 0;
    letter-spacing: 0.1px;
    line-height: 21px;
}

.config-page .component-tbl {
    border: 1px solid #878787;
}

.config-page .component-tbl tbody tr:first-child td {
    border-top: none;
}

.config-page .component-tbl tbody tr td em {
    display: inline-block;
    width: 97px;
}

.config-page .component-tbl tbody tr td em img {
    width: 100%;
}

.config-page .component-tbl tbody tr td:first-child em {
    width: 160px;
}

.config-page .component-tbl tbody tr td:first-child em img {
    width: 100%;
}

.config-page .component-tbl tbody tr td {
    padding: 3px;
    vertical-align: middle;
    border-color: #878787;
}

.config-page .component-tbl span {
    color: #616160;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    position: relative;
    top: 9px;
    margin-right: 6px;
    display: inline-block;
}

.config-page .component-tbl span em {
    color: #878787;
    font-size: 20px;
    line-height: 24px;
    padding-left: 11px;
}

.config-page .component-tbl span.dark-text {
    font-size: 20px;
    line-height: 24px;
    color: #575756;
    font-weight: 600;
    top: 8px;
}

.config-page .component-tbl .comp-col1 {
    width: 451px;
}

.config-page .component-tbl .comp-col2 {
    width: 328px;
}

.config-page .component-tbl .comp-col3 {
    width: 250px;
}

.config-page .component-tbl .comp-col4 {
    width: 180px;
}

.config-page .component-tbl .comp-col4 span {
    position: relative;
    top: 5px;
    margin-right: 0;
}

.config-page .component-tbl .comp-col4 span em {
    width: auto;
}

.config-page .cartitem-block .btn-secondary.btn-grey {
    margin-top: 15px;
}

.config-page .cartitem-block .btn-secondary {
    width: 100%;
}

.config-page .cartitem-block .add-cart {
    padding: 10px 10px 7px;
}

.config-page .cartitem-block .add-cart em {
    top: -3px;
}

.config-page #component-tbl.table-responsive {
    border: 0 none;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.highlightSearchParam {
    font-weight: bold;
    color: #96be0d;
    text-decoration: underline;
}

.searchHorizontalLine {
    border-bottom: 1px solid #96be0d;
}

.searchCatTitle {
    font-size: 2em;
    line-height: 1.25em;
    font-weight: 600;
    text-transform: uppercase;
    color: #96be0d;
    padding: 12px 0 12px 0;
    margin: 0;
}

a span.search-excerpt {
    font-size: 14px;
}

/*--------------- 11102016 -----------------*/
.basket_table.table-bordered > tbody > tr > td.checkbox-middle {
    vertical-align: middle;
}

.basket_table.table-bordered > tbody > tr > td .form-group.text-field {
    margin-bottom: 0;
}

.basket_table.table-bordered > tbody > tr > td.checkbox-middle label .checkbox {
    margin-left: -6px;
}

.basket_table.cartitem-block .form-group.text-field {
    margin-top: 20px;
    margin-bottom: 0;
}

/************** MAC Browser ************/
.mac-os.safari .form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

.mac-os.chrome .form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
}

.text-danger label {
    color: red;
}

.text-danger input {
    border: 1px solid red !important;
}

.text-danger li {
    color: red !important;
}

.selectpicker + .alert-danger,
.bootstrap-select + .alert-danger {
    padding: 0;
    border: none;
    background: transparent;
    color: red;
    margin-top: 5px;
    margin-bottom: 10px;
}

@media all and (-ms-high-contrast: none) {
    .accordion ul li.accordion-open div.accordion-header {
        height: 102%;
    }

    /*IE10*/
    .accordion ul li.accordion-open div.accordion-header {
        height: 102%;
    }

    /*IE11*/
    .accordion ul li:after {
        height: 103%
    }

    /*IE10*/
    .accordion ul li:after {
        height: 103%
    }

    /*IE11*/
}

.header-links li span.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777;
    border-radius: 10px;
}

.payment_options {
    width: 130px;
}

.multi-add-block div.panel-default {
    border-radius: 0px;
}

.multi-add-block div.panel-default div.panel-body {
    height: 150px;
}

.multi-add-block div.panel-default.dd-add-delivery-address div.panel-body {
    padding-top: 55px;
}

.multi-add-block div.panel-default button.dd-edit-shipping-address {
    border-radius: 0px;
    background-color: #96be0d;
    border: 1px solid #96be0d;
}

.multi-add-block label.btn.btn-default.btn-block {
    color: #96be0d;
    border: 1px solid #96be0d;
    box-shadow: none;
}

.multi-add-block label.btn.btn-default.btn-block:hover {
    background-color: #96be0d;
    border: 1px solid #96be0d;
    box-shadow: none;
    color: #FFF;
}

.multi-add-block label.btn.btn-default.btn-block.active {
    background-color: #96be0d;
    border: 1px solid #96be0d;
    box-shadow: none;
    color: #FFF;
}

div.panel-body .textLink:hover {
    color: #96be0d;
}

.checkbox-column {
    width: 44px;
}

/*14-11-2016*/

.download-sm-6 {
    background: #4a4a49;
    padding: 23px 15px;
}

.download-block {
    margin-top: 53px;
}

.download-filter {
    padding-top: 8px;
}

.download-filter .col-sm-4 {
    width: 17%
}

.download-filter-btn {
    padding-left: 0
}

.download-filter .form-control {
    height: 31px;
    line-height: 31px;
}

.download-outer-col {
    margin-top: 4px;
}

.download-outer-col .col-sm-6 {
    padding: 0 10px 20px;
}

.download-outer-col .download-row {
    margin: 0 -10px;
}

.download-sm-left {
    padding-left: 25px;
    width: 38.7%;
    float: left;
}

.download-sm-right {
    min-height: 187px;
    width: 61.3%;
    padding-left: 8px;
    padding-top: 8px;
    float: left;
}

.download-sm-right h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    margin: 0;
    padding: 0
}

.download-sm-right h3 a, .download-sm-right h5 a {
    color: #fff;
}

.download-sm-right h3 a:hover, .download-sm-right h5 a:hover {
    color: #96be0d
}

.download-sm-right h5 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.download-option em {
    width: 32px;
    display: inline-block;
    background: url(../img/download@2x.png) no-repeat 0 0;
    background-size: 100% 100%;
    height: 20px;
    height: 27px;
    vertical-align: bottom;
    position: relative;
    top: -2px;
    margin-right: 6px;
}

.download-option {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    bottom: 0;
}

.download-option:hover, .download-option:focus {
    color: #96be0d
}

.download-option:hover em, .download-option:focus em {
    background-image: url(../img/download-h@2x.png);
}

/*15-11-2016*/
.listing-option {
    margin-top: 30px;
}

.listing-option .img-right-block img {
    max-width: 100%;
    margin-top: 40px;
}

.listing-option .btn-secondary {
    display: inline-block;
}

.listing-option h3 {
    color: #96be0d;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0
}

.listing-option {
    border-bottom: 1px solid #96be0d;
    padding-bottom: 30px;
}

.list-img-block {
    float: left;
    margin-right: 14px;
    width: 40%;
}

.list-img-block img {
    width: 100%;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #96be0d;
    border-color: #96be0d;
}

/* Slider texte shouldn't overlap faces */
#promo-carousel li .banner-headline {
    max-width: 330px;
    display: block !important;
}

#promo-carousel li .banner-teaser {
    max-width: 350px;
    display: block !important;
}

#promo-carousel li .dropzone-ctn-headline {
    max-width: 330px;
    display: block !important;
}

#promo-carousel li .dropzone-ctn-teaser {
    max-width: 350px;
    display: block !important;
}

.promo-carousel-testimonials .slider-content {
    background: rgba(255, 255, 255, 1.);
    padding: 60px;
    width: 100%;
    min-height: 251px;
}

.promo-carousel-testimonials .dx-edge {
    width: 0px;
    height: 0px;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: rgba(255, 255, 255, 1.) transparent transparent transparent;
    margin-left: 60px;
}

.dx-bg-testimonials h2 {
    margin-bottom: 20px;
}

.promo-carousel-testimonials .flex-control-nav {
    position: relative;
    bottom: auto;
    margin-top: 20px
}

.promo-carousel-testimonials .dx-testimonial-content {
    font-size: 20px;
    margin-top: 20px
}

.promo-carousel-testimonials .dx-testimonial-content p {
    margin: 0;
    padding: 0
}

.promo-carousel-testimonials .dx-testimonial-content a {
    color: #9b0f
}

.promo-carousel-testimonials .customer {
    border-radius: 50%
}

.promo-carousel-testimonials .info {
    max-width: 200px
}

.promo-carousel-testimonials .customer {
    border-radius: 50% !important;
    width: calc(100% - 30px) !important;
    min-width: unset !important;
}

.promo-carousel-testimonials .info {
    max-width: 200px !important;
    width: calc(100% - 30px) !important;
    min-width: unset !important;
}

@media (max-width: 767px) {
    .promo-carousel-testimonials .slider-content {
        display: block;
        min-height: 607px;
    }

    .promo-carousel-testimonials .slides img {
        position: relative;
        top: 80px;
        left: 100px;
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) {
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -webkit-box-align: center;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .row-eq-height-bottom {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: flex-end;
        -webkit-align-items: flex-end;
        -webkit-box-align: flex-end;
        align-items: flex-end;
    }
}

.alert-info {
    background: #FFF;
    width: auto;
    display: inline-block;
    border-color: #ececec;
    color: #000;
    padding: 5px 18px;
    letter-spacing: 0.1px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 0;
    -ms-border-radius: 0;
    -webkit-border-radius: 0;
}

.account-tiles {
    margin-right: -5px;
    margin-left: -5px;
}

.account-tile {
    padding: 0 5px;
}

.account-tile > div {
    border: 1px solid #b4b9b9;
    padding: 15px;
}

.account-tile .big-icon {
    width: 100%;
    padding-bottom: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin: 10px 0 40px;
}

.account-tile .title-inner {
    min-height: 3.5em;
    max-height: 3.5em;
    font-size: 21px;
}

.account-tile {
    margin-bottom: 10px;
}

.dx-downloads table td {
    vertical-align: top;
    padding-right: 15px;
}

#empty-basket-warning .btn {
    margin-right: 20px;
}

.banner-caption {
    pointer-events: none;
}

.dropzone-ctn-caption {
    pointer-events: none;
}

.zahlungsarten img {
    margin-right: 60px;
    height: 35px;
    width: auto !important;
}

.dd-shortcode-text ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.dd-shortcode-text ol:not(.flex-control-paging) > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

.dd-shortcode-text ol:not(.flex-control-paging) > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

.dd-shortcode-text li ol:not(.flex-control-paging) > li {
    margin: 0;
}

.dd-shortcode-text li ol:not(.flex-control-paging) > li:before {
    content: counters(item, ".") " ";
}

.dropzone .radio-unit {
    margin: 0;
}

.dropzone .split-input {
    margin-right: 20px;
}

.btn {
    margin-bottom: 2px;
}

.billing_edit {
    float: right;
}

.project-invite-users .checkbox input[type="checkbox"],
.project-admin .checkbox-inline input[type="checkbox"] {
    margin-left: 0;
}

.summary td {
    text-align: right;
}

.btn-turkey {
    background: #0098a1;
    border-color: #0098a1;
}

.btn-turkey:active,
.btn-turkey:hover {
    background: #017b82 !important;
    border-color: #0098a1 !important;
}

.dx-landing-nav li a {
    padding: 0px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    min-height: 85px;
    justify-content: center;
    align-items: center;
}

/* .dx-landing-nav li a:hover { background: #96be0d; } */
.dx-landingpage {
    font-size: 16px;
    line-height: 170%;
}

.landing-video {
    padding-bottom: 56.25%;
    position: relative;
}

.landing-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.header-help-btn {
    position: relative;
    margin-top: 17px;
    padding: 6px 10px 6px 31px;
    border: none;
    background: transparent;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    font-weight: 700;
}

.header-help-btn img {
    height: 16px;
    vertical-align: sub;
    margin-right: 7px;
    position: absolute;
    left: 10px;
}

.header-help-btn img:last-of-type {
    opacity: 0;
}

.header-help-btn:hover img:first-of-type {
    opacity: 0;
}

.header-help-btn:hover img:last-of-type {
    opacity: 1;
}

.header-help-btn:hover,
.header-help-btn:active,
.header-help-btn:focus {
    color: #96be0d !important;
    border-color: #96be0d !important;
    background: transparent !important;
}

.works-content-block .dd-shortcode-text p {
    line-height: 50px;
}

.dxampFullscreenButton,
#preview .flexslider .slides img {
    width: auto !important;
}

.dx-configurator-file-contactform {
    margin-top: 40px;
}

.dx-configurator-file-contactform form {
    margin-top: 40px;
}

.dx-configurator-file-contactform .form-group {
    margin-bottom: 15px;
}

.dx-configurator-file-contactform textarea.form-control {
    line-height: 175%;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 7em;
}

.flexslider .slides {
    height: 100%;
}

.flexslider .slides > li {
    overflow: hidden;
    height: 100%;
}

.flexslider .slides .dx-slides-dropzone img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.orderRemarks {
    margin: 30px 0;
    padding-bottom: 30px;
}

.remarksBody {
    padding: 15px;
    background: #f0f0f0;
    color: #888;
}

.basketcontents_table td.quantity {
    min-width: 160px;
}

.custom-usage {
    margin-top: 25px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}

.taric-wrap strong {
    color: #555;
}

#lz_overlay_wm {
    display: none !important;
}

#lz_overlay_chat {
    margin: 0 !important;
    bottom: 100px !important;
    top: auto !important;
    right: 0 !important;
    left: 0 !important;
}

#lz_overlay_chat #lz_chat_overlay_pointer_h {
    display: none !important;
}

/* TERMINE */

.featured-events {
    background: rgb(60, 60, 59);
    color: #fff;
    margin: -70px 0 60px;
    padding: 40px 0;
    background-image: url(/out/pictures/ddmedia/bildmarke.png);
    background-size: auto;
    background-position: left top;
    background-repeat: no-repeat;
}

.featured-events h2 {
    margin-bottom: 30px;
}

.featured-events img {
    margin-bottom: 20px;
}

.featured-events h3.title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.featured-events h4.title {
    font-size: 16px;
    line-height: 1;
}

.featured-events p {
    color: #fff;
    padding: 0;
}

.all-events td,
.all-events td.title {
    font-size: 16px;
}

.all-events td:last-child {
    text-align: right;
}

.all-events td a {
    color: #96be0d;
}

.all-events tr:first-child td {
    border-top: none;
}

.all-events {
    margin-bottom: 60px;
}

.dx-termin-detail {
    margin-top: 60px;
}

.dx-termin-detail .event-date {
    color: #c7c7c6;
    font-size: 26px;
    margin-top: 30px;
    padding: 0;
}

.dx-termin-detail .title {
    margin-top: 5px;
    margin-bottom: 10px;
}

.collage-row {
    margin: 0;
}

.collage-col {
    padding: 0;
}

.collage-buttons .square {
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
}

.collage-buttons .square img {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.collage-buttons .square span {
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

.collage-buttons .map-icon img {
    width: auto;
    max-height: 70%;
}

.collage-buttons .contact-icon {
    background-color: #96be0d;
}

.collage-buttons .contact-text {
    background-color: #b6d162;
    color: #fff;
}

.collage-buttons .map-icon {
    background: #f5f5f5
}

.collage-buttons .map-text {
    color: #96be0d;
    text-align: right;
}

.collage-buttons .website-icon {
    background-color: #b6b6b6;
}

.collage-buttons .website-text {
    background-color: #c8c8c8;
    color: #fff;
}

.event-collage {
    position: relative;
}

.event-collage .square-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.collage-buttons .dd-image-box {
    position: static;
    overflow: visible;
    margin: 0;
}

.event-main-image {
    padding-bottom: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.event-description {
    padding-top: 30px;
    padding-left: 30px;
    font-size: 1.15em;
    line-height: 1.5;
}

.event-description h2:first-child {
    margin-top: 0;
}

.event-description h2 {
    color: #96be0d;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 600;
}

.event-description h3 {
    color: #96be0d;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 600;
    margin-top: 10px;
}

.event-description table,
.event-description table td {
    border: none;
}

.event-description a {
    color: #96be0d;
}

.event-focus-info {
    width: 50%;
    background: rgba(150, 190, 13, 0.75);
    color: #fff;
    font-size: 16px;
    padding: 20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.event-focus-info a {
    color: #fff;
    text-decoration: underline;
}

.event-focus-info > div {
    float: right;
}

.event-contactform select.form-control {
    appearance: menulist;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    -ms-appearance: menulist;
}

.event-contactform-wrap {
    background-color: #3c3c3c;
    background-image: url(/out/pictures/ddmedia/bildmarke.png);
    background-size: auto;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 30px 0 50px;
}

.event-contactform-wrap,
.event-contactform-wrap label {
    color: #fff;
}

.event-contactform-wrap .g-recaptcha > div {
    float: right;
    margin-bottom: 20px;
}

.event-contactform-wrap .verify .control-label {
    display: none;
}

.dx-termin-detail.fullwidth {
    margin-top: 40px;
}

.event-contactform .checkbox input {
    margin-left: 0;
}

.event-contactform a {
    color: #96be0d;
}

.event-contactform .checkbox span {
    width: 100%;
    padding-left: 20px;
    line-height: 18px;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
}

.event-icon {
    background-position: center center;
    background-size: cover;
}

.old-events .nav-pills {
    margin-top: 15px;
}

.old-events .tab-content {
    border: 1px solid #96be0d;
    padding: 10px;
}

.old-events table {
    margin: 0;
}

.old-events .nav-pills > li > a,
.old-events .nav-pills > li > a,
.old-events .nav-pills > li > a {
    background-color: #eee;
    border-radius: 0;
    font-size: 1.5em;
}

.old-events .nav-pills > li.active > a,
.old-events .nav-pills > li.active > a:hover,
.old-events .nav-pills > li.active > a:focus {
    background-color: #96be0d;
}

.old-events td.title a {
    text-decoration: underline;
}

/* Cookienote ************************/

#cookieNote {
    position: fixed;
    z-index: 9999999999;
    bottom: 0;
    width: 100%;
}

#cookieNote .alert {
    margin: 0;
    border-radius: 0;
    padding: 30px;
    border: none;
    background: #96be0d;
    color: #fff;
    width: 100%;
}

#cookieNote .alert a {
    color: #fff;
    text-decoration: underline;
}

#cookieNote .alert .close {
    opacity: .5;
}

#cookieNote p {
    margin-bottom: 15px;
    float: left;
    width: 90%;
}

.listDetails .btn {
    height: 36px;
    line-height: 22px;
}

.listDetails .btn strong {
    font-size: 1.1em;
    font-weight: 600;
}

.listDetails .btn .fa {
    font-size: 0.8em;
    font-weight: 100;
    top: -2px;
    position: relative;
}

.listDetails .title-inner {
    font-size: 24px;
}

/* / TERMINE */
.title-grey {
    color: #757575;
}

.product-subtitle {
    font-size: 22px;
}

/* Product category and detail page */
.maxlength-restrict-wrap {
    position: relative;
}

.maxlength-restrict-wrap .count {
    position: absolute;
    bottom: 5px;
    right: 5px;
    line-height: 1;
}

.div-textarea.form-control {
    height: auto;
    min-height: 50px;
}

.pretty-radios input {
    display: none;
}

.pretty-radios label {
    display: block;
}

.pretty-radios label span {
    display: block;
    padding: 12px;
    background: #eee;
    margin-bottom: 2px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.pretty-radios label span:before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #4a4a49;
    border-radius: 1rem;
    vertical-align: top;
    margin-right: 10px;
}

.pretty-radios label span:hover {
    background: #ddd;
}

.pretty-radios label input:checked + span {
    background: #96be0d;
    color: #fff;
}

.pretty-radios label input:checked + span:before {
    border: 2px solid #96be0d;
    box-shadow: 0 0 0 1px #fff;
    background: #fff;
}

[name="print-font"][value="sans"] + span {
    font-family: 'Open Sans', sans-serif;
}

[name="print-font"][value="serif"] + span {
    font-family: 'Georgia', serif;
    font-size: 1.25em;
}

[name="print-font"][value="script"] + span {
    font-family: 'Brush Script Std', 'Brush Script MT', cursive;
    font-size: 1.6em;
}

.pagination.lineBox {
    border-bottom: none;
}

/* Top Slider/Accordion */
.top-block {
    margin: 0;
}

.top-block > div {
    padding: 0;
}

.top-block .dropbox-triangle-wrap {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 475px;
}

.top-block .accordion-icon {
    padding: 40px 0 80px;
}

.top-block .accordion p {
    padding: 10px 20px;
}

.top-block .accordion p.bottom-info,
.top-block .mobile-accordion p.bottom-info {
    background: #257175;
    margin: 0;
}

.top-block .accordion p.bottom-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.top-block .mobile-accordion p.bottom-info {
    padding: 10px 15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 15px;
}

.top-block .dropzone-wrap {
    height: 451px;
}

.top-block h2 {
    font-size: 38px;
    line-height: 1.25;
    color: #fff;
    width: 72%;
}

.top-block #dropzone {
    background: url(../img/triangle.svg) no-repeat center center;
    background-size: 100%;
    background-size: contain;
    padding: 0;
}

.top-block #dropzone img {
    width: 90px;
    margin-bottom: 20px;
}

.top-block #dropzone p {
    margin: 0;
    width: auto !important;
    font-size: 18px;
    line-height: 1.42;
}

.top-block #dropzone p span:first-child {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    display: block;
}

.top-block .dropzone {
    border: none;
}

.top-block #dropzoneBox1 {
    padding: 5px 20px 25px;
}

.top-block .dropzone .dz-message {
    position: static;
    padding: 60px 50px 20px;
    margin: 0;
}

.top-block .radio-unit,
.top-block .radio-unit label {
    color: #fff;
    font-size: 14px;
}

.top-block #dropzoneBox1 {
    display: block !important;
}

.top-block #dropzoneBox2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.top-block form.dropzone {
    position: relative;
}

.top-block #dropzoneStatusText {
    position: absolute;
    bottom: 40px;
    width: 100%;
}

#promo-carousel {
    height: 100%;
}

.flexslider .flex-direction-nav .flex-prev,
.flexslider .flex-direction-nav .flex-next {
    background: transparent;
    font-size: 30px;
}

.flexslider .flex-direction-nav .flex-prev:hover::before,
.flexslider .flex-direction-nav .flex-next:hover::before {
    color: #96be0d;
}

.flexslider .flex-direction-nav .flex-prev::before,
.flexslider .flex-direction-nav .flex-next::before {
    font-size: 50px;
}

.flex-direction-nav a {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-top: -30px;
}

/*#dropzoneBox2.upload-page {*/
/*height: 300px;*/
/*background-repeat: no-repeat;*/
/*background-size: contain;*/
/*background-position: center center;*/
/*margin: 20px;*/
/*position: relative;*/
/*}*/

#dropzoneBox2.upload-page #dropzoneStatusText {
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.video-js,
.dxshortcode-videojs video {
    max-width: 100%;
}

/* dealer-info page 06-10-2017 */
.inner-wrap.dealer-info {
    padding-top: 0;
}

.banner-dealer {
    position: relative;
    margin-bottom: 30px;
}

.banner-dealer .banner-dealer-logo {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner-dealer img {
    max-width: 100%;
    display: inline-block;
}

.banner-dealer2-logo {
    width: 100%;
}

.dropzone-ctn-dealer {
    position: relative;
    margin-bottom: 30px;
}

.dropzone-ctn-dealer .dropzone-ctn-dealer-logo {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.dropzone-ctn-dealer img {
    max-width: 100%;
    display: inline-block;
}

.dropzone-ctn-dealer2-logo {
    width: 100%;
}

.links-block {
    margin-bottom: 30px;
}

.links-block li {
    width: 32.7%;
    float: left;
    background: #b3b2b2;
    margin-right: 10px;
}

.links-block li:last-child {
    margin-right: 0;
}

.links-block li a {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    display: block;
    padding: 7px 0;
}

.links-block li a:hover {
    background: #96be0d;
}

.dealer-info .data-block {
    padding-bottom: 10px
}

.dealer-info h3.title-h3 {
    font-size: 35px;
    font-weight: 300;
    padding-bottom: 32px;
    border-top: 1px solid black;
    text-transform: none;
    padding-top: 60px;
}

.dealer-information-block .left-info-block {
    width: 75%;
}

.dealer-information-block .right-contact {
    width: 20%;
}

.dealer-information-block h3 {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
}

.dealer-information-block .left-info-block p {
    font-size: 14px;
    color: #333333;
    line-height: 23px;
    padding-bottom: 27px;
    margin-bottom: 0;
}

.dealer-information-block {
    margin-bottom: 13px;
}

.dealer-information-block .right-contact-block {
    padding: 25px 30px 30px 30px;
    border: 1px solid #d2d2d1;
}

.dealer-information-block .right-contact-block h4 {
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 17px;
}

.dealer-information-block .right-contact-block p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 22px;
}

.dealer-information-block .right-contact-block p span {
    display: block;
    padding-bottom: 8px;
}

.dealer-information-block .right-contact-block .phone-content {
    margin-bottom: 20px;
}

.dealer-information-block .right-contact-block .phone-content span {
    font-size: 14px;
    color: #333333;
    display: block;
    padding-bottom: 10px;
}

.dealer-information-block .right-contact-block .info-link {
    font-size: 14px;
    color: #96be0d;
    display: inline-block;
    margin-bottom: 22px;
}

.dealer-information-block .right-contact-block .info-link:hover {
    color: #333333;
}

.dealer-information-block .right-contact-block .sent-block h5 {
    font-size: 20px;
    color: #96be0d;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.dealer-information-block .right-contact-block .sent-block i img {
    margin-right: 25px;
}

.dealer-information-block .text-link {
    color: #96be0d;
    display: inline-block;
}

.dealer-information-block .text-link:hover {
    color: #333333;
}

.contact-dealer-block {
    margin-bottom: 60px;
}

.contact-dealer-block h3 {
    border-bottom: 1px solid #96be0d;
    margin-bottom: 0;
    padding-bottom: 23px !important;
}

.contact-dealer-block h4 {
    font-size: 20px;
    color: #96be0d;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.contact-dealer-block .dealer-form .smaller-block {
    max-width: 300px;
}

.contact-dealer-block .form-group {
    margin-bottom: 10px;
}

.contact-dealer-block .form-group label {
    padding-top: 0;
}

.contact-dealer-block .form-group .custom-dropdown {
    float: left;
    margin-left: 0;
    width: 100%;
}

.contact-dealer-block .form-group .half-dropdown {
    width: 45%;
    float: left;
    margin-right: 30px;
}

.contact-dealer-block .form-group .half-dropdown:last-child {
    margin-right: 0;
}

.contact-dealer-block .dealer-form .maximum-block {
    max-width: 540px;
}

.contact-dealer-block .dealer-form .maximum-block .half-block {
    width: 47.2%;
    float: left;
    margin-right: 30px;
}

.contact-dealer-block .dealer-form .maximum-block .half-block:last-child {
    margin-right: 0;
}

.contact-dealer-block .dealer-form .maximum-block .half-block.house-number {
    width: 20%;
}

.contact-dealer-block .dealer-form .larger-block {
    max-width: 660px;
}

.contact-dealer-block .dealer-form .larger-block .plz-block {
    width: 20%;
    float: left;
    margin-right: 30px;
}

.contact-dealer-block .dealer-form .larger-block .half-block {
    width: 35.4%;
    float: left;
    margin-right: 30px;
}

.contact-dealer-block .dealer-form .larger-block .half-block:last-child {
    margin-right: 0;
}

.contact-dealer-block .dealer-form .contact-dealer {
    max-width: 820px;
}

.contact-dealer-block .dealer-form .contact-dealer .half-block {
    width: 30.8%;
    float: left;
    margin-right: 30px;
}

.contact-dealer-block .dealer-form .contact-dealer .half-block:last-child {
    margin-right: 0;
}

.contact-dealer-block .dealer-form .textarea-block {
    border-bottom: 1px solid #000000;
    padding: 0 0 60px 0;
    margin-top: 22px;
}

.contact-dealer-block .dealer-form .textarea-block .form-group {
    max-width: 540px;
}

.contact-dealer-block .dealer-form .textarea-block textarea {
    width: 100%;
    resize: none;
    height: 134px;
}

.contact-dealer-block .dealer-form .captcha-block {
    padding: 25px 0;
}

.contact-dealer-block .dealer-form .captcha-block span {
    margin-bottom: 45px;
    display: block;
}

.contact-dealer-block .dealer-form .captcha-block .captcha-code h5 {
    margin-bottom: 5px;
}

.contact-dealer-block .checkbox-block label a {
    text-decoration: underline;
}

@media (max-width: 1650px) {
    .top-block .dropbox-triangle-wrap {
        width: 400px;
    }

    .top-block #dropzone img {
        width: 40px;
        margin-bottom: 10px;
    }

    .top-block #dropzone p {
        font-size: 14px;
    }
}

@media (max-width: 1440px) {
    .top-block .dropbox-triangle-wrap {
        width: auto;
        left: 0;
        right: 0;
    }

    #promo-carousel li .banner-headline {
        font-size: 30px;
        width: 100%;
        max-width: none;
    }

    #promo-carousel li .dropzone-ctn-headline {
        font-size: 30px;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 991px) {
    .is-checkout .inner-header .upper-header {
        width: 200px;
    }
}

@media (max-width: 400px) {
}

@media (min-width: 569px) {
    #lz_overlay_chat {
        margin: 0 !important;
        bottom: auto !important;
        top: 320px !important;
        right: 80px !important;
        left: auto !important;
    }

    #lz_overlay_chat #lz_chat_overlay_pointer_h {
        display: block !important;
        position: absolute;
        top: 65px !important;
        right: -11px !important;
    }
}

@media (min-width: 768px) {
    .event-main-image-wrap {
        position: static;
    }

    .event-main-image {
        position: absolute;
        top: 0;
        bottom: 0;
        width: inherit;
        padding: 0;
    }
}

@media (max-width: 991px) {
    #lz_overlay_chat {
        margin: 0 !important;
        bottom: 15px !important;
        top: 15px !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        height: auto !important;
    }
}

/* Hide google conversion frame (remarketing tag) - this would add empty line below website */
iframe[name='google_conversion_frame'] {
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    margin-top: -13px;
    float: left;
}

canvas {
    max-width: 100%;
}

/* Dashboard */
.dxUnpaidContainer {
    border: 1px solid #b4b9b9;
    padding: 20px;
    margin-bottom: 20px;
}

.dxUnpaidContainer a {
    color: #96be0d;
}

.dxUnpaidContainer div {
    color: #fff;
    padding: 10px;
    background-color: #ed1b24;
    margin-bottom: 20px;
}

.basketArticle.is-checkout #wrapper {
    margin-top: 205px;
}

/*30-10-2017*/
.dxAdditionalAddressesContainer {
    display: none;
}

/*31-10-2017*/
.dxadressheader.dxAdditionalAdressheader {
    cursor: pointer;
    position: relative;
}

.dxadressheader.dxAdditionalAdressheader .fa {
    margin-left: 10px;
}

.promo-carousel-testimonials.flexslider {
    background: transparent !important;
}

/* product-list */
.breadcrumb {
    background: none;
    margin: 40px 0 40px;
    padding: 0;
}

.is-checkout .breadcrumb {
    margin: 0px 0 20px;
}

.breadcrumb li a, .breadcrumb li {
    color: #282828;
    font-weight: 300;
    font-size: 15px;
}

.breadcrumb li a:hover {
    color: #0098a1;
}

.breadcrumb > .active {
    color: #0098a1;
    font-weight: 600;
    font-size: 15px;
}

.breadcrumb > .active a {
    color: #0098a1;
    font-weight: 600;
    font-size: 15px;
}

.breadcrumb > li + li:before {
    color: #616161;
    color: #282828;
    font-weight: 300;
    font-size: 15px;
}

.page-heading {
    padding: 40px 0;
}

.dd-shortcode-text .page-heading {
    padding: 20px 0 40px;
}

.page-heading h1 {
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.page-heading h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.2px;
}

.product-list {
    margin: 0 -15px;
    display: flex;
    flex-flow: wrap;
}

.img-block {
    position: relative;
}

.img-block img {
    width: 100%;
}

.product-list .product-details {
    padding: 30px;
}

.product-list .product-details h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #282828;
    padding: 0;
    margin-bottom: 14px;
}

.product-list .product-details p {
    margin-bottom: 37px;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    color: #282828;
    letter-spacing: 0.1px;
}

.product-list label {
    font-size: 22px;
    margin-bottom: 0;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #FFF;
    background: #96be0d;
    padding: 14px 14px;
}

.product-list li {
    width: 33.33%;
    float: left;
    padding: 0 15px;
    margin-bottom: 50px;
}

.product-list .product-box:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

/* Modul-register */
.register-section {
    padding: 50px 0 133px;
}

.register-col {
    text-align: center;
    max-width: 1035px;
    margin: 0 auto;
}

.register-col li {
    float: left;
    width: 50%;
    padding: 0 65px;
}

.icon-block {
    margin-bottom: 23px;
}

.register-col .icon-block img {
    width: 100%;
    max-width: 150px;
}

.register-col h3 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    color: #282828;
}

.register-col p {
    color: #282828;
    font-size: 15px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.2px;
}

.register-col a {
    max-width: 346px;
    width: 100%;
}

.pagination {
    float: left;
    margin: 0;
}

.pagination > li > a, .pagination > li > span {
    background: #ececec;
    padding: 4px 10px;
    border: 1px solid #FFF;
    color: #0098a1;
    font-size: 15px;
    font-weight: 400;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background: #0098a1;
    border-color: #FFF;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    color: #FFF;
    background: #0098a1;
    border-color: #FFF;
}

.pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span {
    border-radius: 0;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    background: #ececec;
    padding: 4px 10px;
    border: 1px solid #FFF;
    color: #0098a1;
    font-size: 15px;
    font-weight: 400;
}

.list-view {
    float: right;
    margin: 7px 0;
    position: relative;
}

.list-view li {
    float: left;
    margin-left: 2px;
    padding-bottom: 10px;
}

.list-view > li > a {
    font-size: 15px;
    color: #0098a1;
    display: block;
    font-weight: 400;
    background: #ececec;
    padding: 4px 14px;
}

.list-view > li > a:hover {
    background: #0098a1;
    color: #FFF;
}

.list-view .sub-category {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    width: auto;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 10px 15px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.list-view .sub-category li {
    padding: 6px 0;
    width: 100%;
}

.list-view .sub-category li a {
    color: #282828;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    display: block;
}

.list-view .sub-category li a:hover {
    color: #0098a1;
}

.list-view li.active > a {
    background: #0098a1;
    color: #FFF;
}

.list-view > li:hover > a {
    background: #0098a1;
    color: #FFF;
}

.list-view > li:hover > ul {
    opacity: 1;
    visibility: visible;
}

/* News-listing */
.news-section {
    padding: 122px 0 150px;
}

.news-list .news-text h3 {
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #282828;
    padding: 0;
    margin-bottom: 10px;
}

.news-list .news-text h3 em {
    display: block;
}

.news-list .news-text p {
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 15px;
    line-height: 22px;
    color: #282828;
    letter-spacing: 0.1px;
}

.news-list label {
    font-size: 22px;
    margin-bottom: 0;
    text-align: center;
    max-width: 176px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #FFF;
    background: #96be0d;
    padding: 14px 14px;
}

.news-list {
    margin: 0 -15px 45px;
}

.news-list li {
    width: 33.33%;
    float: left;
    padding: 0 15px;
    margin-bottom: 50px;
}

.news-list .news-text a.news-text-btn {
    color: #0098a1;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
    display: inline-block;
}

.news-list .news-text a.news-text-btn:hover {
    color: #96be0d;
}

.news-list .news-box:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.date {
    margin-bottom: 15px;
}

.news-list .news-text {
    padding: 30px;
}

/* News-details */
.news-detail {
    padding: 60px 0;
}

.news-detail .page-heading {
    padding: 0 0 27px;
    margin-top: -8px;
}

.news-detail .page-heading p {
    margin-bottom: 0;
}

.news-detail .news-detail-text {
    padding-right: 13.1%;
}

.news-detail .news-detail-text p {
    margin-bottom: 10px;
    line-height: 22px;
    letter-spacing: 0.2px;
}

.news-detail .news-detail-text p:last-child {
    margin-top: 40px;
}

.more-news {
    padding: 37px 0 105px;
}

.more-news .news-list {
    margin-bottom: 0;
}

.more-news h2 {
    font-size: 38px;
    line-height: 43px;
    font-weight: 300;
    color: #282828;
    padding: 0 0 30px 0;
}

/* Modul-dates-list */
.news-section.module-date-section {
    padding: 0 0;
}

.module-date-section .news-list {
    margin-bottom: 0
}

.past-appointments {
    padding: 0 0 160px;
}

.past-appointments h2 {
    font-size: 38px;
    line-height: 43px;
    font-weight: 300;
    color: #282828;
    padding: 0 0 30px 0;
}

.tabs {
    margin: 0 0 -2px 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 100%;
}

.tabs li {
    float: left;
    margin: 0;
    max-width: 255px;
    height: 95px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    padding: 5px 20px;
    color: #666666;
    font-size: 30px;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

.tabs li:hover {
    color: #0098a1;
    border-bottom: 5px solid #0098a1;
    font-weight: 600;
}

.tabs li.active {
    color: #0098a1;
    font-weight: 600;
    border-bottom: 5px solid #0098a1;
    display: block;
}

.tab_container {
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    overflow: auto;
}

.tab_content {
    display: none;
}

.tab_drawer_heading {
    display: none;
}

.tabs-outer {
    border-bottom: 2px solid #cccccc;
    padding: 52px 0 0;
}

.appointment-table tr td {
    font-size: 30px;
    line-height: 34px;
}

.appointment-table tr td:first-child {
    color: #0098a1;
    font-weight: 600;
    letter-spacing: 0.9px;
    width: 35%;
}

.appointment-table tr td:nth-child(2) {
    color: #282828;
    font-weight: 400;
    letter-spacing: 0.3px;
    width: 35%;
}

.appointment-table tr td:last-child {
    text-align: right;
    width: 30%;
}

.appointment-table > thead > tr > th, .appointment-table > tbody > tr > th, .appointment-table > tfoot > tr > th, .appointment-table > thead > tr > td, .appointment-table > tbody > tr > td, .appointment-table > tfoot > tr > td {
    border-bottom: 2px solid #cccccc;
    border-top: none;
}

.appointment-table > thead > tr > th, .appointment-table > tbody > tr > th, .appointment-table > tfoot > tr > th, .appointment-table > thead > tr > td, .appointment-table > tbody > tr > td, .appointment-table > tfoot > tr > td {
    padding: 12px 22px;
}

.appointment-table .green-btn {
    max-width: 160px;
    width: 100%;
    text-align: center;
}

/* Dropdown*/
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown select {
    display: none
}

.custom-dropdown .dk-selected {
    background: #FFF;
    position: relative;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #e8e8e8;
    padding: 8px 35px 8px 12px;
    height: 38px;
    line-height: 21px;
    font-size: 18px;
    font-weight: 400;
    color: #282828;
}

.dk-selected:focus {
    outline: none;
}

.dk-select-options {
    position: absolute;
    margin-top: 3px;
    border-radius: 10px;
    max-height: 130px;
    z-index: 1;
    overflow: auto;
    background: #fff;
    border: 0;
    border-top: none;
    color: #fff;
    width: 100%;
    display: none;
    padding: 0;
}

.dk-select-options li {
    cursor: pointer;
    padding: 10px 10px;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
    color: #282828;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    height: 42px;
}

.dk-select-options li:hover {
    background: #0098a1;
    color: #FFF;
}

.dk-select-options li:last-child {
    border-bottom: none;
}

.dk-option.hidden-option {
    display: none;
}

.dk-select-open-down .dk-select-options {
    display: block;
}

.dk-selected:before {
    background: url(../img/dropdown-bottom-arrow.png) no-repeat center center;
    content: "";
    position: absolute;
    right: 13px;
    top: 12px;
    width: 24px;
    height: 14px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 6px !important;
}

.mCSB_scrollTools {
    right: 1px !important;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    background: #d5dbe2 !important;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #0098a1 !important;
}

.mCSB_scrollTools .mCSB_draggerContainer {
    top: 5px;
    bottom: 5px;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0;
}

/* Checkbox*/
.checkbox-outer label {
    position: relative;
    padding: 0 0 0 30px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 13px;
    color: #666666;
    font-weight: 600;
    line-height: 20px;
    text-transform: none;
}

.newsletter-sign .checkbox-outer label {
    position: relative;
    padding: 0 0 0 30px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 13px;
    color: unset;
    font-weight: unset;
    line-height: 24px;
    text-transform: none;
}

.checkbox-outer .icheckbox_square {
    width: 16px;
    height: 16px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #cccccc;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
}

.checkbox-outer .icheckbox_square.checked {
    width: 16px;
    height: 16px;
}

.checkbox-outer .icheckbox_square.checked {
    background: url(../img/icheck-icon.png) no-repeat center center #95bd0d;
    border: 1px solid #95bd0d;
}

.cart-table .cart-footer-actions .btn-continue {
    margin-left: 0
}

/* modul-dates-details */
.inner-banner {
    height: 423px;
}

.dates-detail-block {
    padding: 50px 0 100px;
}

.dates-detail-block .cms-text {
    padding-right: 12%;
}

.dates-detail-block .page-heading {
    padding: 0 0 50px;
    margin-top: -10px;
}

.cms-text p {
    padding-bottom: 10px;
    letter-spacing: 0.2px;
    line-height: 22px;
}

.appointment-block {
    background: #e8e8e8;
    padding: 35px;
}

.appointment-block ul {
    padding: 22px 0 30px;
}

.appointment-block ul li {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    padding: 9px 3px;
}

.appointment-block ul li a {
    color: #333333;
    text-decoration: underline;
}

.appointment-block ul li a:hover {
    color: #0098a1;
}

.appointment-block ul li img {
    margin-right: 20px;
}

.appointment-block .green-btn {
    width: 100%;
}

.appointment-form {
    background: #e8e8e8;
    padding: 50px 0 65px;
    margin: 45px 0 20px;
}

.appointment-form .inner-container {
    max-width: 1010px;
    margin: 0 auto;
}

h2.sub-heading {
    font-size: 38px;
    line-height: 43px;
    font-weight: 300;
    color: #282828;
    padding: 0 0 30px 0;
    letter-spacing: 0.3px;
}

h3.sub-heading {
    letter-spacing: 0.6px;
}

.appointment-form .custom-form {
    margin-top: 36px;
}

.appointment-form .green-btn {
    margin-top: 10px;
    float: right;
    max-width: 252px;
    width: 100%;
}

.custom-form label {
    padding: 0;
    margin: 0;
}

.custom-form .form-control {
    background: transparent;
    font-weight: 400;
    font-size: 22px;
    color: #666666;
    padding: 6px 0;
    border: none;
    border-bottom: 3px solid #666666;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz--webkit-box-shadow: none;
}

.custom-form textarea.form-control {
    resize: none;
    height: 177px;
}

button.green-btn {
    border: none;
}

.effect-input {
    position: relative;
    padding-top: 20px;
}

.effect-input label {
    position: absolute;
    padding: 0 !important;
    top: 22px;
    font-weight: 400;
    left: 0;
    font-size: 22px;
    color: #666666;
}

.effect-input label sup {
    font-size: 13px;
}

.effect-input.focused label {
    top: 0;
    left: 0;
    font-size: 15px;
    color: #96be0d;
    font-weight: 500;
}

.effect-input.filled label {
    top: 0;
    left: 0;
    font-size: 15px;
    color: #96be0d;
    font-weight: 500;
}

.effect-input.focused .form-control, .effect-input.filled .form-control {
    border-bottom: 3px solid #96be0d !important
}

.effect-input label,
.effect-input.focused label,
.effect-input.filled label {
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.custom-form .form-group {
    margin-bottom: 45px;
}

.custom-form .form-group.last {
    margin-bottom: 30px;
}

.appointment-form .checkbox-outer {
    position: relative;
    padding-left: 20px;
}

.checkbox-outer .icheckbox_square.disabled {
    border-color: #ccc !important;
}

.appointment-form .checkbox-outer label {
    padding-left: 6px;
    max-width: 500px;
    margin-top: -2px;
}

.appointment-form .checkbox-outer label a {
    color: #666666;
    font-weight: 700;
    text-decoration: underline;
}

.appointment-form .checkbox-outer label a:hover {
    color: #0098a1;
}

/* Download */
.download-section {
    padding: 50px 0;
}

.download-section h3 {
    padding-bottom: 20px;
}

.download-section .cms-text {
    padding-right: 33%;
    margin-top: 5px;
}

.download-btn-list {
    padding: 27px 0 0;
}

.download-btn, .download-btn:focus {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFF;
    letter-spacing: 0.4px;
    background: url(../img/download-icon.png) no-repeat 22px center #96be0d;
    border: 1px solid #96be0d;
    display: table;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 0 20px 0 60px;
    text-transform: uppercase;
}

.download-datasheet-custom {
    background: url(../img/download-icon.png) no-repeat 14px center #96be0d;
    padding-left: 60px;
    border: 1px solid #96be0d;
    margin-left: 20px;
    min-width: 315px
}

/*border added to resolve*/
.download-datasheet-custom:hover {
    background: url(../img/download-icon.png) no-repeat 14px center #0098a1;
    color: #fff !important;
    border: 1px solid #0098a1;
    min-width: 315px
}

.download-btn em {
    padding: 15px 0;
    display: table-cell;
    vertical-align: middle;
}

.read-more-custom {
    border: 1px solid #96be0d;
}

/*Border added*/
.read-more-custom:hover {
    border: 1px solid #0098a1;
}

.download-btn:hover {
    background: url(../img/download-icon-h.png) no-repeat no-repeat 22px center #FFF;
    border: 1px solid #96be0d;
    color: #96be0d;
}

/* 3d Slider */

.modul-slider h2.sub-heading {
    color: #000;
    padding-bottom: 45px;
}

.modul-slider .slider-content {
    margin-top: 40px;
    display: none;
}

.modul-slider .slider-content {
    text-align: center;
}

.modul-slider .slider-content h3.sub-heading {
    color: #000;
    font-size: 30px;
    line-height: 34px;
}

.modul-slider .slider-content p {
    color: #000;
    letter-spacing: 0.6px;
}

.modul-slider .slider-content .dxAutolink {
    color: #000;
}

/*manage autolinks*/
.modul-slider .slider-content .dxAutolink:hover {
    color: #96be0d;
}

/*manage autolinks*/
.cascade-slider_item.now .slider-content {
    display: block;
}

.cascade-slider_container {
    position: relative;
    width: 100%;
    height: 530px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.cascade-slider_item {
    position: absolute;
    left: 50%;
    transform: translateY(0%) translateX(-50%) scale(0.3);
    transition: all 1s ease;
    opacity: 0;
    z-index: -1;
}

.cascade-slider_item img {
    width: 100%;
}

.cascade-slider_item.next {
    left: 79%;
    transform: translateY(-20%) translateX(-50%) scale(0.6);
    opacity: 1;
    z-index: 1;
    width: 70%;
    top: 10%;
    opacity: 0.5;
}

.cascade-slider_item.prev {
    left: 21%;
    transform: translateY(-20%) translateX(-50%) scale(0.6);
    opacity: 1;
    z-index: 1;
    width: 70%;
    top: 10%;
    opacity: 0.5;
}

.cascade-slider_item.now {
    top: 0;
    left: 50%;
    transform: translateY(0%) translateX(-50%) scale(1);
    opacity: 1;
    z-index: 2;
    width: 66%;
}

.cascade-slider_arrow {
    display: inline-block;
    position: absolute;
    bottom: 5px;
    cursor: pointer;
    z-index: 1;
}

.cascade-slider_arrow-left {
    left: 10px;
}

.cascade-slider_arrow-left:hover {
    left: 0px;
}

.cascade-slider_arrow-right {
    right: 10px;
}

.cascade-slider_arrow-right:hover {
    right: 0px;
}

.cascade-slider_nav {
    position: absolute;
    bottom: -8px;
    width: 100%;
    text-align: center;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 35px;
}

.cascade-slider_nav li {
    display: inline-block;
    padding: 0 10px;
    margin-bottom: 10px;
}

.cascade-slider_nav li a {
    color: #000;
    display: block;
    cursor: pointer;
    font-weight: 300;
    font-size: 20px;
    opacity: 0.5
}

.cascade-slider_nav li.cur a, .cascade-slider_nav li a:hover {
    font-weight: 600;
    opacity: 1
}

/* questions-basket */
.questions-basket h2.main-title {
    color: #0098a1;
    font-weight: 600;
    letter-spacing: 0.7px;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 45px;
}

.questions .questions-basket ul a i img.hover-img {
    opacity: 1;
}

.questions .questions-basket ul a i img {
    opacity: 0;
}

.questions .questions-basket ul a:hover i img {
    opacity: 1;
}

.questions .questions-basket ul a:hover i img.hover-img {
    opacity: 0;
}

.questions .questions-basket p {
    letter-spacing: 1px;
}

.questions .questions-basket ul {
    margin: 80px 70px 38px 67px
}

.questions .questions-basket ul a:hover {
    color: #96be0d;
}

/* Megamenu - category page */
.dxCategoryFooterText {
    margin-top: 0px;
    margin-bottom: 117px;
}

/* checkout-address-selection. */
.address-selection-block {
    padding-top: 50px;
}

.address-selection-block .table-col {
    border: 2px solid #ececec;
}

.address-selection-block .custom-table .table td {
    border: none;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    padding: 2px 0 3px;
}

.address-selection-block .table-col h3.sub-heading {
    margin-bottom: 30px;
    padding-bottom: 0;
}

.address-selection-block .inner-container {
    max-width: 1150px;
    margin: 0 auto;
}

.address-selection-block .table-col {
    padding: 22px 30px;
}

.address-selection-block .table-col .table {
    margin-bottom: 30px;
}

.address-selection-block .table-text a {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    margin-top: 33px;
    margin-bottom: 5px;
    letter-spacing: 0.1px;
    display: block;
}

.address-selection-block .table-text a:hover {
    color: #96bf0d;
}

.address-selection-block .col {
    padding: 0 15px;
    float: left;
    margin-bottom: 58px;
}

.address-selection-block .col-1 {
    width: 55%;
}

.address-selection-block .col-2 {
    width: 45%;
}

.address-selection-block .col-3 {
    width: 50%;
}

.address-selection-block .col-4 {
    width: 50%;
}

.address-selection-block h3.sub-heading.toogle-heading {
    padding: 0 30px 10px;
    cursor: pointer;
    margin-bottom: 30px;
    border-bottom: 2px solid #ececec;
}

.address-selection-block h3.sub-heading.toogle-heading span {
    position: relative;
    padding-right: 30px;
}

.address-selection-block h3.sub-heading.toogle-heading em {
    transform: rotate(-90deg);
    position: absolute;
    top: 3px;
    right: 0;
}

.address-selection-block h3.sub-heading.toogle-heading.active em {
    transform: rotate(-270deg);
}

.address-selection-block .toggle-row {
    display: none;
}

.address-selection-block .col-1 .table td:first-child {
    width: 52%
}

.address-selection-block .col-1 .table td:last-child {
    width: 48%;
}

.address-selection-block .col-2 .table td:first-child {
    width: 67%
}

.address-selection-block .col-2 .table td:last-child {
    width: 33%;
}

.address-selection-block .col-3 .table td:first-child {
    width: 50%
}

.address-selection-block .col-3 .table td:last-child {
    width: 50%;
}

.address-selection-block .col-2 .table-col {
    margin-bottom: 10px;
}

.address-selection-block .col-3 .custom-table {
    margin-bottom: 20px;
}

.primary-btn {
    background: #96bf0d;
    border: 0;
    color: #FFF;
    font-weight: 700;
    font-size: 22px;
    width: 100%;
    text-align: center;
    display: block;
    height: 46px;
    line-height: 46px;
    padding: 0 6px;
}

.primary-btn:hover, .primary-btn:focus {
    background: #0098a1;
    color: #FFF;
}

.secondary-btn {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    border: 2px solid #ececec;
    height: 73px;
    line-height: 65px;
    display: block;
    padding: 0 6px;
    text-align: center;
    max-width: 210px;
    width: 100%;
}

.secondary-btn:hover, .secondary-btn:focus {
    background: #0098a1;
    color: #FFF;
    border-color: #0098a1;
}

.btn-sm {
    font-size: 15px;
    background: #ececec;
    color: #000;
    letter-spacing: 0.2px;
    margin-bottom: 5px;
    box-shadow: none;
    -ms-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    font-weight: 400;
    text-shadow: none;
    padding: 2px 10px;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    border: none;
}

.btn-sm:hover {
    background: #0098a1;
    color: #FFF;
}

.btn-success {
    background: #96bf0d;
    color: #FFF;
}

.btn-danger {
    background: #d9534f;
    color: #FFF;
}

.btn-danger:hover, .btn-danger:focus {
    background: #0098a1;
    color: #FFF !important;
    border-color: #0098a1;
}

/* checkout-footer-selection. */
#footer {
    padding: 30px 0;
}

#footer .footer-links {
    text-align: center;
}

#footer .footer-links li {
    display: inline-block;
    padding-right: 6px;
    padding-left: 4px;
    border-right: 2px solid #000;
}

/*changed*/
#footer .footer-links li:last-child {
    border-right: none;
}

#footer .footer-links li a {
    font-weight: 700;
    color: #000;
    font-size: 15px;
    line-height: 15px;
    display: block;
}

#footer .footer-links li a:hover {
    color: #96bf0d;
}

#footer .footer-bottom .copyright {
    font-weight: 600;
    color: #000;
    font-size: 15px;
    padding-top: 33px;
}

/* checkout-header-selection. */
#header {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 5;
    background: #FFF !important;
}

#header .header-top {
    background: transparent;
    padding: 16px 0
}

#header .header-top.inner-header .header-title {
    text-align: left;
    width: auto;
    max-width: 350px;
}

#header .header-top.inner-header .inner-logo {
    width: 200px;
    text-align: left;
}

#header .header-top.inner-header .inner-logo img {
    width: 100%;
}

#header .header-top.inner-header .header-title span {
    font-size: 15px;
    color: #000;
    font-weight: 700;
    padding-top: 42px;
}

#header .inner-logo a img {
    width: 179px;
    height: auto;
}

.small-header #header .header-top {
    padding: 10px 0;
}

.small-header #header .inner-logo a img {
    width: 140px;
    height: auto;
}

.small-header #header .header-top.inner-header .header-title span {
    padding-top: 30px;
}

/* Item details */
.details-col-left .picture {
    border: 1px solid #ececec;
    margin-bottom: 20px;
}

.inv-object-guide p {
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    font-weight: 400;
    padding-bottom: 20px;
}

.inv-object-guide ul li {
    font-size: 15px;
    line-height: 18px;
    color: #000000;
    position: relative;
    font-weight: 400;
    padding-left: 27px;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    letter-spacing: 0.1px;
}

.inv-object-guide ul li span {
    width: 23px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.inv-object-guide ul li:nth-child(1) span {
    background: url(/out/phoenix/img/mouse_icons.png) no-repeat -22px 0px;
}

.inv-object-guide ul li:nth-child(2) span {
    background: url(/out/phoenix/img/mouse_icons.png) no-repeat 0px 0px;
}

.inv-object-guide ul li:nth-child(3) span {
    background: url(/out/phoenix/img/mouse_icons.png) no-repeat -44px 0px;
}

.details-col-left {
    padding-right: 115px;
}

.details-col-middle {
    margin-left: -30px;
}

.details-col-middle h4 {
    font-size: 15px;
    font-weight: 700;
    color: #22b8d0;
    margin-bottom: 10px;
}

.details-col-middle .tobasket h4 {
    color: #000;
}

.details-col-middle .product-sample-img img {
    width: 100%;
    max-width: 425px;
}

.details-col-middle .customization .form-group {
    margin-bottom: 15px;
}

.product-sample-img {
    margin-bottom: 25px;
}

.details-col-middle span {
    font-size: 15px;
    display: block;
    line-height: 20px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #000;
}

.details-col-middle .product-sample-title {
    font-size: 13px;
    color: #000;
    font-weight: 300;
    margin-bottom: 2px;
    margin-top: -4px;
}

.details-col-middle .customization .print-text, .details-col-middle .customization .print-font {
    width: 81%;
}

.details-col-middle .maxlength-restrict-wrap .div-textarea {
    min-height: 30px;
    resize: none;
}

.details-col-middle .form-control {
    line-height: 24px;
    height: 30px;
    border: 1px solid #ececec;
    font-size: 15px;
    font-weight: 300;
    padding: 0 6px;
    box-shadow: none;
    -ms-box-shadow: none;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
}

.details-col-middle .form-control:focus {
    border: 1px solid #96bf0d;
}

.details-col-middle .maxlength-restrict-wrap .count {
    font-size: 11px;
    font-weight: 400;
    right: 8px;
}

.details-col-right .information h4 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.details-col-right .information table tr td {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    padding: 1px 3px;
}

.details-col-right .information table tr td:nth-child(1) {
    text-align: left;
    padding-left: 0;
}

.details-col-right .information table tr td:nth-child(2) {
    text-align: left;
    width: 93px;
}

.details-col-right .information table tr td:nth-child(3) {
    text-align: right;
}

.details-col-right .information .pricebox {
    margin-bottom: 18px;
}

.details-col-right .information .pricebox .js-unitprice {
    margin-top: 10px;
}
.details-col-right .information .pricebox .js-unitprice .price.css-unit-price {
    font-size: 16px;
    color: black;
    font-weight: 300;
}
.details-col-right .information .pricebox .js-unitprice .price-markup {
    font-size: 12px;
}

.details-col-right .information .pricebox .price, .details-col-right .information .pricebox .currency {
    font-size: 22px;
    font-weight: 700;
    color: #0098a1;
    padding-top: 0;
}

.details-col-right .information .pricebox .price-markup {
    font-weight: 300;
    font-size: 15px;
    color: #000;
}

.details-col-right .information .pricebox .price-markup a {
    font-weight: 300;
    font-size: 15px;
    color: #000;
}

.details-col-right .information .dxmerchant-title {
    margin-top: 10px;
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #000;
}

.details-col-right .information .scaleprice-title
{
    margin-top:10px;
    margin-bottom:0px;
}

.details-col-right .information .dxmerchant-title a {
    color: #000;
}

.details-col-right .information .largeButton {
    font-size: 22px;
    font-weight: 700;
    text-transform: none;
}

.details-col-right .information .largeButton i {
    font-size: 18px;
    margin-right: 4px;
}

.details-col-right .tobasket .input-group {
    max-width: 390px;
    width: 100%;
}

.details-col-right .tobasket .tobasketFunction .form-control {
    height: 53px;
    min-width: 98px;
    font-size: 22px;
    color: #000;
    font-weight: 400;
}

/* Contact page */
.form-control .btn.dropdown-toggle {
    background: transparent !important;
    outline: none !important;
    padding: 0;
    line-height: 29px;
}

.btn-group.open .dropdown-toggle {
    box-shadow: none;
    outline: none !important;
}

.form-wrap .btn-default:hover {
    background: transparent;
}

.form-wrap h2.title-inner {
    color: #000;
    font-weight: 700;
    font-size: 22px;
    padding-bottom: 0;
    text-transform: none;
}

.form-wrap .data-block {
    /*padding-top: 60px;*/
}

.form-wrap .data-block label {
    font-size: 15px;
    font-width: 400;
    color: #000;
    margin-bottom: 10px;
}

.form-wrap .form-control {
    border: 1px solid #ececec;
    padding: 0 6px;
    height: 29px;
    line-height: 29px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
}

.form-wrap .form-control:focus {
    border: 1px solid #96bf0d;
}

.form-wrap .message-border-bottom {
    border-top: 1px solid #000;
    margin-top: 22px;
    padding: 25px 0 12px;
}

.form-wrap .message-border-bottom {
    font-weight: 400;
    font-size: 15px;
    color: #000;
}

.form-wrap .btn-secondary {
    max-width: 289px;
    text-transform: none;
    width: 100%;
    font-size: 22px;
    color: #FFF;
    font-weight: 700;
    height: 45px;
}

.form-wrap .btn-secondary:hover, .form-wrap .btn-secondary:focus {
    background: #04aaba;
    color: #FFF;
}

.newsletter-block.newsletter-sign .btn-secondary {
    margin-top: 20px;
    padding: 3px 8px;;
    font-size: 12px;
    text-transform: none;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    max-width: unset;
    width: unset;
    height: unset;
}

.newsletter-block.newsletter-sign .btn-secondary:hover {
    background: #04aaba;
    color: #FFF;
}

.newsletter-block .btn-secondary {
    max-width: 325px;
    width: 100%;
    margin-top: 20px;
    padding: 0 6px;
    font-size: 22px;
    text-transform: none;
    font-weight: 700;
    height: 45px;
}

.newsletter-block .btn-secondary:hover {
    background: #04aaba;
    color: #FFF;
}

.form-wrap .border-block {
    border-bottom: 1px solid #04aaba;
}

.form-wrap .checkbox-outer .icheckbox_square {
    top: 5px;
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    border-radius: 0;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    -moz-border-radius: 0;
}

.form-wrap .checkbox-outer .icheckbox_square.checked {
    background-size: 10px;
    border: 1px solid #96bf0d;
}

.newsletter-block .form-control {
    color: #FFF;
}

.newsletter-block.newsletter-sign .form-control {
    color: #000;
}

.newsletter-block .radio-outer {
    display: inline-block;
    padding: 0 10px;
}

.newsletter-block .form-group {
    text-align: left;
}

.newsletter-block .checkbox-outer label, .newsletter-block .checkbox-outer label a {
    color: #FFF;
}

.newsletter-block.newsletter-sign .checkbox-outer label, .newsletter-block.newsletter-sign .checkbox-outer label a {
    color: #000;
}

.newsletter-block .form-control .btn.dropdown-toggle {
    margin: 0;
    padding: 0 6px;
    line-height: 29px;
}

.newsletter-block .radio-outer .iradio_minimal {
    top: 5px;
}

.form-wrap .col-lg-3 {
    width: 15%;
}

.newsletter-block .form-group.newsletter-radio-section {
    text-align: center;
}

.newsletter-block .checkbox-outer .icheckbox_square {
    border-radius: 0;
    top: 3px;
}

.newsletter-block .checkbox-outer label {
    padding-left: 25px;
}

.form-wrap .form-group.data-block {
    padding: 0;
}

.newsletter-block {
    margin-top: 82px;
    margin-bottom: 40px;
}

.newsletter-block.newsletter-sign {
    margin-top: 50px;
    margin-bottom: 50px;
}

.form-wrap .btn-default:active:hover, .form-wrap .btn-default.active:hover, .form-wrap.open > .dropdown-toggle.btn-default:hover, .form-wrap.btn-default:active:focus,
.form-wrap .btn-default.active:focus, .form-wrap.open > .dropdown-toggle.btn-default:focus, .form-wrap .btn-default:active.focus, .form-wrap .btn-default.active.focus,
.form-wrap .open > .dropdown-toggle.btn-default.focus {
    background: transparent;
    border: transparent;
    box-shadow: none !important;
    -ms-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.form-wrap .form-group .dropdown-menu {
    border-radius: 0;
    padding: 0;
}

.ebilling-block {
    padding-top: 20px;
}

/* radiobox*/
.radio-outer label {
    position: relative;
    padding: 0 0 0 15px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 15px;
    color: #FFF;
    font-weight: 400;
    line-height: 15px;
    text-transform: none;
}

.radio-outer .iradio_minimal {
    width: 8px;
    height: 8px;
    margin: 0 auto;
    border: 1px solid #FFF;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.radio-outer .iradio_minimal.checked {
    background: #FFF;
}

/* 07-02-2018 ---- Checkout 01 */
.shipping_config {
    margin-top: 60px;
}

.shipping_config .inner-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0px 15px;
}

.shipping_config .border_box {
    border: 2px solid #ececec;
    padding: 20px 30px 25px 29px;
}

.shipping_config .border_box h3 {
    font-size: 22px;
    line-height: 26px;
    color: #000;
    padding-bottom: 33px;
}

.shipping_config .border_box ul > li > span {
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.shipping_config .checkbox-outer label {
    font-size: 15px;
    font-weight: 700;
    padding-left: 30px;
    color: #000;
}

.shipping_config .checkbox-outer .icheckbox_square {
    margin: 1px auto 0;
}

.shipping_config .border_box label {
    font-size: 15px;
    color: #000;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.shipping_config .left_shipping_config .row {
    position: relative;
}

.shipping_config .left_shipping_config .col-sm-12:last-child {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.shipping_config .left_shipping_config .border_box label {
    padding-bottom: 40px;
}

.display_table {
    display: table;
    width: 100%;
}

.display_table-cell {
    display: table-cell;
    vertical-align: bottom;
}

.display_table-cell ul > li > .btn-sm {
    margin: 0 30px 20px 3px;
}

.shipping_config h3.sub-heading.toogle-heading {
    padding: 20px 30px 11px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ececec;
}

.shipping_config .payment-thumb {
    padding: 15px 9px;
    position: absolute;
    border: 2px solid #ececec;
    display: inline-block;
    max-width: 68px;
    height: 72px;
    text-align: center;
    width: 100%;
}

.shipping_config .left_shipping_config ul {
    margin-bottom: 35px;
}

.shipping_config .right_shipping_config li {
    float: left;
    width: 100%;
    position: relative; /*min-height: 72px; */
    padding-bottom: 20px;
}

.shipping_config .right_shipping_config li:last-child {
    padding-bottom: 0;
}

.shipping_config .checkbox-outer {
    margin: 10px 0px;
    position: relative;
    padding-left: 20px;
}

.shipping_config .right_shipping_config .primary-btn {
    max-width: 100%;
}

.shipping_config .shipping_config-bottom-block {
    margin-top: 35px;
}

.shipping_config {
    margin: 0;
}

.shipping_config ul.ssl-listing {
    margin-top: 20px;
}

.shipping_config ul.ssl-listing li {
    display: block;
    float: left;
}

.shipping_config ul.ssl-listing li:nth-child(1) {
    width: 28%;
}

.shipping_config ul.ssl-listing li:nth-child(2) {
    width: 35%;
}

.shipping_config ul.ssl-listing li:nth-child(3) {
    width: 37%;
}

.shipping_config ul.ssl-listing li img {
    position: relative;
    top: -10px;
}

.shipping_config .payment-title {
    margin-left: 90px;
    min-height: 80px;
    display: inline-block;
    vertical-align: top;
}

.shipping_config .payment-title .radio label {
    padding-left: 30px;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #000;
}

.shipping_config .payment-title .radio label .iradio_minimal {
    left: -29px;
    top: 17px;
    border-radius: 0;
    height: 12px;
    width: 12px;
    border: 1px solid #000;
}

.shipping_config .payment-title .radio label .iradio_minimal.checked {
    height: 12px;
    width: 12px;
    border-radius: 0;
    background: #000;
}

.shipping_config .payment-title .radio label .iradio_minimal.checked:after {
    height: 12px;
    width: 12px;
    border-radius: 0;
    background: #000;
}

/*.shipping_config .payment-detail{display:none;}*/
.shipping_config .custom-inner-fields {
    display: none;
}

.datencheck-custom-btn {
    position: relative;
    background: url(../img/datencheck.png) no-repeat 22px center #96be0d;
    padding-left: 50px;
    background-size: 18px;
    border: 1px solid #96be0d;
}

.datencheck-custom-btn:hover {
    background: url(../img/datencheck-hover.png) no-repeat 22px center #FFf;
    background-size: 18px;
    border: 1px solid #96be0d;
    color: #96be0d !important;
}

/* 07-02-2018 - checkout 02 - new design */
.checkout_new {
    margin-top: 50px;
}

.checkout_new .inner-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.checkout_new .border_box {
    border: 2px solid #ececec;
    padding: 19px 29px 26px;
    margin-bottom: 55px;
}

.checkout_new .border_box .billing_address {
    width: 35.6%;
}

.checkout_new .border_box .shipping_address {
    width: 30.5%;
}

.checkout_new .border_box h3 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 35px;
    color: #000;
}

.checkout_new .border_box .address_block address {
    margin-bottom: 33px;
    line-height: 21px;
}

.checkout_new .border_box .address_block h5 {
    font-size: 15px;
    line-height: 19px;
    color: #000;
    font-weight: 700;
    margin-bottom: 5px;
}

.checkout_new .border_box .address_block span {
    display: block;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    margin-bottom: 7px;
    word-wrap: break-word;
}

.checkout_new .border_box .address_block a {
    margin-bottom: 20px;
    display: inline-block;
    color: #000;
    font-weight: 700;
}

.checkout_new .border_box .address_block a i {
    display: inline-block;
    margin-right: 10px;
}

.checkout_new .border_box .address_block a i img {
    max-width: 100%;
}

.checkout_new .border_box .address_block a:hover {
    color: #0098a1;
}

.checkout_new .border_box .address_block em {
    font-weight: 700;
    font-style: normal;
    display: block;
    padding: 3px 0 38px 0;
}

.checkout_new .border_box .address_block em:last-child {
    padding-bottom: 0;
}

.checkout_new .border_box .address_block em a {
    font-weight: 400;
    margin-left: 4px;
    letter-spacing: 0.4px;
    margin-bottom: 0;
}

.checkout_new .inner-container {
    max-width: 1175px;
    margin: 0 auto;
    padding: 0 15px;
}

.checkout_new .checkout-block {
    padding: 15px 0;
}

.checkout_new .dxMerchantBasket .head {
    padding: 0px 0 10px 33px;
    margin: 0 0 6px 0px;
    border-bottom: 1px solid #ccc;
}

.checkout_new .dxMerchantBasket .head li {
    display: inline-block;
    vertical-align: top;
}

.checkout_new .head .checkout-btn-custom {
    max-width: 120px;
    width: 100%;
    height: auto;
    font-size: 15px;
    padding: 1px 13px;
    font-weight: 400;
    height: auto;
    text-align: center;
}

.checkout_new .btn-inner {
    color: #fff;
    display: inline-block;
    border: 0;
    box-shadow: none;
    background: #ececec;
    padding: 3px 13px;
    color: #000;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

.checkout_new .btn-inner:hover, .btn-inner:focus {
    background: #0098a1;
    color: white;
}

.checkout_new .dxMerchantBasket h2 {
    margin-right: 15px;
    display: block;
    font-size: 22px;
    line-height: 23px;
    font-weight: 400;
    color: #000;
    padding: 0;
}

.checkout_new .dxMerchantBasket .inlinebox {
    padding: 0;
    padding-top: 10px;
    border-bottom: 2px solid #96be0d;
    margin-bottom: 20px;
}

.checkout_new .dxMerchantBasket .inlinebox:last-child {
    margin-bottom: 0;
}

.checkout_new .table-responsive {
    overflow-x: auto;
    min-height: .01%;
}

#orderConfirmAgbBottom a:hover {
    color: #0098a1;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    border: none;
}

.checkout_new .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.checkout_new table {
    border-collapse: collapse;
    border-spacing: 0;
}

.checkout_new table {
    background-color: transparent;
}

.checkout_new .basketcontents_table {
    padding-right: 0;
    margin-top: 10px;
}

.checkout_new .dxMerchantBasket .basketcontents_table table tbody tr {
    border: 0;
}

.checkout_new .basketcontents_table table > tbody > tr:nth-of-type(2n+1) {
    background: none;
}

.checkout_new .pull-left {
    float: left !important;
}

.checkout_new .basketcontents_table table tr td .basketImage a {
    display: block;
}

.checkout_new a, a:hover, a:focus {
    outline: none;
    text-decoration: none;
}

.basketItemDesc p {
    line-height: 25px;
}

.basketItemDesc h6 a, .basketItemDesc h6 span {
    font-size: 15px;
    font-weight: 700;
    color: #0098a1;
}

.basketItemDesc h6 a:hover, .basketItemDesc h6 span:hover {
    color: #000;
}

.checkout_new .total-price span {
    margin-bottom: 5px;
    color: #96be0d;
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    display: block;
}

.checkout_new strong.text-muted {
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}

.checkout_new .text-muted {
    margin-top: 10px;
    font-size: 15px;
    color: #000;
    font-weight: 300;
}

.checkout_new .text-muted {
    color: #777;
}

.checkout_new .dxPersonalOrderNumberTable {
    width: 100%;
    display: block;
    margin-left: -27px;
}

.checkout_new .dxPersonalOrderNumberTable .text-right {
    padding-top: 20px;
    padding-right: 10px;
    white-space: nowrap;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    padding-bottom: 20px;
}

.checkout_new .basketSummary {
    padding-left: 0;
}

.checkout_new .dxPersonalOrderNumberTable {
    padding-left: 0;
}

.checkout_new .basketSummary table {
    padding: 15px 15px 0px 15px;
}

.inlinebox .basketSummary {
    margin-left: -27px;
}

.inlinebox .basketSummary.orderSummary {
    margin-left: 0;
}

.dxMerchantDeliverySet {
    max-width: 100px;
}

.dxMerchantDeliverySet img {
    width: 100%;
}

.checkout_new .basketSummary table {
    border: 0px;
    overflow-y: hidden;
    padding-bottom: 15px;
    width: 100%;
    padding: 20px;
    margin-top: 10px;
}

.checkout_new .table-responsive {
    overflow-x: auto;
    min-height: .01%;
}

.checkout_new .basketSummary table {
    background: #ececec;
    margin-bottom: 0;
}

.checkout_new .basketSummary table > thead > tr > td, .basketSummary table > tbody > tr > td, .basketSummary table > tfoot > tr > td, .basketSummary table > tbody > tr > th {
    border: 0;
}

.checkout_new .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.checkout_new table {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
}

.checkout_new .basketSummary tr.inner-row-even > td {
    padding: 20px 20px 0px 27px;
}

.checkout_new .basketSummary tr.inner-row-odd > td {
    padding: 4px 20px 15px 27px;
}

/*.checkout_new .basketSummary tr.basketGrandTotal > td {*/
/*padding: 15px 15px 18px 27px;*/
/*}*/

.checkout_new .basketSummary table tr th, .basketSummary table td {
    font-size: 15px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
}

.checkout_new th {
    padding: 0;
}

.checkout_new th {
    text-align: left;
}

.checkout_new .basketSummary table tr td {
    font-weight: 500;
}

.checkout_new .summary td {
    text-align: left;
}

.checkout_new .summary td:last-child {
    text-align: right;
}

.checkout_new .basketSummary table > tbody > tr:nth-of-type(2n+1) {
    background: none;
}

.checkout_new .basketSummary table tr.inner-row-odd {
    border-bottom: 2px solid #FFF;
}

.checkout_new .basketSummary table tr td, .checkout_new .basketSummary table tr th {
    padding: 20px 20px 20px 28px;
}

.checkout_new .inlinebox-bottom .basketSummary tr.inner-row-even > td {
    padding: 15px 20px 0px 35px;
}

.checkout_new .inlinebox-bottom .basketSummary tr.inner-row-odd > td {
    padding: 5px 20px 15px 35px;
}

.checkout_new .inlinebox-bottom .basketSummary tr.basketGrandTotal > td {
    padding: 15px 15px 12px 35px;
}

.checkout_new .dxMerchantBasket .inlinebox-bottom {
    padding: 0;
}

.checkout_new .dxMerchantBasket .inlinebox-bottom .content {
    padding: 18px 0 0px 33px;
    word-spacing: 4px;
}

.checkout_new .dxMerchantBasket .inlinebox-bottom .basketSummary {
    padding-left: 9%;
}

.checkout_new .dxMerchantBasket .inlinebox-bottom .order-btn-custom {
    padding-left: 9%;
}

.checkout_new .dxMerchantBasket .inlinebox-bottom .basketSummary table {
    margin-bottom: 10px;
}

.checkout_new .checkout-btn-custom {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    height: 45px;
}

.checkout_new .btn-secondary {
    height: 55px;
    background: #96be0d;
    border: 0 none;
    color: #ffffff;
    font-weight: 600;
    padding: 3px 8px;
    font-size: 22px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.checkout_new .btn-secondary:hover, .btn-secondary:focus {
    background: #0098a1;
    color: #fff;
}

.checkout_new .inlinebox-bottom .content span {
    color: #96be0d;
}

.checkout_new .inlinebox-bottom .content p {
    margin-bottom: 30px;
}

.checkout_new .inlinebox-bottom .content p:last-child {
    margin-bottom: 0px;
}

.checkout_new .border_box .address_block .edit-block button {
    border: none;
    text-align: left;
    background: none;
    font-size: 15px;
    color: #000;
    font-weight: 700;
    padding: 0px;
}

.checkout_new .border_box .address_block .edit-block button em {
    background: url(../img/edit@2x.png) no-repeat;
    margin-right: 8px;
    width: 14px;
    height: 19px;
    background-size: 100% 100%;
    float: left;
}

.checkout_new .border_box .address_block .edit-block button:hover {
    color: #96be0d;
}

.checkout_new .border_box .address_block .edit-block button:hover em {
    background: url(../img/edit-hover@2x.png) no-repeat;
    background-size: 100% 100%;
}

.display-table {
    display: table;
    height: 100%;
    width: 100%;
}

.btn {
    border-radius: unset;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.display-tablecell {
    display: table-cell;
    vertical-align: middle;
}

.custom-btn, .custom-btn:focus {
    background: #96be0d;
    display: inline-block;
    line-height: 18px;
    letter-spacing: 0.4px;
    color: #FFF;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 14px;
}

.custom-btn:hover {
    background: #0098a1;
    color: #FFF;
}

.custom-btn em {
    font-weight: 400;
    font-size: 21px;
}

.demopart {
    margin-top:22px;
}

.demopart .demopart-txt {
    font-size: 14px;
    font-weight: bold;
    display: block;
    color: white;
    margin-bottom: 10px;
}
.demopart .demopart-btn span {
    color: #0098a1;
}

.demopart .demopart-btn i {
    color: #0098a1;
    padding-left: 6px;
}

.demopart .demopart-btn:hover span, .demopart .demopart-btn:hover i {
    color: white;
}

.file-upload-btn, .file-upload-btn:focus {
    background: url(../img/file-upload-icon.png) no-repeat 18px center #96be0d;
    letter-spacing: 1px;
    display: inline-block;
    padding-left: 70px;
    padding-right: 15px;
    line-height: 50px;
    height: 60px;
}

.file-upload-btn:hover {
    background: url(../img/file-upload-icon.png) no-repeat 18px center #0098a1;
}

.already-done .file-upload-btn, .already-done .file-upload-btn:focus, .already-done .file-upload-btn:hover {
    background-position: 10%;
}

.top-banner .info h1 {
    text-transform: none;
}

.top-dropzone-ctn .info h1 {
    text-transform: none;
}

.custom-btn.big-btn {
    height: 72px;
    line-height: 60px;
    display: inline-block;
    letter-spacing: 1px;
}

.custom-btn.border-btn {
    border: 1px solid #FFF;
    background: transparent;
}

.custom-btn.border-btn:hover {
    background: #0098a1;
    color: #FFF;
    border: 1px solid #0098a1;
}

/* 10-02-2018 */
.selective-laser-text {
    padding: 0 0 20px;
}

.selective-laser-text .img-block {
    padding-top: 5px;
}

.selective-laser-text p {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.15px;
    font-weight: 300;
    color: #282828;
}

h2.content-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
    padding-bottom: 10px;
    letter-spacing: 0.2px;
}

h3.content-title {
    font-size: 22px;
    line-height: 27px;
    font-weight: 400;
    color: #282828;
    padding-bottom: 30px;
}

.custom-listing li {
    background: url(../img/listing-icon.png) no-repeat top left;
    padding-left: 37px;
    letter-spacing: 0.2px;
    padding-bottom: 20px;
    color: #333333;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
}

.adv-induktor.custom-listing li {
    background: url(../img/listing-icon.png) no-repeat top left;
    padding-left: 37px;
    letter-spacing: 0.2px;
    padding-bottom: 10px;
    color: #000;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
}

.advantages-block .video-block {
    max-width: 740px;
}

.advantages-block iframe {
    width: 100%;
    height: 417px;
}

.technical-information {
    background: url(../img/technical-information-bg.jpg) no-repeat center center;
    padding: 30px 0;
    background-size: cover;
}

.technical-informationnew {
    background: url(/out/pictures/ddmedia/Induktor_background.jpg) no-repeat center center;
    padding: 30px 0;
    background-size: cover;
}

.technical-information .right-col {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    -ms-border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

.technical-information .custom-listing li {
    color: #FFF;
}

.technical-information h3.content-title {
    color: #FFF;
}

.technical-information .right-col, .advantages-block .right-col {
    padding-left: 3.5%;
    padding-top: 25px;
    padding-right: 6%;
}

.laser-application-block {
    padding: 50px 0 0;
}

.laser-application-block p {
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.15px;
    font-weight: 300;
    color: #282828;
    padding-right: 5%;
}

.laser-application-block .right-col {
    padding: 72px 15px 0 15px;
}

.materials-accordion-block {
    padding: 20px 0;
}

.materials-accordion-block h2.main-title {
    padding-bottom: 35px;
    letter-spacing: 0.1px;
    padding-left: 0;
}

.materials-accordion-block .materials-content p {
    margin-bottom: 35px;
}

.materials-accordion-block .materials-content a {
    vertical-align: top;
    height: 46px;
    line-height: 45px;
}

.materials-accordion-block .materials-content a.download-btn {
    display: inline-block;
    width: auto;
    height: 46px;
}

.materials-accordion-block .materials-content a.download-btn:hover {
    color: #96be0d;
}

.materials-accordion-block .materials-content a.green-btn {
    margin-right: 10px;
    line-height: 18px !important;
}

/* 07-02-2018 - landing-page */
.landing-page .main {
    margin-top: 160px;
}

.banner.imagefill {
    text-align: left;
}

.top-banner .banner:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner .info {
    z-index: 2;
    width: 72%;
}

.banner .info h1 {
    color: #FFF;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.banner .banner-bottom {
    position: absolute;
    border-top: 1px solid #FFF;
    bottom: 0;
    width: 100%;
    background: rgba(40, 40, 40, 0.5);
    z-index: 3
}

.banner .banner-header {
    position: absolute;
    border-bottom: 1px solid #FFF;
    width: 100%;
    background: rgba(40, 40, 40, 0.5);
    z-index: 3;
}

.banner-header-content {
    padding: 40px;
}

.dropzone-ctn.imagefill {
    text-align: left;
}

.top-dropzone-ctn .dropzone-ctn:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dropzone-ctn .info {
    z-index: 2;
    width: 72%;
}

.dropzone-ctn .info h1 {
    color: #FFF;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.dropzone-ctn .dropzone-ctn-bottom {
    position: absolute;
    border-top: 1px solid #FFF;
    bottom: 0;
    width: 100%;
    background: rgba(40, 40, 40, 0.5);
    z-index: 3
}

.dropzone-ctn .dropzone-ctn-header {
    position: absolute;
    border-bottom: 1px solid #FFF;
    width: 100%;
    background: rgba(40, 40, 40, 0.5);
    z-index: 3;
}

.dropzone-ctn-header-content {
    padding: 40px;
}

.induktor-cta h2, .induktor-cta h3 {
    color: #fff;
}

.banner .banner-bottom #dropzoneBox1 {
    padding: 0;
}

.banner .banner-bottom img {
    width: auto;
    left: auto !important;
    height: auto !important;
    position: relative !important;
}

.banner .banner-bottom .banner-inner-content {
    max-width: 690px;
    padding: 32px 0 35px 130px;
    margin: 0 auto;
    background: url(../img/banner-download-icon.png) no-repeat center left;
}

.banner .banner-bottom h2 {
    color: #FFF;
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 0;
    line-height: 33px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.banner .banner-bottom label {
    color: #FFF;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-size: 15px;
}

.banner .banner-bottom .checkbox-outer {
    display: inline-block;
    margin: 0 25px 0 0;
    vertical-align: top;
}

.banner .banner-bottom .radio-outer {
    display: inline-block;
    margin: 0 12px;
    vertical-align: top;
}

.banner .banner-bottom .checkbox-outer .icheckbox_square {
    width: 17px;
    height: 17px;
    border-radius: 3px;
    border: 1px solid #FFF;
    top: 1px;
}

.banner .banner-bottom .checkbox-outer .icheckbox_square.checked {
    background: url(../img/check-black.png) no-repeat center center #FFF;
}

.banner .banner-bottom .iradio_minimal {
    width: 19px;
    top: 0;
    left: 0;
    border-radius: 100%;
    position: absolute;
    height: 19px;
    background: transparent;
    border: 2px solid #FFF;
}

.banner .banner-bottom .radio-outer label {
    padding-left: 28px;
    padding-top: 0;
    position: relative;
}

.banner .banner-bottom .iradio_minimal.checked:after {
    background: #FFF;
    width: 9px;
    height: 9px;
    left: 0;
    right: 0;
    top: 3px;
    margin: 0 auto;
    position: absolute;
    content: "";
    border-radius: 100%;
}

.dropzone-ctn .dropzone-ctn-bottom #dropzoneBox1 {
    padding: 0;
}

.dropzone-ctn .dropzone-ctn-bottom img {
    width: auto;
    left: auto !important;
    height: auto !important;
    position: relative !important;
}

.dropzone-ctn .dropzone-ctn-bottom .dropzone-ctn-inner-content {
    max-width: 690px;
    padding: 32px 0 35px 130px;
    margin: 0 auto;
    background: url(../img/banner-download-icon.png) no-repeat center left;
}

.dropzone-ctn .dropzone-ctn-bottom h2 {
    color: #FFF;
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 0;
    line-height: 33px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.dropzone-ctn .dropzone-ctn-bottom label {
    color: #FFF;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-size: 15px;
}

.dropzone-ctn .dropzone-ctn-bottom .checkbox-outer {
    display: inline-block;
    margin: 0 25px 0 0;
    vertical-align: top;
}

.dropzone-ctn .dropzone-ctn-bottom .radio-outer {
    display: inline-block;
    margin: 0 12px;
    vertical-align: top;
}

.dropzone-ctn .dropzone-ctn-bottom .checkbox-outer .icheckbox_square {
    width: 17px;
    height: 17px;
    border-radius: 3px;
    border: 1px solid #FFF;
    top: 1px;
}

.dropzone-ctn .dropzone-ctn-bottom .checkbox-outer .icheckbox_square.checked {
    background: url(../img/check-black.png) no-repeat center center #FFF;
}

.dropzone-ctn .dropzone-ctn-bottom .iradio_minimal {
    width: 19px;
    top: 0;
    left: 0;
    border-radius: 100%;
    position: absolute;
    height: 19px;
    background: transparent;
    border: 2px solid #FFF;
}

.dropzone-ctn .dropzone-ctn-bottom .radio-outer label {
    padding-left: 28px;
    padding-top: 0;
    position: relative;
}

.dropzone-ctn .dropzone-ctn-bottom .iradio_minimal.checked:after {
    background: #FFF;
    width: 9px;
    height: 9px;
    left: 0;
    right: 0;
    top: 3px;
    margin: 0 auto;
    position: absolute;
    content: "";
    border-radius: 100%;
}

.project-verification .project-verification-bg {
    background: url("../img/project-bg.jpg") no-repeat right center;
    background-size: cover;
    padding: 150px 130px 130px;
    box-shadow: inset 0 0 0 1000px rgba(40, 40, 40, .2);
}

/*.project-verification h2 {font-weight: 600; font-size: 28px; line-height: 33px; color: #282828; padding-bottom: 30px;}*/
.project-verification .project-content {
    padding: 45px;
    max-width: 785px;
    background-color: #fff;
}

.project-verification .project-verification-bg-new .project-content {
    padding: 45px;
    max-width: 404px;
    background-color: #fff;
    position: relative;
    left: 60%;
}

.project-verification .project-content p {
    margin-bottom: 30px;
}

.project-verification .project-verification-bg-new .project-content p {
    margin-bottom: 14px;
}

.project-verification a {
    margin-bottom: 0;
    display: inline-block;
}

.project-verification .project-verification-bg-new {
    background: url("/out/pictures/ddmedia/3D-Druck-Suitable.jpg") no-repeat;
    padding: 60px 130px 50px;
    box-shadow: inset 0 0 0 1000px rgba(40, 40, 40, .2);
}

.project-verification .project-content-new {
    padding: 20px;
    max-width: 400px;
    background-color: #fff;
    margin-left: 55%;
}

.project-verification-bg-new .project-content {
    padding: 25px;
}

.clickable {
    cursor: pointer
}

span.no.lang {
    text-transform: uppercase;
}

/* 15-02-2018(video-block) */
.video-section {
    padding: 125px 0 135px;
    background: url(../img/video-banner.jpg) no-repeat center center;
    background-size: cover;
}

.video-section h2 {
    text-align: center;
    color: #fff;
    font-weight: 300;
    padding-bottom: 12px;
    display: block;
    margin: 0 auto;
}

.video-section p {
    text-align: center;
    color: #fff;
    font-weight: 300;
    width: 68%;
    display: block;
    margin: 0 auto;
}

.video-section .video-section-innner {
    max-width: 1270px;
    display: block;
    margin: 33px auto;
}

.video-section .video-section-innner .video {
    display: block;
    position: relative;
}

.video-section .video-section-innner .video:before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.video-section .video-section-innner .video img {
    width: 100%
}

.video-section .video-section-innner .video-icon {
    width: 97px;
    height: 97px;
    position: absolute;
    left: 0;
    top: 35%;
    right: 0;
    margin: 0 auto;
}

.video-section .video-section-innner .video-icon:hover {
    opacity: 0.5;
}

.video-section .video-section-innner .video-icon img {
    width: 100%;
}

.video-section .video-title {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    display: block;
    padding-top: 5px
}

/* Autolinker */
.dx-lexikon .dxLetters {
    margin-bottom: 20px;
}

#landing-accordion li.slide {
    background-image: none;
}

.custom-align-center {
    text-align: center !important;
}

#dxAddressForm {
    margin-bottom: 20px;
}

/* dropdown 16-02-2018 */
.bootstrap-select.btn-group .dropdown-menu li {
    padding: 0;
}

.bootstrap-select.btn-group .dropdown-menu li a {
    padding: 3px 10px
}

.config-outer-block .form-control .btn.dropdown-toggle {
    line-height: normal;
}

.bootstrap-select.btn-group .dropdown-menu {
    padding: 0;
    border-radius: 0;
    -ms-border-radius: 0;
    -webkit-border-radius: 0;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    right: 5px;
}

/* 18-02-2018 */
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    position: relative;
    text-overflow: ellipsis;
    padding-right: 10px;
}

/* 21-02-2018 */
.accordian-block-custom td {
    padding: 5px 0;
    color: #0098a1;
    font-weight: 600;
    font-size: 15px;
}

.accordian-block-custom td:first-child {
    font-size: 15px;
    font-weight: 600;
    width: 30%;
    color: #282828;
}

.accordian-block-custom table {
    width: 100%;
}

.accordian-block-custom .dx-accordion-content {
    padding: 20px 5px;
}

.dx-accordion-content td {
    padding-bottom: 10px;
}

.dx-accordion-content td:nth-child(odd) {
    font-weight: bold;
}

.dx-accordion-content td:nth-child(even) {
    padding-left: 70px;
    width: 350px;
    max-width: 100%;
}

.dx-accordion-title.title-inner {
    padding: 15px 40px 15px 20px;
    background: transparent;
}

.accordian-block-custom .dx-material-details h4 {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    padding-bottom: 5px;
    color: #282828;
}

.accordian-block-custom .dx-accordion-title.title-inner {
    padding: 20px 40px 10px 20px;
    color: #0098a1;
}

.accordian-block-custom .dx-accordion.closed .dx-accordion-title.title-inner {
    padding: 10px 40px 10px 20px;
    color: #282828
}

.cms-container {
    padding: 0 100px;
}

.bullet-links p > a, .bullet-links p > a i, .bullet-links-mp i {
    font-weight: bold;
}

h3.title {
    font-size: 38px;
    line-height: 1.3
}

h3.subtitle, h4.subtitle {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #000;
    padding: 0;
    margin-bottom: 10px;
}

h2.subtitle {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #000;
    padding: 0;
    margin-bottom: 10px;
}

.dx-background-bildmarke h3 {
    color: #96be0d;
}

.image-object-center .row {
    display: flex;
}

.image-object-center .row > div {
    flex: 1;
    display: flex;
}

.image-object-center .row > div > .dd-shortcode-text {
    margin: auto;
    margin-left: 0px;
}

.shortcode-top .row > div > .dd-shortcode-text {
    padding-top: 0 !important;
}

.image-object-center .row > div.col-sm-12 {
    display: block;
}

.image-object-center .row > div > .dd-image-box {
    margin: auto;
}

.image-object-center .row > div > .dd-image-box img {
    margin: auto;
}

.background-content-pad {
    max-width: 1560px;
    margin: auto;
    padding: 0px 115px;
}

.mbt-20 {
    margin-bottom: 20px;
}

.embed-responsive-16by9 {
    padding-bottom: 43%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.pos-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-green {
    color: #96be0d;
}

.no-padding-left {
    padding-left: 0px;
}

.finishing ul li {
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.finishing ul li i {
    color: #0d8a91;
    font-weight: bold;
}

.no-img-margin .dd-image-box, .no-img-margin.dd-image-box {
    margin: 8px 0 15px 0;
}

.col-sm-6 .dd-shortcode-text p {
    max-width: 618px;
}

.dx-white-font a:not(.btn) span,
.dd-shortcode-text a:not(.btn) span {
    white-space: nowrap;
}

h3.news-subtitle {
    line-height: 34px;
}

.metall .download-datasheet-custom, .sls .download-datasheet-custom, .sla .download-datasheet-custom,
.pjm .download-datasheet-custom, .keramik .download-datasheet-custom {
    margin-left: 0px !important
}

.induktor_cell {
    display: inline-table;
    width: 20%;
}

.datencheck-bg {
    background: url(../../img/banner-10.jpg) no-repeat;
    background-size: cover;
    color: #fff;
    padding: 40px;
}

.datencheck-bg p {
    color: #fff !important;
}

.datencheck-bg p, .datencheck-bg h2 {
    margin-left: 25%;
}

.market-icon {
    margin: 20px;
}

.dx_timeline {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 350px;
}

.dx_timeline .timeline-title {
    margin: 0;
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(138, 154, 168, 0.7);
    color: #8A9AA8;
}

.dx_timeline .slide-bg {
    top: 0;
    z-index: -1;
    position: absolute;
    height: 500px;
    width: 1900px;
}

.dx_timeline .panel-container {
    margin-top: 36px;
    height: 100%;
    width: 100%;
    position: relative;
}

.dx_timeline .panel-container .slide-panel {
    width: 340px;
    transition: all 1s ease;
    position: absolute;
}

.dx_timeline .panel-container .slide-panel .time-label {
    font-size: 60px;
    font-style: italic;
    padding: 0 0 0 24px;
    color: rgba(41, 51, 61, 0.5);
    display: none;
}

.dx_timeline .panel-container .slide-panel .panel-title {
    padding: 0px 0 12px 24px;
    margin: 0;
    color: #96be0d;
    font-size: 1.7rem;
}

.dx_timeline .panel-container .slide-panel .panel-content {
    padding: 12px 64px 18px 24px;
    font-size: 1.2rem;
    color: #29333D;
}

.dx_timeline .slide-nav {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.dx_timeline .slide-nav a {
    cursor: pointer;
    display: inline-block;
    padding: 10px 16px;
    color: #96be0d;
    transition: all 0.5s ease;
    background: #ffffff;
    margin-right: 10px;
    border-radius: 50%;
    border: 1px solid #96be0d;
}

.dx_timeline .slide-nav a:last-child {

}

.dx_timeline .slide-nav a:first-child {
}

.dx_timeline .slide-nav a:hover {
    background: #96be0d;
    color: #ffffff;
    transition: all 0.5s ease;
    border: 1px solid #96be0d;
}

.dx_timeline .nav-selected {
    background: #96be0d !important;
    color: #ffffff !important;
}

.dx_basket_shipping {
    margin-bottom: 40px;
    text-align: right;
}

.dxSelectShipping {
    color: #000;
    margin: 0 0 10px 0;
}

#basketVoucher .btn-inner {
    font-size: 15px;
}

@media screen and (min-width: 648px) {
    .dx_timeline .panel-selected {
        transform: scale(1.3);
        transition: all 1s ease;
        opacity: 1;
    }

    .dx_timeline .slide-panel:not(.panel-selected) {
        opacity: 0.5;
    }
}

@media screen and (max-width: 648px) {
    .dx_timeline {
        height: auto;
    }

    .dx_timeline .panel-container {
        position: static !important;
    }

    .dx_timeline .slide-panel {
        position: static !important;
        border-bottom: 1px solid rgba(138, 154, 168, 0.7);
        margin: auto;
        margin-bottom: 2rem;
    }

    .dx_timeline .panel-title {
        padding: 0 12px !important;
        color: #29333D !important;
    }

    .dx_timeline .panel-content {
        padding: 18px 12px !important;
        color: #29333D !important;
    }

    .dx_timeline .time-label {
        text-align: right;
    }

    .dx_timeline .slide-bg {
        background-position: center center !important;
        height: 100% !important;
        width: 100% !important;
        left: 0 !important;
    }

    .dx_timeline .slide-nav {
        display: none;
    }
}

#dxProgressOuter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:10000;
}

@media screen and (max-width: 568px) {
    #dxProgressOuter {
        top: 35%;
        left: 10%;
        right: 10%;
        transform: none;
    }

    #dxProgress {
        width: 100% !important;
    }
}

#dxProgress {
    width: 452px;
    height: 2px;
    background: #fff;
}

#dxProgressBar {
    width: 0;
    height: 100%;
    background: #0098a1;
}

#progressbarTitle {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 18px;
}

.dropzone .radio-unit, .dropzone .radio-unit label {
    color: #fff;
}

.dm-page img {
    margin-top: 94px;
}

.cl-register-switch .page-heading {
    padding-top: 25px;
}

.cl-register-switch .page-heading h1 {
    margin-bottom: 60px;
}

.btn-edit-shipping {
    padding: 5px 15px;
}

@media (max-width: 964px) {

    .config-inductor .custom-btn {
        width: 100%;
        line-height: 30px;
        text-align: center;
    }

    .config-inductor .custom-btn:first-child {
        margin-bottom: 10px;
    }
}

.informationsmaterial .download-btn {
    width: auto;
    padding: 10px 20px 9px 60px;
    margin: 35px 0 0 auto;
    position: absolute;
    bottom: 0;
    right: 0;
    height: auto;
}

.informationsmaterial .download-btn:hover {
    color: #fff;
    background: url(../img/download-icon.png) no-repeat 22px center #0098a1;
    border: 1px solid #0098a1;
}

.informationsmaterial .materialdatenblatt {
    padding: 10px 0 0 15px;
    border: 1px solid lightgray;
    position: relative;
    min-height: 230px;
}

.informationsmaterial.videos .materialdatenblatt {
    min-height: 290px;
    padding: 0px;
}

.vid-row .row::after {
    clear: none;
}

.informationsmaterial.videos .materialdatenblatt h4, .informationsmaterial.videos .materialdatenblatt .inhalt {
    padding-left: 10px;
}

.informationsmaterial .materialdatenblatt video {
    width: 100%;
}

.informationsmaterial .dx-landing-nav li a {
    min-height: 50px;
}

.informationsmaterial .materialdatenblatt .inhalt {
    padding-right: 25px;
}

.informationsmaterial .materialdatenblatt:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.loop-vid video {
    width: 100%;
    margin-top: 50px;
}

.dm-page .loop-vid video {
    margin-top: 80px;
}

.dx-panel-invite form .checkbox label, .project-admin form .checkbox label {
    padding-top: unset;
}

.dx-panel-invite form .checkbox input[type="checkbox"], .project-admin form .checkbox input[type="checkbox"] {
    margin: 6px 0 0;
}

.past-appointments h2 {
    color: #96be0d;
    font-size: 50px;
}

.cms-kundenstory .dx-bg-testimonials {
    background-image: none !important;
    margin-bottom: unset;
    background-color: transparent !important;

}

.kundenstory img {
    margin-top: 5px;
}

body.cl-payment form#payment dt label[for="payment_oxidcreditcard"] {
    margin-left: 0;
}

.payment-thumb img {
    max-width: 100%;
}

#newItemMsg .btn-default {
    transform: translateY(-15%);
}

.newsletter-subscribe-visible .checkbox-outer {
    margin-bottom: 25px;
}

/* 4:3 optimerungen etc */
@media screen and (max-width: 1024px) and (min-width: 992px) {

    #promo-carousel ul,
    #promo-carousel li {
        height: 100%;
    }

    #promo-carousel img {
        height: 100% !important;
        width: auto !important;
    }

}

/* 4:3 optimerungen etc */
@media screen and (max-height: 600px) and (max-width: 767px) {

    .logo {
        width: 70px;
    }

    #mainnav {
        margin-top: -35px;
    }

    #wrapper {
        margin-top: 110px;
    }

    .navbar-toggle .icon-bar {
        height: 3px;
        margin-bottom: 3px;
        width: 30px;
    }

    .social-links-wrap {
        position: static;
        margin-bottom: 20px;
    }

    body > .fullwidth-container {
        padding-bottom: 0;
    }

    .support-block {
        display: none;
    }

    .header-bottom .navbar-nav li em img {
        display: none;
    }

}

/* 1 nov 2017 */

@media (min-width: 767px) {

    .img-30 {
        width: 30%;
    }

    .img-40 {
        width: 40%;
    }

    .img-50 {
        width: 50%;
    }

    .img-60 {
        width: 60%;
    }

    .img-70 {
        width: 70%;
    }

    .img-80 {
        width: 80%;
    }

    .img-90 {
        width: 90%;
    }

    .background-content-pad {
        width: 100%;
        margin: auto;
        padding: 0px 75px;
    }
}

@media (min-width: 992px) {
    #sm_menu_ham,
    .sm_menu_outer {
        display: none;
    }

    .background-content-pad {
        width: 970px;
        margin: auto;
        padding: 0px 75px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }

    .background-content-pad {
        width: 1170px;
        padding: 0px 115px;
    }
}

@media (min-width: 1400px) {
    .container, .background-content-pad {
        width: 1400px;
    }

    .informationsmaterial.zertifikate .materialdatenblatt {
        min-height: 175px;
    }

    .informationsmaterial.richtlinien .materialdatenblatt {
        min-height: 205px;
    }
}

@media (min-width: 1595px) {
    .container, .background-content-pad {
        width: 1560px;
    }
}

@media (max-width: 1699px) {
    .suitable-method .info-block {
        left: 245px;
        top: 135px;
        width: 30%;
    }
}

@media (max-width: 1680px) {
    .dropzone .dz-message {
        margin: 2.88em 0;
    }

    #dropzone p {
        width: 55% !important;
    }

    .dropzone {
        padding: 39px 0 5px;
    }
}

@media (max-width: 1600px) {
    .dropzone .dz-message {
        margin: 1.5em 0;
    }
}

@media (max-width: 1595px) {
    .banner.imagefill {
        height: 575px;
    }

    .dropzone-ctn.imagefill {
        height: 575px;
    }
}

@media (max-width: 1499px) {
    .how-works .info {
        padding: 0 350px 65px;
    }

    .how-works .detail-block {
        padding: 0 20px;
    }

    .how-works .btn-block {
        margin-top: 75px;
    }

    .material-block .right-inner-block .details {
        width: 100%;
    }

    .suitable-method .info-block {
        left: 70px;
        width: 38%;
        top: 100px;
    }

    .suitable-method .left-inner-block.imagefill {
        height: 575px;
    }

    .already-done.projects-block .info-block {
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    .detail-page .detail-listing {
        padding: 55px 0 10px;
    }

    .detail-page h2.main-title {
        padding-bottom: 40px;
    }

    .detail-page .detail-listing .listing-link {
        margin: 30px 0 100px;
    }

    .detail-page .detail-listing .listing-link li {
        margin-bottom: 20px;
    }

    .detail-page .product-details {
        padding: 60px 0 15px;
    }

    .detail-page .product-details h3.section-title {
        padding: 65px 0 10px 0;
    }

    .detail-page .product-details .product-text {
        padding: 65px 0;
    }

    .detail-page .product-details .tech-list {
        margin-bottom: 30px;
    }

    .detail-page .product-details .tech-list:last-child {
        margin-bottom: 55px;
    }

    .detail-page .product-details .full-product-img {
        height: 425px;
        margin: 70px 0;
    }

    .detail-page .product-details .thumbnail-img {
        height: 190px;
        margin-bottom: 20px;
    }

    header .submenu h4 {
        font-size: 18px;
        line-height: 24px;
    }

    .how-works .row {
        padding: 0;
    }
}

@media (max-width: 1440px) {
    .dropzone .dz-message {
        margin: 1.1em 0;
    }

    #dropzone p {
        width: 70% !important;
    }
}

@media (max-width: 1439px) {
    .banner .info p {
        padding-bottom: 45px;
    }

    .dropzone-ctn .info p {
        padding-bottom: 30px;
    }

    .how-works {
        padding: 80px 0 90px;
    }

    .how-works .info {
        padding: 0 250px 50px;
    }

    .how-works .detail-block {
        padding: 0;
    }

    .material-block .right-inner-block {
        padding-top: 50px;
    }

    h2.main-title {
        font-size: 33px;
        line-height: 42px;
    }

    .material-block h2.main-title {
        padding-bottom: 40px;
    }

    .material-block .material-inner h3 {
        padding-bottom: 10px;
    }

    .already-done .banner {
        height: 325px !important;
    }

    .already-done .dropzone-ctn {
        height: 325px !important;
    }

    .already-done .info-block {
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    .already-done ul {
        margin-top: 40px !important;
    }

    .banner .info {
        top: 35%;
        left: 5%;
        width: 90%;
    }

    .dropzone-ctn .info {
        top: 35%;
        left: 5%;
        width: 90%;
    }

    .suitable-method .info-block h2.main-title {
        padding-bottom: 30px;
    }

    .suitable-method .info-block h3 {
        padding-right: 30px;
    }

    .already-done.projects-block .banner.imagefill {
        height: 325px;
    }

    .already-done.projects-block .dropzone-ctn.imagefill {
        height: 325px;
    }

    /* 3d Slider */
    .cascade-slider_nav li {
        padding: 0 10px;
    }

    .material-block h2 {
        padding-right: 0;
    }

    .final-block li.to-basket a {
        font-size: 15px !important;
    }
}

@media (max-width: 1400px) {

    .dropzone .dz-message {
        margin: 0.8em 0;
    }

    .inner-header .upper-header ul li > a {
        padding: 13px 15px 16px;
    }

    .dx-landing-nav li a {
        font-size: 14px;
        padding: 10px;
    }

    .informationsmaterial .materialdatenblatt {
        min-height: 250px;
    }
}

@media (max-width: 1399px) {

    .banner.imagefill {
        height: 490px;
    }

    .dropzone-ctn.imagefill {
        height: 490px;
    }

    .project-verification .project-verification-bg-new .project-content {
        left: 45%;
    }

    .banner .banner-header {
        height: 72%;
    }

    .dropzone-ctn .dropzone-ctn-header {
        height: 72%;
    }
}

@media (max-width: 1366px) {
    .dropzone {
        padding: 32px 0 5px;
    }
}

@media (max-width: 1360px) {

    #video-block {
        width: 990px;
    }

    #dropzone p {
        width: 50%;
    }

    .works-inner-block {
        padding: 40px;
    }

    .accordion ul li div a h5 {
        top: 50px;
    }

    .accordion ul li div a span {
        top: 65px;
        padding: 0 10px;
    }

    .dropzone {
        padding: 30px 0 5px;
    }
}

@media (max-width: 1300px) {

    /* 3d Slider */
    .cascade-slider_container {
        height: 450px;
    }

    .modul-slider {
        padding: 120px 0;
    }

    /* video-section */
    .video-section p {
        width: 100%
    }

    .video-section .video-data {
        padding: 15px 0
    }

    .video-section .video-demo {
        margin: 15px auto;
    }

}

@media (max-width: 1280px) {
    #dropzone p {
        width: 81% !important;
    }

    .dropzone .dz-message img {
        width: 15%;
        height: auto;
        margin-top: 9%
    }

    .dropzone {
        padding: 33px 0 5px;
    }

    /* Item details */
    .details-col-left {
        padding-right: 15px;
    }

    .details-col-middle {
        margin-left: 0;
    }

    /* contact page */
    .form-wrap .col-lg-3 {
        width: 30%;
    }
}

@media (max-width: 1230px) {
    .third-block {
        margin-left: -215px;
    }

    .fourth-block {
        left: 20px;
        margin-left: -233px;
    }

    .sixth-block {
        margin-left: -215px;
    }

    .eighth-block {
        margin-left: -235px;
        left: 25px;
    }

    .dropzone {
        padding: 27px 0 5px;
    }

    .dropzone .dz-message img {
        width: 14%;
        margin-top: 15%;
        height: auto;
    }

    #header .header-top.inner-header .header-title span {
        padding-top: 25px;
    }

    .small-header #header .header-top.inner-header .header-title span {
        padding-top: 20px;
    }
}

@media (max-width: 1199px) {
    .informationsmaterial .dx-landing-nav li a {
        font-size: 12px;
    }

    .informationsmaterial .materialdatenblatt {
        min-height: 200px;
    }

    .informationsmaterial .materialdatenblatt {
        margin-top: 40px;
    }

    .informationsmaterial .last .materialdatenblatt {
        margin-top: unset;
    }

    .informationsmaterial.videos .materialdatenblatt {
        min-height: 325px;
    }

    .navbar-collapse {
        margin: 0;
        padding: 0;
    }

    .footer-bottom .form-group {
        width: 260px;
    }

    #video-block1, #video-block2, #video-block3, #video-block4 {
        width: 700px;
    }

    .triangle-block {
        margin-right: 45px;
    }

    .fourth-block {
        margin-right: 0;
    }

    .eighth-block {
        margin-right: 0
    }

    .accordion ul li div a h5 {
        top: 40px;
    }

    .accordion ul li div a span {
        top: 55px;
        padding: 0 0;
    }

    .accordion ul li.accordion-open div.accordion-header h4 {
        margin-left: -19px;
    }

    /* Cart */
    .basketcontents_table .table-bordered .totalPrice {
        width: 170px;
    }

    /* Login */
    .header-top.inner-header .inner-logo {
        width: 13%;
    }

    /* Payment Page */
    .payment a {
        width: 20%;
    }

    .reorder-table.basketcontents_table .table-bordered .totalPrice {
        width: 130px;
    }

    .linking-block {
        width: 16%;
    }

    .reorder-table.basketcontents_table .table-bordered .totalPrice em {
        margin-right: 45px;
    }

    .reorder-table.basketcontents_table .table-bordered .totalPrice span {
        font-size: 32px;
        line-height: 36px;
    }

    .reorder-table.basketcontents_table .table-bordered > thead > tr > td, .reorder-table.basketcontents_table .table-bordered > tbody > tr > td, .reorder-table.basketcontents_table .table-bordered > tfoot > tr > td {
        padding: 15px 5px;
    }

    .project-table tr td {
        padding: 21px 10px;
    }

    .project-table .project-detail ul li {
        font-size: 13px;
        padding-right: 5px;
    }

    .return-table.basketcontents_table .table-bordered tbody tr td.date-outer {
        width: 110px;
    }

    .return-table.basketcontents_table .table-bordered tbody tr td.quantity {
        width: 170px;
    }

    .return-table.basketcontents_table .table-bordered thead tr th .status {
        padding-left: 100px;
    }

    .return-table.basketcontents_table .table-bordered thead tr th .bestell {
        padding-left: 70px;
    }

    .project-table tr td:nth-child(3) {
        width: 220px;
    }

    .project-table .project-detail ul li img {
        margin-right: 5px;
    }

    .config-page .basketcontents_table #table_cartItem_1 td:first-child {
        width: 300px;
    }

    .config-page .basketcontents_table #table_cartItem_1 td.filename-col {
        width: 180px;
    }

    .component-tbl .comp-col1 {
        width: 370px;
    }

    .component-tbl .comp-col2 {
        width: 260px;
    }

    .component-tbl .comp-col3 {
        width: 210px;
    }

    #dropzone p {
        margin-bottom: 0;
    }

    .dropzone {
        padding: 27px 0 5px;
    }

    .return-table.basketcontents_table .table-bordered tbody tr td.table-img {
        width: 110px;
    }

    .contact-links li a:after {
        display: none;
    }

    /* 26 October 2016 */
    .basketFunctions .btn-inner {
        margin-bottom: 10px;
    }

    /* start 27-10-2016 */
    .footer-top h6 {
        font-size: 16px;
    }

    .footer-top ul li {
        font-size: 16px;
    }

    /* dealer-info-page */
    .links-block li {
        width: 32.6%;
    }

    .dealer-info h3.title-h3 {
        font-size: 32px;
        padding-bottom: 20px;
    }

    /* 3 nov 2017 */
    body {
        font-size: 14px;
        line-height: 18px;
    }

    .inner-header .bottom-header ul li {
        margin-right: 18px;
    }

    header .submenu h4 {
        font-size: 19px;
        line-height: 23px;
        margin-bottom: 15px;
        min-height: 61px;
    }

    header .inner-header .bottom-header .submenu ul li {
        margin: 0 0 15px 0;
    }

    .small-header .inner-header .bottom-header ul li .submenu.single {
        padding: 15px 0 0 0;
    }

    .header-nav-links {
        margin-top: 38px;
    }

    .small-header .header-nav-links {
        margin-top: 38px;
    }

    .small-header header .logo img {
        width: 110px;
    }

    .inner-header .upper-header ul li > a {
        padding: 13px 8px 16px;
    }

    .inner-header .upper-header ul li.chalan {
        margin-right: 0;
        margin-left: 0;
    }

    main {
        margin-top: 140px;
    }

    .banner.imagefill {
        height: 404px;
    }

    .dropzone-ctn.imagefill {
        height: 404px;
    }

    /*h2 { font-size: 50px; line-height: 54px; }*/
    .how-works {
        padding: 70px 0 80px;
    }

    h2.main-title {
        font-size: 31.48px;
        line-height: 40.48px;
    }

    .how-works .info {
        padding: 0 150px 40px;
    }

    .how-works .btn-block {
        margin-top: 57px;
    }

    .material-block h2.main-title {
        padding-bottom: 30px;
    }

    h2.main-title {
        font-size: 29px;
        line-height: 37px;
    }

    .material-block .right-inner-block {
        margin-left: -50px;
    }

    .material-block .material-inner {
        margin-bottom: 30px;
    }

    .suitable-method .info-block {
        left: 50px;
        width: 40%;
        top: 40px;
    }

    .suitable-method .left-inner-block.imagefill {
        height: 500px;
    }

    .questions {
        padding: 50px 0 60px;
    }

    .questions ul {
        margin: 50px 50px 0 50px;
    }

    footer .footer-top .footer-links.payment-methods ul li {
        margin: 0 20px 20px 0;
    }

    footer .footer-top .footer-links.col2 {
        width: 33.33%;
    }

    footer .footer-bottom .social-icons li {
        margin-right: 15px;
    }

    .detail-page .detail-listing {
        padding: 40px 0 10px;
    }

    .detail-page h2.main-title {
        padding-bottom: 30px;
        font-size: 28px;
        line-height: 33px;
    }

    .detail-page .detail-listing .listing-link {
        margin: 25px 0 60px;
    }

    .detail-page .product-details {
        padding: 40px 0 16px;
    }

    .detail-page .product-details h3.section-title {
        padding: 40px 0 10px 0;
    }

    .detail-page .product-details .product-text {
        padding: 50px 0;
    }

    .detail-page .product-details .tech-list .left-img {
        height: 200px;
    }

    .detail-page .product-details .tech-list:last-child {
        margin-bottom: 35px;
    }

    .detail-page .product-details .detail-text {
        margin-bottom: 30px;
    }

    .detail-page .product-details .full-product-img {
        height: 385px;
        margin: 40px 0;
    }

    .detail-page .product-details .thumbnail-view {
        margin-bottom: 35px;
    }

    .detail-page .product-details .thumbnail-view p {
        margin-bottom: 10px;
    }

    .detail-page .questions h2.main-title {
        padding-bottom: 8px;
    }

    /* Item details */
    .details-col-right .tobasket .tobasketFunction .form-control {
        min-width: 80px;
    }

    .details-col-middle, .details-col-left, .details-col-right {
        margin: 20px 0;
    }

    #header .header-top.inner-header .inner-logo {
        width: 155px
    }

    .inner-header .upper-header ul li .sub-dropdown {
        /* Anpassung width: 230px;*/
    }

    /* 10-02-2018 */
    .technical-information .right-col, .advantages-block .right-col {
        padding-right: 15px;
    }

    .laser-application-block p {
        padding-right: 0;
    }

    /*20-02-2018*/
    .basketcontents_table {
        padding-right: 0;
    }

    .basketSummary {
        padding-left: 0;
    }

    .dxPersonalOrderNumberTable {
        padding-left: 0;
    }

    .checkout-parent-custom {
        padding-left: 0;
    }

    .shipping_config .border_box label.control-label {
        padding: 5px 15px 5px 0;
    }

    .shipping_config .custom-inner-fields {
        padding-left: 0;
    }

    .shipping_config .col-lg-8 {
        padding-left: 0;
    }

    .shipping_config .col-xs-6 {
        padding-left: 0;
    }

    .cms-container {
        padding: 0 60px;
    }

    .banner .info h1 {
        font-size: 34px;
    }

    .banner .banner-bottom h2 {
        font-size: 22px;
    }

    .dropzone-ctn .info h1 {
        font-size: 34px;
    }

    .dropzone-ctn .dropzone-ctn-bottom h2 {
        font-size: 22px;
    }
}

@media (max-width: 1152px) {
    .dropzone {
        padding: 18px 0 5px;
    }
}

@media (max-width: 1024px) {
    .dropzone {
        padding: 21px 0 5px;
    }

    #dropzone p {
        width: 90% !important;
        font-size: 15px;
    }

    .how-works {
        padding: 50px 0 60px;
    }

    .how-works .info {
        padding: 0 100px 35px;
    }

    h2.main-title {
        font-size: 28px;
        line-height: 33px;
    }

    .how-works .btn-block {
        margin-top: 50px;
    }

    .material-block .material-inner h3 {
        padding-bottom: 8px;
    }

    .material-block .material-inner {
        margin-bottom: 25px;
    }

    .already-done .dropzone-ctn {
        height: 275px !important;
    }

    .already-done ul {
        margin-top: 35px !important;
    }

    .already-done ul li {
        margin-right: 17px
    }

    .questions {
        padding: 40px 0 50px;
    }

    .questions ul {
        margin: 40px 30px 0 30px;
    }

    .questions ul a span {
        margin: 14px 0 0 -3px;
    }

    .small-header .inner-header .bottom-header ul li .submenu.single {
        top: 42%;
    }

    header .submenu {
        top: 130px;
    }

    .small-header header .submenu {
        top: 110px;
    }

    .inner-header .upper-header ul li .sub-dropdown {
        /* Anpassung width: 215px; */
    }

    /* Konfigurator */
    .final-block li a {
        padding: 35px 10px;
    }

    .final-block li.total-price table tr td {
        padding: 26px 20px 27px;
    }

    .category-list li i {
        max-width: 110px;
    }

    .final-block li.green a {
        height: auto;
    }

    /* product-list */
    .product-list label {
        font-size: 20px;
        padding: 10px;
    }

    .page-heading {
        padding: 20px 0;
    }

    .dd-shortcode-text .page-heading {
        padding: 0px 0 20px;
    }

    .product-section {
        padding: 65px 0;
    }

    /* news-listing */
    .pagination-outer {
        padding: 20px 0 0;
    }

    .news-section {
        padding: 50px 0;
    }

    .news-list {
        margin-bottom: 0
    }

    /* Modul-dates-list */
    .tabs li {
        max-width: 180px;
        height: 70px;
    }

    .appointment-table tr td {
        font-size: 25px;
        line-height: 30px;
    }

    /* modul-dates-details */
    .appointment-block {
        padding: 20px;
    }

    .appointment-block ul li img {
        margin-right: 5px;
    }

    .dates-detail-block {
        padding: 50px 0;
    }

    /* 3d Slider */
    .cascade-slider_nav li {
        padding: 0 5px;
    }

    .modul-slider {
        padding: 50px 0;
    }

    .cascade-slider_container {
        height: 400px;
    }

    .cascade-slider_nav li a {
        font-size: 18px;
    }

    /* 	cart */
    .basketSummary {
        max-width: 100%;
        margin-bottom: 20px;
        padding-left: 0;
    }

    .dxPersonalOrderNumberTable {
        padding-left: 0;
    }

    .checkout-parent-custom {
        padding-left: 0;
    }

    .basketcontents_table {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .basketItemDesc td {
        font-size: 12px;
        line-height: 14px;
    }

    .dxShippingTime {
        font-size: 12px;
        line-height: 14px;
    }

    .totalPrice span {
        font-size: 16px;
        line-height: 20px;
    }

    .dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td:nth-child(5) img {
        width: 60px;
        height: auto;
    }

    .dxMerchantBasket .basketcontents_table .totalPrice {
        white-space: nowrap;
    }

    /* Megamenu - category list */
    .dxCategoryFooterText {
        margin-top: 0px;
    }

    /* checkout-address-selection. */
    .address-selection-block .table-col {
        padding: 15px;
    }

    .address-selection-block .col-1 .table td:first-child {
        width: 50%;
    }

    .address-selection-block .col-1 .table td:last-child {
        width: 50%;
    }

    .address-selection-block .col-2 .table td:first-child {
        width: 50%;
    }

    .address-selection-block .col-2 .table td:last-child {
        width: 50%;
    }

    .address-selection-block .col-3 .table td:first-child {
        width: 50%;
    }

    .address-selection-block .col-3 .table td:last-child {
        width: 50%;
    }

    /* Item details */
    .details-col-right .information .btn {
        font-size: 14px;
    }

    .details-col-right .tobasket .tobasketFunction .form-control {
        height: 42px;
        font-size: 18px;
    }

    .details-col-right .tobasket .tobasketFunction .form-control {
        min-width: 60px;
    }

    .details-col-middle .customization .print-text, .details-col-middle .customization .print-font {
        width: 100%;
    }

    .form-wrap .data-block {
        max-width: 100%;
        width: 100%;
        padding-top: 30px;
    }

    #header .header-top.inner-header .inner-logo {
        width: 135px;
    }

    #header .header-top.inner-header .header-title {
        max-width: 182px;
    }

    #header .header-top.inner-header .header-title span {
        padding-top: 10px;
    }

    .small-header #header .header-top.inner-header .header-title span {
        padding-top: 10px;
    }

    .banner .info h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .banner .info p {
        font-size: 18px;
        line-height: 22px;
    }

    .banner .banner-bottom h2 {
        font-size: 22px;
        line-height: 24px;
    }

    .dropzone-ctn .info h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .dropzone-ctn .info p {
        font-size: 18px;
        line-height: 22px;
    }

    .dropzone-ctn .dropzone-ctn-bottom h2 {
        font-size: 22px;
        line-height: 24px;
    }

    .project-verification {
        margin: 40px 0;
    }

    .material-block {
        padding: 40px 0;
    }

    .material-block h2 {
        padding-bottom: 40px;
    }

    .already-done h2.main-title {
        padding-bottom: 20px;
    }

    .banner .banner-bottom .banner-inner-content {
        padding: 20px 0 15px 125px
    }

    .dropzone-ctn .dropzone-ctn-bottom .dropzone-ctn-inner-content {
        padding: 20px 0 15px 125px
    }

    /* 10-02-2018 */
    .technical-information .right-col, .advantages-block .right-col {
        padding-left: 15px;
    }

    .custom-listing li {
        padding-bottom: 10px;
    }

    .laser-application-block .right-col {
        margin-left: 0
    }

    header .submenu .container-fluid {
        padding: 18px 0 12px 10px;
    }

    /* video-section */
    .video-section {
        padding: 50px 0;
    }

    .video-section .video-section-innner .video-icon {
        width: 50px;
        height: 50px;
    }

    /*21-02-2018*/
    .dx-material-desc {
        margin-bottom: 10px;
    }
}

@media (max-width: 992px) {
    .dropzone {
        padding: 19px 0 5px;
    }
}

@media (max-width: 991px) {
    .final-block li.to-basket a {
        font-size: 22px !important;
    }

    .container {
        width: auto;
    }

    /*container-width-auto in ipad*/
    header .mob-header {
        display: block;
    }

    .header-bottom .navbar-nav li a {
        padding: 5px 5px 11px;
    }

    #mainnav .nav > li > a {
        font-size: 11px;
    }

    .method-inner-content h3 {
        font-size: 25px;
        line-height: 30px;
    }

    .method-inner-content a {
        float: right;
        margin: 10px 25px 0 0;
    }

    #dropzone p {
        width: 70%;
        font-size: 16px;
        line-height: 20px;
    }

    .dropzone {
        padding: 10px 0 5px;
    }

    .logo {
        width: 250px;
    }

    .triangle-block {
        margin-right: 11%;
    }

    .third-block {
        margin-left: -220px;
    }

    .fourth-block {
        margin-right: 0
    }

    .eighth-block {
        margin-right: 0;
    }

    .seventh-block {
        margin-left: -219px;
    }

    .accordion ul li:after {
        width: 6px;
    }

    .accordion-header h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .accordion ul li.accordion-open div.accordion-header h4 {
        margin-left: -15px;
    }

    .accordion ul li div a h5 {
        font-size: 14px;
        line-height: 18px;
    }

    /* Cart */
    .quantity a.delete {
        padding: 4px 0 0 0;
        margin-left: 10px;
    }

    .basketcontents_table .table-bordered .totalPrice {
        width: 110px;
    }

    .text-muted {
        font-size: 13px;
        line-height: 17px;
    }

    .basketItemDesc td {
        font-size: 13px;
        line-height: 17px;
    }

    .direct-to-block {
        padding-top: 20px;
    }

    /* Impressum */
    .button-block li {
        width: 18.8%;
    }

    .button-block li a {
        padding: 0 10px;
        font-size: 11px;
    }

    /* Checkout page*/
    /*16-01-2018*/
    .checkoutsteps li span {
        font-size: 14px;
        line-height: 18px;
        max-width: 95px;
    }

    .checkoutsteps {
        margin: 0 23% 0 0;
    }

    .accountLoginView .panel-body {
        padding: 25px;
    }

    .checkoutsteps li:first-child {
        margin-left: 0;
    }

    .first-form-group {
        margin-top: 0;
    }

    .checkoutsteps li {
        width: 28%;
    }

    .accountLoginView .align-right {
        float: left;
    }

    .accountLoginView .textLink {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .accountLoginView .panel-body ul {
        margin-bottom: 20px;
    }

    .login-heading-block h2.title {
        font-size: 40px;
        line-height: 44px;
    }

    .header-top.inner-header .inner-logo {
        width: 17%;
    }

    .header-top.inner-header .header-logo {
        width: 13%;
    }

    .banner-content {
        margin-top: -24px;
    }

    .banner-content span {
        font-size: 40px;
        line-height: 46px;
    }

    .dropzone-ctn-content {
        margin-top: -24px;
    }

    .dropzone-ctn-content span {
        font-size: 40px;
        line-height: 46px;
    }

    /* Order Page */
    .address-wrap li {
        width: 30%;
    }

    /* Upload Page */
    .upload-main-block {
        padding: 55px 0 45px;
    }

    .upload-main-block #dropzone {
        margin: 40px 0;
    }

    /* Payment Page */
    .payment-content-block .payment-thumb {
        width: 17%;
    }

    .payment-content-block .payment-title {
        width: 70%;
    }

    .payment a {
        width: 27%;
    }

    .footer-top ul.footer-collapse {
        padding: 7px 0 50px;
    }

    .footer-top ul.footer-collapse li {
        position: relative;
    }

    .footer-top ul.footer-collapse li a {
        border-top: 1px solid #96be0d;
        display: block;
        font-size: 16px;
        line-height: 20px;
        color: #4a4a49;
        text-transform: uppercase;
        padding: 8px 15px;
    }

    .footer-top ul.footer-collapse li:last-child a {
        border-bottom: 1px solid #96be0d;
    }

    .footer-top ul.footer-collapse li a em {
        position: absolute;
        right: 20px;
        top: 10px;
    }

    .footer-top ul.footer-collapse li a em img {
        width: 24px;
        height: 15px;
    }

    .footer-top ul.footer-collapse li a em .roll-over {
        display: none;
    }

    .footer-top ul.footer-collapse li .collapsable-content {
        display: none;
    }

    .footer-top ul.footer-collapse li .collapsable-content ul li a {
        font-size: 14px;
        line-height: 18px;
        padding: 5px 20px;
        text-transform: none;
        border-bottom: 1px solid #dddddd;
        border-top: 0;
    }

    .footer-top ul.footer-collapse li .collapsable-content ul li:first-child a {
        border-top: 1px solid #96be0d;
    }

    .footer-top ul.footer-collapse li .collapsable-content ul li:last-child a {
        border-bottom: 0;
    }

    .footer-top ul.footer-collapse li.collapsed a em {
        top: 13px;
    }

    .footer-top ul.footer-collapse li.collapsed a em .normal {
        display: none;
    }

    .footer-top ul.footer-collapse li.collapsed a em .roll-over {
        display: block;
        opacity: 1;
    }

    .reorder-table.basketcontents_table .table-bordered tr td .basketImage a img {
        width: 120px;
    }

    .reorder-table.basketcontents_table .table-bordered tr td {
        font-size: 12px;
        line-height: 16px;
    }

    .reorder-table.basketcontents_table .table-bordered .totalPrice {
        width: 65px;
    }

    .reorder-table.basketcontents_table .table-bordered .totalPrice span {
        font-size: 20px;
        line-height: 24px;
    }

    .reorder-table.basketcontents_table .table-bordered .totalPrice em {
        margin-right: 20px;
        font-size: 10px;
        line-height: 14px;
    }

    .reorder-table.basketcontents_table .table-bordered .basketItemDesc h6 {
        font-size: 12px;
        line-height: 16px;
    }

    .reorder-table.basketcontents_table .table-bordered .basketItemDesc ul li span {
        font-size: 12px;
        line-height: 16px;
    }

    .reorder-table.basketcontents_table .table-bordered tr td .btn-grey {
        padding: 3px 5px;
    }

    .reorder-table.basketcontents_table .table-bordered tr td .basketItemDesc ul li span {
        padding-left: 5px
    }

    .linking-block {
        width: 22%;
    }

    .return-table.basketcontents_table .table-bordered tbody tr td .basketItemDesc h6 {
        font-size: 14px;
        line-height: 18px;
    }

    .return-table.basketcontents_table .table-bordered tr td .basketImage a img {
        width: auto;
    }

    .return-table.basketcontents_table .table-bordered tbody tr .checkbox-main.checkbox label {
        font-size: 14px;
        line-height: 18px;
        min-height: inherit;
    }

    .return-table.basketcontents_table .table-bordered tbody tr span {
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 5px;
    }

    .return-table.basketcontents_table .table-bordered tbody tr td span.quantity {
        font-size: 14px;
        line-height: 18px;
        padding: 12px 0 0 0;
        display: block;
        font-weight: 400;
    }

    /* 11102016 */
    .return-table.basketcontents_table .table-bordered tbody tr td.table-img {
        width: 150px;
    }

    /* 11102016 */
    .return-table.basketcontents_table .table-bordered tbody tr td.date-outer {
        width: 130px;
    }

    /* 11102016 */
    .return-table.basketcontents_table .table-bordered tbody tr td .btn-secondary {
        letter-spacing: 0;
    }

    .return-table.basketcontents_table .table-bordered thead tr th .bestell {
        padding-left: 30px;
    }

    /* 11102016 */
    .reorder-table.basketcontents_table .table-bordered tr td .basketItemDesc ul li span {
        padding-left: 5px
    }

    .project-table tr td:nth-child(3) {
        width: 160px;
    }

    .project-table .project-detail ul li {
        float: none;
        padding-bottom: 5px;
    }

    .project-table .project-detail ul li:last-child {
        padding-bottom: 0;
    }

    .project-table tr td .form-group {
        margin-top: 10px;
    }

    .project-table .price span {
        font-size: 30px;
        line-height: 34px;
    }

    .footer-top ul.footer-collapse li .collapsable-content ul li {
        text-align: left;
    }

    .footer-top ul.footer-collapse li:last-child .collapsable-content ul li:last-child {
        border-bottom: 1px solid #dddddd;
    }

    .config-page .basketcontents_table #table_cartItem_1 td:first-child {
        width: 200px;
    }

    .config-page .basketcontents_table #table_cartItem_1 td.filename-col {
        width: 150px;
    }

    .add-cart {
        font-size: 16px;
        line-height: 20px;
        padding: 11px 10px 5px;
    }

    .add-cart em {
        margin-right: 3px;
    }

    .add-cart em img {
        height: 18px;
        width: 18px;
    }

    .component-tbl .comp-col1 {
        width: 380px;
    }

    .component-tbl .comp-col2 {
        width: 255px;
    }

    .component-tbl .comp-col3 {
        width: 200px;
    }

    .component-tbl .comp-col4 {
        width: 195px;
    }

    .component-tbl tbody tr td:first-child em {
        width: 115px;
    }

    .component-tbl tbody tr td em {
        width: 75px;
    }

    .component-tbl span em {
        padding-left: 5px;
    }

    .component-tbl span.dark-text {
        font-size: 18px;
        line-height: 22px;
    }

    .component-tbl span {
        font-size: 13px;
        line-height: 17px;
    }

    .config-page .component-tbl tbody tr td:first-child em {
        width: 130px;
    }

    .config-page .component-tbl .comp-col1 {
        width: 385px;
    }

    .config-page .component-tbl .comp-col2 {
        width: 285px;
    }

    .config-page .component-tbl .comp-col3 {
        width: 225px;
    }

    .config-page .component-tbl .comp-col4 {
        width: 225px;
    }

    .config-page .component-tbl tbody tr td em {
        display: inline-block;
        width: 85px;
    }

    .dropzone .dz-message img {
        width: 60px;
        margin-top: 0;
    }

    .left-block, .right-block {
        padding: 0;
    }

    .dropzone {
        border: 0;
        min-height: inherit;
    }

    .dropzone em {
        text-transform: uppercase;
        font-size: 24px;
        line-height: 28px;
        color: #fff;
        font-style: normal;
        font-weight: 600;
    }

    .dropzone em.visible-sm, .dropzone em.visible-xs {
        display: inline-block !important;
    }

    .upload-block img {
        display: inline-block !important;
        position: relative;
        top: -5px;
        left: -15px;
        width: 35px;
        height: 31px;
    }

    .dropzone .dz-message {
        margin: 0;
    }

    .flexslider {
        min-height: inherit;
    }

    .flexslider .slides img {
        min-height: inherit;
    }

    .right-block {
        margin-bottom: 6px;
    }

    .dropzone .upload-block {
        padding-top: 10px;
    }

    .return-table.basketcontents_table .table-bordered thead tr th .status {
        padding-left: 25px;
    }

    /* 11102016 */
    .return-table.basketcontents_table .table-bordered > tbody > tr > td.checkbox-middle label .checkbox {
        margin-left: -12px;
        top: -2px;
    }

    /* 11102016 */
    .download-sm-right h5 {
        font-size: 14px;
    }

    /* dealer-info-page */
    .links-block li {
        width: 32.4%;
    }

    .dealer-info h3.title-h3 {
        font-size: 26px;
    }

    .dealer-information-block .right-contact-block h4 {
        font-size: 18px;
    }

    .dealer-information-block .right-contact-block .sent-block h5 {
        font-size: 18px;
    }

    .contact-dealer-block h4 {
        font-size: 18px;
    }

    .dealer-information-block .right-contact-block p {
        margin-bottom: 15px;
    }

    .dealer-information-block .left-info-block p {
        padding-bottom: 15px;
    }

    .dealer-information-block .right-contact-block .phone-content {
        margin-bottom: 15px;
    }

    .dealer-information-block .left-info-block {
        width: 100%;
    }

    .dealer-information-block .right-contact {
        width: 100%;
    }

    .checkbox-block label {
        width: 97%;
        float: right;
    }

    /* 3 nov 2017 */
    /*.inner-header { display: none; }*/
    .upper-header ul li em {
        display: none;
    }

    .inner-header .upper-header ul li > a div {
        position: relative;
        display: inline-block;
        padding: 0 10px;
    }

    .inner-header .upper-header ul li a .no {
        top: 0;
        position: absolute;
    }

    .inner-header .upper-header ul li a i {
        top: 0;
    }

    .inner-header .upper-header ul li > a {
        padding: 10px;
    }

    .inner-header .upper-header ul {
        width: 100%;
    }

    .inner-header .upper-header > ul > li {
        width: 82px;
        border-right: 1px solid #000;
        text-align: center;
        position: inherit;
    }

    .inner-header .upper-header > ul > li.mobile-header-width {
        width: 25%;
    }

    .inner-header .upper-header ul > li:last-child {
        border-right: none;
    }

    .inner-header .upper-header ul li.chalan a .no.lang {
        right: -10px;
    }

    .inner-header .upper-header ul li.chalan a i {
        height: 18px;
    }

    .inner-header .upper-header ul li .sub-dropdown.lang {
        width: 100%;
    }

    header .header-top .header-top-right {
        padding: 0;
    }

    .header-nav-links {
        display: none;
    }

    .inner-header.mob {
        display: block;
    }

    header .logo {
        padding: 5px 0 0 0;
    }

    header .logo img {
        width: 102px;
    }

    .small-header header .logo img {
        width: 70px;
    }

    header {
        height: 100px;
    }

    .small-header header {
        height: 90px;
    }

    .small-header header .logo {
        padding: 9px 0 0 9px;
    }

    header .container {
        width: 100%;
    }

    header .cart-block {
        display: block;
        position: absolute;
        right: 62px;
        top: 10px;
    }

    header .cart-block li a {
        position: relative;
    }

    header .cart-block li a i {
        height: 18px;
        width: 18px;
        display: inline-block;
        margin-right: 7px;
        top: 5px;
        position: relative;
    }

    header .cart-block li a i img {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        max-width: 100%;
    }

    header .cart-block li a i img.hover-img {
        opacity: 0;
    }

    header .cart-block li a:hover i img {
        opacity: 0;
    }

    header .cart-block li a:hover i img.hover-img {
        opacity: 1;
    }

    header .cart-block li a .no {
        height: 11px;
        width: 11px;
        display: block;
        background: #0098a1;
        border-radius: 50%;
        text-align: center;
        font-size: 7.81px;
        line-height: 11.81px;
        position: absolute;
        top: -1px;
        right: -1px;
        color: #fff;
        font-weight: 700;
    }

    header a.logo.dxconradlogo {
        max-width: 170px;
        padding-top: 8px;
    }

    .mmactive header .cart-block {
        right: -100%;
    }

    .trusted-shops {
        display: none;
    }

    main {
        margin-top: 100px;
    }

    .banner.imagefill {
        height: 317px;
    }

    .dropzone-ctn.imagefill {
        height: 317px;
    }

    /*h2 { font-size: 38px; line-height: 42px; padding-bottom: 5px; }*/
    .green-btn {
        padding: 13px 13px;
    }

    .how-works {
        padding: 30px 0 40px;
    }

    .how-works .info {
        padding: 0 30px 25px;
    }

    h2.main-title {
        font-size: 24px;
        line-height: 29px;
    }

    h2 {
        font-size: 25px;
        padding-bottom: 32px;
        line-height: 32px;
    }

    h3 {
        font-size: 19px;
        line-height: 25px;
        padding-bottom: 0;
        margin-bottom: 25px;
    }

    .how-works .detail-block i {
        margin-bottom: 15px;
    }

    .how-works .btn-block {
        margin-top: 30px;
    }

    .how-works .detail-block a {
        letter-spacing: 0;
    }

    .white-btn {
        font-size: 12px;
        line-height: 16px;
    }

    .already-done ul {
        margin-top: 25px !important;
    }

    .already-done .info-block p {
        padding: 0 10px;
    }

    .questions {
        padding: 30px 0 35px;
    }

    .questions ul {
        margin: 20px 0 0 0;
    }

    .questions ul a i {
        height: 55px;
        width: 55px;
    }

    .questions ul a {
        font-size: 18px;
        line-height: 22px;
    }

    .questions ul a span {
        margin: 7px 0 0 0;
    }

    .suitable-method .info-block {
        position: inherit;
        left: 0;
        width: auto;
        top: 0;
        margin: 7px 15px 0;
    }

    .suitable-method .info-block h2.main-title {
        padding-bottom: 13px;
    }

    .suitable-method .info-block h3 {
        padding: 0 15px;
        line-height: 22px;
    }

    .suitable-method {
        background: #e8e8e8;
        padding: 0 0 22px 0;
        text-align: center;
    }

    .material-block .right-inner-block {
        margin: 0 15px 0;
    }

    .material-block {
        padding: 0 0 40px 0;
    }

    .material-block {
        text-align: center;
    }

    .material-block .right-inner-block {
        margin: -45px 15px 0
    }

    .material-block h2.main-title {
        padding: 0 10px 17px;
    }

    .material-block .material-inner {
        margin-bottom: 31px;
    }

    .material-block .material-inner a {
        letter-spacing: 0;
    }

    .questions p {
        padding: 0 50px;
    }

    .questions h2.main-title {
        padding-bottom: 13px;
    }

    footer .footer-bottom .social-icons .social-div li:last-child {
        margin-right: 0;
    }

    footer .footer-bottom .signup-link button {
        letter-spacing: 0;
    }

    footer .footer-top .footer-links.payment-methods h3 {
        padding-bottom: 10px;
    }

    .detail-page .detail-listing {
        padding: 25px 0 10px;
    }

    .detail-page h2.main-title {
        padding-bottom: 20px;
        font-size: 24px;
        line-height: 29px;
    }

    .detail-page .detail-listing .listing-link {
        margin: 20px 0 30px;
    }

    .detail-page .detail-listing .listing-link li {
        margin-bottom: 12px;
    }

    .detail-page .product-details {
        padding: 25px 0 10px;
    }

    .detail-page .product-details .tech-list .left-img {
        height: 180px;
    }

    .detail-page .product-details .tech-list {
        margin-bottom: 20px;
    }

    .detail-page .product-details .tech-list p {
        margin-bottom: 10px;
    }

    .detail-page .product-details .tech-list:last-child {
        margin-bottom: 25px;
    }

    .detail-page .product-details .full-product-img {
        height: 325px;
        margin: 24px 0;
    }

    .detail-page .product-details .thumbnail-img {
        height: 170px;
        margin-bottom: 15px;
    }

    .detail-page .product-details .thumbnail-view {
        margin-bottom: 25px;
    }

    .detail-page .product-details .product-text {
        padding: 30px 0;
    }

    .detail-page .product-details .product-text h3 {
        margin-right: 0;
    }

    .detail-page .product-details .detail-text {
        margin-bottom: 25px;
    }

    footer .footer-bottom .social-icons li a i {
        height: 25px;
        width: 25px;
    }

    /* product-list */
    .product-list li {
        width: 50%;
    }

    .product-section {
        padding: 60px 0;
    }

    .page-heading h1 {
        font-size: 38px;
        line-height: 42px;
        margin-bottom: 10px;
    }

    .page-heading h2 {
        line-height: 30px;
    }

    /* Modul-register */
    .register-col li {
        padding: 0 15px;
    }

    .register-section {
        padding: 55px 0;
    }

    /* News-listing */
    .news-list li {
        width: 50%;
    }

    /* News-details */
    .news-detail {
        padding: 10px 0;
    }

    .news-detail .news-detail-text {
        padding-right: 0;
    }

    .more-news {
        padding: 37px 0 50px
    }

    .more-news h2 {
        font-size: 34px;
        line-height: 38px;
    }

    /* Modul-dates-list */
    .tabs li {
        max-width: 180px;
        height: 70px;
    }

    .appointment-table tr td {
        font-size: 20px;
        line-height: 24px;
    }

    .past-appointments h2 {
        font-size: 34px;
        line-height: 38px;
    }

    .tabs-outer {
        padding: 20px 0 0;
    }

    /* modul-dates-details */
    h2.sub-heading {
        font-size: 34px;
        line-height: 38px;
    }

    .dates-detail-block {
        padding: 0;
    }

    /* Download */
    .download-section .cms-text {
        padding-right: 0;
    }

    /* 3d Slider */
    .cascade-slider_container {
        height: 350px;
    }

    .cascade-slider_nav li a {
        font-size: 18px;
    }

    .cascade-slider_arrow {
        bottom: 20px;
    }

    /* Accodrion */
    .dd-shortcode-dxmaterial2.closed .dx-material-details-wrap {
        padding: 5px 10px;
    }

    .dx-accordion .dx-accordion-title {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 30px 10px 10px;
    }

    .dx-accordion-content {
        padding: 10px;
    }

    .dx-material-desc p .green-btn.download-datasheet-custom {
        padding-left: 60px !important;
    }

    .dx-material-desc p {
        padding-right: 0;
        width: 100%
    }

    /*full width*/
    /* questions-basket  */
    .questions-basket h2.main-title {
        margin-bottom: 0
    }

    .questions .questions-basket ul {
        margin: 20px 0 0 0;
    }

    .dxPersonalOrderNumberTable {
        margin-bottom: 20px;
    }

    /* checkout-address-selection. */
    .address-selection-block .table-col h3.sub-heading {
        margin-bottom: 20px;
    }

    .address-selection-block .col-4 {
        width: 40%;
    }

    .address-selection-block .col-1 {
        width: 50%;
    }

    .address-selection-block .col-2 {
        width: 50%;
    }

    .address-selection-block .col-3 {
        width: 50%;
    }

    .address-selection-block .col-4 {
        width: 50%;
    }

    /* checkout-header-selection. */
    #header .inner-header {
        display: block;
    }

    #header .inner-logo a img {
        width: 120px;
    }

    .small-header #header .inner-logo a img {
        width: 100px;
    }

    #header .header-top.inner-header .header-title span {
        padding-top: 11px;
        font-size: 13px;
    }

    .small-header #header .header-top.inner-header .header-title span {
        padding-top: 11px;
    }

    #header .header-top {
        padding: 10px 0;
    }

    .datencheck-custom-btn {
        padding-left: 50px;
    }

    /* 07-02-2018 ---- Checkout 02 */
    .checkout_new .border_box .address_block address {
        margin-bottom: 25px;
    }

    .checkout_new .border_box .address_block em {
        padding: 0 0 20px 0;
    }

    .checkout_new .border_box {
        padding: 15px 25px 25px;
        margin-bottom: 40px;
    }

    .checkout_new .dxMerchantBasket .inlinebox-bottom .basketSummary, .checkout_new .dxMerchantBasket .inlinebox .basketSummary {
        padding-left: 0%;
    }

    .checkout_new .inlinebox .basketSummary, .checkout_new .dxPersonalOrderNumberTable {
        margin-left: 0px;
    }

    .checkout_new .dxMerchantBasket .inlinebox-bottom .content {
        padding-left: 0;
    }

    .banner .info p {
        font-size: 15px;
        line-height: 20px;
        padding-bottom: 20px;
    }

    .banner .info h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .dropzone-ctn .info p {
        font-size: 15px;
        line-height: 20px;
        padding-bottom: 20px;
    }

    .dropzone-ctn .info h1 {
        font-size: 15px;
        line-height: 32px;
    }

    .how-works h2.main-title {
        font-size: 22px;
        line-height: 25px;
        padding-bottom: 20px;
    }

    .how-works .detail-block h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .project-verification .project-verification-bg, .project-verification .project-verification-bg-new {
        padding: 20px;
    }

    .project-verification .project-verification-bg-new .project-content {
        padding: 45px;
        max-width: 100%;
        background-color: #fff;
        position: relative;
        left: unset;
    }

    .project-verification h2 {
        padding: 0 0 20px 0;
        font-size: 22px;
        line-height: 25px;
    }

    .already-done h2.main-title {
        font-size: 22px;
        line-height: 25px;
    }

    .already-done .info-block p {
        font-size: 15px;
        line-height: 20px;
    }

    .custom-btn.big-btn {
        height: 45px;
        line-height: 35px;
    }

    .material-block .material-inner {
        padding-right: 0;
    }

    .material-block h2 {
        font-size: 22px;
        line-height: 25px;
    }

    .material-block .material-inner h3 {
        font-size: 18px;
        line-height: 22px;
    }

    .material-block img {
        display: inline-block;
    }

    .file-upload-btn {
        height: 40px;
        line-height: 30px;
    }

    .banner .banner-bottom .banner-inner-content {
        background-size: 50px;
        padding: 20px 0 15px 70px;
        margin-left: 15px;
    }

    .banner .banner-bottom h2 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .banner .banner-bottom label {
        font-size: 14px;
        line-height: 18px;
    }

    .dropzone-ctn .dropzone-ctn-bottom .dropzone-ctn-inner-content {
        background-size: 50px;
        padding: 20px 0 15px 70px;
        margin-left: 15px;
    }

    .dropzone-ctn .dropzone-ctn-bottom h2 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .dropzone-ctn .dropzone-ctn-bottom label {
        font-size: 14px;
        line-height: 18px;
    }

    .technical-information h3.content-title {
        padding-bottom: 0;
    }

    .materials-accordion-block {
        padding: 30px 0;
    }

    /*21-02-2018*/
    .dx-landing-nav li a {
        font-size: 12px;
        padding: 5px;
    }

    .informationsmaterial .dx-landing-nav li a {
        font-size: 11px;
    }

    .checkout-btn-custom {
        max-width: 100%;
        float: right;
    }

    .checkout_new .dxMerchantBasket .inlinebox-bottom .order-btn-custom {
        padding-left: 0
    }

    .laser-application-block .right-col {
        padding: 15px 15px 0 15px;
    }

    h3.title {
        font-size: 32px;
    }

    h3.subtitle, h4.subtitle {
        font-size: 22px;
    }

    .cms-image-full img {
        width: 100% !important;
    }

    .embed-responsive {
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 0px;
        top: 0px;
    }
}

@media (max-width: 900px) {
    .already-done ul li {
        display: block;
        margin-right: unset;
    }

    .banner .banner-header {
        height: 80%;
    }

    .dropzone-ctn .dropzone-ctn-header {
        height: 80%;
    }

    .informationsmaterial .dx-landing-nav li a {
        font-size: 10px;
    }

    .informationsmaterial .materialdatenblatt {
        min-height: 215px;
    }
}

@media (max-width: 767px) {
    .upper-header.col-sm-6 {
        margin-bottom: 0px;
    }

    .informationsmaterial .materialdatenblatt {
        min-height: 175px;
    }

    .informationsmaterial .materialdatenblatt {
        min-height: 175px;
    }

    .datencheck-bg p, .datencheck-bg h2 {
        margin-left: unset;
    }

    .col-sm-6 {
        margin-bottom: 20px;
    }

    body #tsbadgeResponsiveTop_db8d3657bdbe440c985ae127463eaad4, div[id^="tsbadgeResponsiveTop"] {
        display: none !important;
    }

    #header {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    }

    .header-top .col-sm-8 {
        float: left !important;
        padding: 0;
    }

    .header-links {
        float: none;
    }

    .header-links li {
        margin: 0 auto;
        width: 20%;
    }

    .header-links li a {
        width: 100%;
        padding: 10px;
    }

    .header-links li span {
        display: none;
    }

    .header-links li.btn-group > a.btn, .header-links li.btn-group-vertical > .btn {
        float: none;
    }

    .search-icon {
        width: 100%;
        top: 3px;
    }

    .header-links li a.search-link {
        width: 100%;
        height: 52px;
    }

    .header-links li a.tag-block em, .header-links li a.cart-block em {
        right: 33%;
    }

    /*.logo{margin:10px 0;}*/
    .header-bottom .navbar {
        margin-top: 52px;
    }

    #mainnav .nav > li > a {
        font-size: 12px;
    }

    #mainnav .navbar-toggle {
        float: right;
        border: 0;
        padding: 0;
        margin: 0;
        border-radius: 0;
    }

    .navbar-toggle .icon-bar {
        height: 7px;
        margin-bottom: 5px;
        width: 45px;
        border-radius: 0;
        background: #4a4a49;
    }

    .header-links li .service-menu-box span {
        display: block;
    }

    .header-links li.service-menu .dropdown-menu li {
        width: 100%;
    }

    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background: transparent;
    }

    .navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar {
        background: #96be0d;
    }

    .languages-menu {
        position: static;
    }

    .languages-menu .dropdown-menu-right {
        left: 0;
        right: 0;
        width: 100%;
    }

    .languages-menu .dropdown-menu-right li a {
        font-size: 16px;
        font-weight: 400;
        padding: 15px 50px;
    }

    .languages-menu .dropdown-menu li a img {
        left: 30px;
        top: 18px;
    }

    .search-box {
        height: 53px;
        width: 196px;
        right: auto;
        left: 80%;
        padding: 10px 20px;
        z-index: 2;
    }

    .search {
        height: 22px;
        width: 140px;
    }

    .header-bottom {
        padding-top: 0;
    }

    .navbar-header {
        padding-bottom: 0;
    }

    #wrapper {
        margin-top: 184px;
    }

    .title {
        font-size: 22px;
        line-height: 24px;
    }

    .contact-block {
        height: auto;
    }

    .contact-links li:nth-child(odd) {
        padding-left: 15px;
        padding-right: 0;
    }

    .contact-links li:nth-child(even) {
        padding-right: 15px;
        padding-left: 0;
    }

    .contact-links li:nth-child(even) .contact-content:after {
        position: absolute;
        content: "";
        right: 0;
        top: 0;
        bottom: 0;
        background: #fff;
        width: 1px;
    }

    .contact-links {
        position: relative;
    }

    .contact-links:after {
        position: absolute;
        content: "";
        background: #fff;
        height: 2px;
        left: 0;
        right: 0;
        top: 50%;
        width: 100%;
        margin-top: 59px;
    }

    .help-contact-block, .company-block, .information-block, .payment-block {
        width: 50%;
        text-align: left;
        margin-bottom: 20px;
        min-height: 170px;
    }

    .payment-block {
        margin-bottom: 20px;
    }

    .information-block .pull-right {
        float: left !important;
    }

    .footer-bottom .copyright {
        padding: 0;
    }

    #footer .social-links li {
        display: inline-block;
        margin: 0 auto;
        width: 16.666%;
    }

    .social-links li a {
        margin: 0 auto;
    }

    .sponser-block {
        float: left !important;
        margin-top: 0;
    }

    .footer-bottom .footer-right {
        float: left;
        width: 100%;
    }

    .footer-bottom .form-group {
        width: 85%;
        margin-bottom: 0;
    }

    .social-links {
        width: 100%;
    }

    .sponser-block li {
        margin-right: 10px;
    }

    .social-links {
        margin: 17px 0;
    }

    .btn-tertiary {
        width: 14%;
        margin-top: 4px;
    }

    .content-block p {
        width: 100%;
    }

    .method-block .inner-image {
        height: 157px;
    }

    .method-inner-content {
        bottom: 0;
    }

    .method-inner-content h3 {
        float: none;
        font-size: 16px;
        line-height: 21px;
        margin: 5px 0 0;
    }

    .method-inner-content a {
        float: none;
        margin: 0 auto;
        display: block;
    }

    .method-inner-content a img {
        display: block;
        margin: 0 auto;
    }

    .left-block, .right-block {
        padding: 0;
    }

    .dropzone {
        border: 0;
        min-height: inherit;
    }

    .dropzone em {
        text-transform: uppercase;
        font-size: 24px;
        line-height: 28px;
        color: #fff;
        font-style: normal;
        font-weight: 600;
    }

    .dropzone em.visible-xs {
        display: inline-block !important;
    }

    .upload-block img {
        display: inline-block !important;
        position: relative;
        top: -5px;
        left: -15px;
        width: 35px;
        height: 31px;
    }

    .dropzone .dz-message {
        margin: 0;
    }

    .flexslider {
        min-height: inherit;
    }

    .flexslider .slides img {
        min-height: inherit;
    }

    .flex-control-paging li a {
        width: 8px;
        height: 8px;
    }

    #mainnav {
        margin-top: -77px;
    }

    #mainnav .navbar-collapse.navbar-ex1-collapse.collapse.in ul li {
        border: 0;
    }

    #mainnav .navbar-collapse {
        overflow-x: hidden;
        border-top: 1px solid #96be0d;
        margin-top: 10px;
    }

    #mainnav .navbar-collapse .nav i {
        position: absolute;
        right: 11px;
        top: 2px;
        font-family: 'FontAwesome';
        font-size: 30px;
        color: #4a4a49;
    }

    #mainnav .nav {
        float: right;
        margin: 0;
        padding: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .header-bottom .navbar-nav li em {
        display: inline-block !important;
        width: 5%;
        margin-right: 5px;
    }

    .header-bottom .navbar-nav li em img {
        width: 28px;
    }

    .header-bottom .navbar-nav li a {
        padding: 11px 15px;
        line-height: 13px;
        border-bottom: 1px solid #96be0d;;
    }

    .header-bottom .navbar-nav li.active a {
        padding: 7px 15px;
    }

    .header-bottom .navbar-nav li a::after {
        background: none;
    }

    #dropzone {
        padding: 0;
    }

    .right-block {
        margin-bottom: 6px;
    }

    .service-block {
        padding: 28px 0 30px;
    }

    .method-block {
        padding: 27px 0 20px;
    }

    .method-block .method-wrap {
        padding-top: 13px;
    }

    .contact-block {
        margin-top: 25px;
    }

    #footer .footer-bottom .copyright {
        padding-top: 5px;
        font-size: 14px;
        line-height: 16px;
    }

    .sponser-block li {
        margin-right: 6px;
    }

    .social-links {
        margin: 17px 0 21px;
    }

    .footer-top {
        padding: 28px 0 25px;
    }

    .footer-logo {
        margin-top: 11px;
    }

    .triangle-block {
        margin-right: 37px;
        margin-bottom: 6px !important;
    }

    .mob-triangle {
        clear: both;
    }

    .mob-triangle {
        margin-left: 0;
    }

    .second-block {
        margin-right: 0;
        margin-left: -131px;
        margin-top: 14px;
    }

    .triangle-block {
        width: 212px;
    }

    .sixth-block {
        margin-right: 0;
        margin-left: -132px;
    }

    .fifth-block {
        margin-top: 16px;
    }

    .fourth-block {
        margin-right: 0;
        margin-left: -131px;
        margin-top: 13px;
        left: 0;
    }

    .credentials-inner-block {
        width: 330px;
        margin: 0 auto;
        display: block;
    }

    #video-block1, #video-block2, #video-block3, #video-block4 {
        width: 98%;
    }

    .header-bottom {
        box-shadow: none;
    }

    .menu-open {
        background: #fff;
    }

    .dropzone .dz-message {
        top: 0;
    }

    .service-image {
        height: 165px;
    }

    .work-block .col-sm-5 {
        width: 100%;
    }

    .works-content-block {
        min-height: inherit;
    }

    .works-inner-block {
        padding: 25px 20px;
    }

    .works-content-block p {
        width: 75%;
        margin: 0;
        padding: 0;
    }

    .content-block .works-content-block span {
        padding: 0;
    }

    .works-inner-block .btn-tertiary {
        margin-top: 15px;
        font-size: 12px;
    }

    .flex-control-nav {
        bottom: 0;
    }

    .work-block .col-sm-7 {
        width: 100%;
    }

    .mobile-accordion .title-block {
        padding: 8px 20px;
        position: relative;
    }

    .mobile-accordion .title-block h4 {
        font-size: 20px;
        line-height: 24px;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        padding: 0 40px 0 0;
        margin: 0;
    }

    .mobile-accordion .title-block em {
        position: absolute;
        right: 20px;
        top: 8px;
        display: inline-block;
    }

    .mobile-accordion .title-block em img {
        width: 24px;
        height: 15px;
    }

    .mobile-accordion .title-block em .roll-over {
        opacity: 1;
        display: none;
    }

    .mobile-accordion ul li {
        margin-bottom: 3px;
        cursor: pointer;
    }

    .mobile-accordion ul li:last-child {
        margin-bottom: 0;
    }

    .mobile-accordion ul li.mb-open .title-block em .roll-over {
        display: block;
    }

    .mobile-accordion ul li.mb-open .title-block em .normal {
        display: none;
        opacity: 1;
    }

    .mobile-accordion ul li.mb-open .title-block em {
        top: 12px;
    }

    .mobile-accordion .mb-content-block {
        padding: 25px 15px 31px;
    }

    .mobile-accordion .mb-content-block p {
        color: #fff;
        font-weight: 400;
        padding-bottom: 0;
        margin-bottom: 0;
        padding-top: 17px;
    }

    .mobile-accordion .mb-content-block img {
        margin: 0 auto;
    }

    .mobile-accordion ul li:nth-child(1).mb-open .title-block {
        border-bottom: 1px solid #80ccd0;
    }

    .mobile-accordion ul li:nth-child(2).mb-open .title-block {
        border-bottom: 1px solid #75b7bb;
    }

    .mobile-accordion ul li:nth-child(3).mb-open .title-block {
        border-bottom: 1px solid #609b9e;
    }

    .mobile-accordion ul li:nth-child(4).mb-open .title-block {
        border-bottom: 1px solid #649496;
    }

    .mobile-accordion ul li:nth-child(5).mb-open .title-block {
        border-bottom: 1px solid #628889;
    }

    .mobile-accordion ul li:nth-child(1) {
        background: #0098a1;
    }

    .mobile-accordion ul li:nth-child(2) {
        background: #0f888f;
    }

    .mobile-accordion ul li:nth-child(3) {
        background: #1e797e;
    }

    .mobile-accordion ul li:nth-child(4) {
        background: #2c696c;
    }

    .mobile-accordion ul li:nth-child(5) {
        background: #3b5a5b;
    }

    .mobile-accordion .mb-content-block h5 {
        color: #ffffff;
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 0;
        text-align: center;
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 25px;
    }

    .mobile-accordion .mb-content-block p a {
        color: #fff;
        text-decoration: underline;
    }

    /* vidhi */
    .triangle-content-block span {
        font-size: 12px;
        line-height: 15px;
        padding-bottom: 5px;
    }

    .triangle-content-block em {
        font-size: 12px;
        line-height: 15px;
    }

    .up {
        bottom: 10px;
    }

    .down {
        top: 10px;
    }

    /* cart */
    .list-unstyled {
        margin-bottom: 20px;
    }

    .list-unstyled .cartitem-block {
        border-top: 1px solid #96be0d;
        padding: 20px 0;
    }

    .list-unstyled .cartitem-block:last-child {
        border-bottom: 1px solid #96be0d;
    }

    .list-unstyled .cartitem-block a.img-block {
        display: inline-block;
        float: left;
    }

    .list-unstyled .cartitem-block .img-outer .checkbox.checkbox-main {
        float: left;
        padding: 25px 10px 0;
    }

    .list-unstyled .cartitem-block a.img-block img {
        width: 100%;
    }

    .list-unstyled span.ratio {
        color: #96be0d;
        font-size: 12px;
        line-height: 16px;
        font-weight: 600;
        display: block;
        padding-top: 10px;
    }

    .order-block .list-unstyled span.ratio {
        color: #4a4a49;
        font-weight: 400;
        padding-top: 15px;
        font-size: 12px;
        line-height: 16px;
        display: block;
    }

    .basketItemDesc h6 {
        margin-top: 0;
    }

    .totalPrice span {
        font-size: 24px;
        line-height: 28px;
        display: inline-block;
    }

    .totalPrice em {
        display: inline-block;
    }

    .toggle-actions i {
        color: #96be0d;
        font-size: 20px;
        line-height: 24px;
    }

    .toggable {
        display: none;
        padding-top: 10px;
    }

    .inner-wrap {
        padding: 40px 0;
    }

    .list-unstyled .cartitem-block .quantity {
        text-align: left;
    }

    /* News page */
    .newsletter-block .form-group {
        margin-bottom: 15px;
    }

    .newsletter-block .form-group label.email-label {
        font-size: 18px;
        line-height: 22px;
    }

    .news-content {
        margin-bottom: 20px;
    }

    .checkbox label {
        width: 100%;
    }

    .news-content a {
        font-size: 16px;
        line-height: 20px;
    }

    .newsletter-block form {
        max-width: 100%;
    }

    .newsletter-block {
        padding: 30px 15px 30px;
        margin: 10px 0;
    }

    /* News Detail page */
    .news-detail-block {
        padding: 10px 0;
    }

    .news-detail-block h4 {
        margin: 25px 0 3px;
        font-size: 16px;
        line-height: 20px;
    }

    .newsletter-block .form-group {
        width: 100%;
        max-width: inherit;
    }

    /* Impressum */
    .button-block {
        padding-bottom: 20px;
    }

    .button-block li {
        width: 100%;
        float: none;
        padding-right: 0;
        padding-bottom: 10px;
    }

    .button-block li:last-child {
        padding-bottom: 0;
    }

    .detail-wrap {
        padding-bottom: 10px;
    }

    .detail-block {
        padding: 30px 0 20px;
    }

    /* Login */
    .login-title-block {
        padding: 35px 0 20px;
    }

    .header-top.inner-header .inner-logo {
        width: 22%;
    }

    .login-block {
        margin-bottom: 20px;
    }

    .login-heading-block {
        margin: 30px 0;
    }

    .checkoutsteps li {
        width: 27%;
        margin-bottom: 10px;
    }

    .checkoutsteps li:nth-child(even) {
        padding-right: 0;
    }

    .checkoutsteps li:nth-child(even):after {
        display: none;
    }

    .checkoutsteps li:nth-child(odd):before {
        display: none;
    }

    .footer-links li a {
        font-size: 12px;
        line-height: 16px;
    }

    .title-inner {
        font-size: 16px;
        line-height: 20px;
    }

    .checkout-page .inner-wrap {
        padding: 37px 0 0;
    }

    .login-title-block {
        padding: 25px 0 10px;
    }

    .login {
        padding-right: 15px;
    }

    .register {
        padding-left: 15px;
    }

    .login-heading-block h2.title {
        font-size: 30px;
        line-height: 34px;
    }

    .accountLoginView .login-heading-block p {
        font-size: 15px;
        line-height: 20px;
    }

    .header-top.inner-header .header-logo {
        width: 17%;
    }

    .bottom-block .btn-main {
        width: auto;
    }

    .form-wrap {
        padding: 0 0 32px;
    }

    .banner-content {
        margin-top: -18px;
    }

    .banner-content span {
        font-size: 30px;
        line-height: 36px;
    }

    .dropzone-ctn-content {
        margin-top: -18px;
    }

    .dropzone-ctn-content span {
        font-size: 30px;
        line-height: 36px;
    }

    /* Order Page */
    .address-wrap li {
        width: 33.33%;
    }

    .order-block .lineBox {
        padding-bottom: 0;
    }

    .order-block .well .btn-main {
        max-width: 230px;
        font-size: 12px;
        line-height: 16px;
        padding: 7px 10px;
    }

    .order-block #basketVoucher .checkbox-main {
        margin: 0;
    }

    .order-block #basketVoucher .checkbox-main.checkbox label {
        font-size: 12px;
        line-height: 16px;
    }

    /* Upload Page */
    .upload-main-block {
        padding: 40px 0 15px;
    }

    .upload-main-block #dropzone {
        padding: 7px;
        margin: 35px 0;
    }

    .upload-main-block .dropzone {
        border: 2px dashed #ffffff;
        padding: 50px 0;
    }

    .upload-main-block #dropzone img {
        height: 150px;
        width: 190px;
    }

    .upload-main-block .dropzone .radio-unit {
        padding: 15px 0;
        max-width: 195px;
    }

    .upload-main-block .dropzone .split-input label {
        font-size: 18px;
        line-height: 22px;
    }

    .btn-upload {
        padding: 10px 15px;
        font-size: 18px;
        line-height: 22px;
    }

    /* Payment Page */
    .payment a {
        width: 35%;
        margin-top: 5px;
    }

    .payment-content-block .payment-title {
        width: 80%;
    }

    .service-image {
        height: 165px;
    }

    .center-image {
        height: 157px;
    }

    .center-image img {
        width: auto;
        max-width: inherit;
    }

    /**/
    .edit-table.basketcontents_table .table-bordered tr td:before {
        content: attr(aria-label);
        float: left;
        font-weight: 600;
        position: absolute;
        left: 15px;
    }

    .edit-table.basketcontents_table .table-bordered thead tr td {
        display: none;
    }

    .edit-table.basketcontents_table .table-bordered thead tr td:last-child {
        display: block;
    }

    .edit-table.basketcontents_table .table-bordered tr td {
        text-align: right;
        display: block;
        border-bottom: 1px solid #dddddd;
        padding-left: 85px;
        width: 100%
    }

    .edit-table.basketcontents_table .table-bordered tr td:last-child {
        border-bottom: 0;
    }

    .edit-table.basketcontents_table .table-bordered tr td div {
        padding-bottom: 0;
    }

    .edit-table.basketcontents_table .table-bordered tr td address {
        margin-bottom: 0;
    }

    .edit-table.basketcontents_table .table-bordered tr td div label {
        position: static;
        margin-left: 6px;
    }

    .edit-table.basketcontents_table .table-bordered tr td div:last-child label {
        margin-bottom: 0;
    }

    .edit-table.basketcontents_table.edit-table .table-bordered tr td.detail-btn {
        padding: 10px 0 20px;
    }

    .edit-table.basketcontents_table.edit-table .table-bordered tr td.detail-btn .btn-grey {
        display: block;
        text-align: center;
    }

    .footer-top ul.footer-collapse {
        margin-left: -15px;
        margin-right: -15px;
        padding: 20px 0;
    }

    .footer-top ul.footer-collapse li a {
        text-align: left;
    }

    .reorder-list .cartitem-block span.ratio {
        color: #575756;
        font-weight: 400;
    }

    .revoucher-box .basketSummary .table-bordered tr:last-child th, .revoucher-box .basketSummary .table-bordered tr:last-child td {
        padding: 10px;
        border-top: 1px solid #96be0d;
    }

    .revoucher-box .basketSummary .table-bordered tr.pdbottom th, .revoucher-box .basketSummary .table-bordered tr.pdbottom td {
        padding-bottom: 10px;
    }

    .revoucher-box .maturity-block {
        padding: 5px 10px 0;
    }

    .revoucher-box .basketSummary .table-bordered {
        border-top: 0;
    }

    .linking-block {
        width: 30%;
    }

    .inner-page .inner-wrap, .inner-wrap {
        padding-bottom: 0;
    }

    .reorder-list .list-unstyled .cartitem-block:first-child {
        border-top: 0;
    }

    .revoucher-box .basketSummary .table-responsive {
        padding-bottom: 10px;
    }

    .list-unstyled-top {
        padding: 0px 0 5px;
        border-bottom: 1px solid #96be0d;
    }

    .list-unstyled-top li {
        padding-bottom: 3px;
    }

    .list-unstyled-top span {
        display: block;
        font-size: 12px;
        line-height: 16px;
        color: #4a4a49;
        font-weight: 700;
    }

    .list-unstyled-top span em {
        display: block;
        font-weight: 400;
    }

    .returning-list .list-unstyled .date-block {
        padding-top: 40px;
    }

    .returning-list .list-unstyled .basketItemDesc .checkbox.checkbox-main label {
        color: #96be0d;
        display: block;
        font-size: 14px;
        font-weight: 600;
        line-height: 18px;
        padding-left: 0;
    }

    .returning-list .list-unstyled .basketItemDesc .checkbox.checkbox-main label input.checkbox {
        top: -36px;
        left: 20px;
    }

    .returning-list .list-unstyled .item-detail {
        padding: 30px 0 0;
    }

    .returning-list .list-unstyled .item-detail span {
        display: block;
        font-size: 14px;
        line-height: 18px;
        color: #4a4a49;
        font-weight: 700;
        padding-bottom: 20px;
    }

    .returning-list .list-unstyled .item-detail span:last-child {
        padding-bottom: 0;
    }

    .returning-list .list-unstyled .item-detail span em {
        display: block;
        font-weight: 400;
    }

    .returning-list .btn-return, .returning-list .btn-secondary {
        float: none;
        width: 100%;
        margin-top: 30px;
    }

    .returning-list .list-unstyled .cartitem-block .quantity {
        padding-top: 35px;
    }

    .returning-list .list-unstyled .basketItemDesc h6 {
        margin: 0;
        padding: 0;
    }

    .returning-list .list-unstyled .basketItemDesc .checkbox.checkbox-main {
        margin: 0;
    }

    .returning-list .list-unstyled .cartitem-block .table-dropdown {
        margin: 15px 0 0;
    }

    .returning-list .list-unstyled .cartitem-block .table-dropdown .form-control {
        width: 460px;
    }

    .shopping-btn-block { /* margin-top:0; */
        padding: 0 0 30px;
    }

    .project-thumb .checkbox.checkbox-main, .project-thumb .img-block, .project-thumb .project-detail {
        float: left;
    }

    .project-thumb {
        border: 1px solid #dddddd;
        padding: 15px;
        border-top: 0;
    }

    .project-thumb .checkbox.checkbox-main {
        width: 6%;
        padding-top: 28px;
    }

    .project-thumb .img-block {
        width: 24%;
    }

    .project-thumb .project-detail {
        width: 69%;
    }

    .project-thumb .project-detail h6 {
        font-size: 16px;
        line-height: 20px;
        color: #96be0d;
        font-weight: 600;
    }

    .project-thumb .project-detail ul li {
        float: left;
        padding-right: 10px;
        font-size: 13px;
        line-height: 17px;
    }

    .project-thumb .project-detail ul li:last-child {
        padding-right: 0;
    }

    .project-thumb .project-detail ul li img {
        margin-right: 5px;
    }

    .project-box .price {
        padding-top: 15px;
    }

    .project-box .price em {
        font-size: 12px;
        line-height: 16px;
        color: #575756;
        font-weight: 400;
        text-transform: uppercase;
        display: block;
    }

    .project-box .price em.per {
        display: inline;
    }

    .project-box .price span.priceparameterspan {
        font-size: 15px;
        line-height: 16px;
        text-transform: lowercase;
        font-weight: 400;
        color: #333;
    }

    .project-box .price span {
        font-size: 30px;
        line-height: 34px;
        color: #96be0d;
        font-weight: 600;
        display: inline-block;
    }

    .project-box .btn-secondary {
        display: block;
        width: 100%;
        margin: 15px 0;
    }

    .project-box .form-group {
        position: relative;
        margin-bottom: 0;
    }

    .project-listing {
        margin-bottom: 20px;
    }

    .project-name-block h5 {
        font-size: 16px;
        line-height: 20px;
    }

    .component-tbl tbody tr td {
        padding: 3px 15px 3px 3px;
    }

    .config-page .list-unstyled .cartitem-block span.ratio {
        color: #010100;
    }

    .config-page .list-unstyled .cartitem-block span.config-val {
        color: #96be0d;
        display: block;
        font-size: 40px;
        font-weight: 600;
        line-height: 44px;
        word-wrap: break-word;
    }

    .config-page .component-tbl tbody tr td:first-child em {
        width: 120px;
    }

    .config-page .component-tbl tbody tr td {
        padding: 3px 20px 3px 3px;
    }

    #dropzone {
        padding: 0;
        overflow: hidden;
    }

    .dropzone .upload-block {
        padding-top: 0;
    }

    .order-table.basketcontents_table .table-bordered tr td.status-bar {
        width: auto;
    }

    .download-sm-right h3 {
        font-size: 18px;
    }

    .download-sm-right h5 {
        font-size: 12px;
    }

    .download-filter .col-sm-4 {
        width: auto;
    }

    .method-block .dx-section-padding {
        padding-top: 10px !important;
        padding-bottom: 0px;
    }

    .method-block .col-sm-6 {
        margin-bottom: 20px;
    }

    .contact-outer-block {
        padding-top: 30px;
    }

    .contact-outer-block .title {
        padding-bottom: 0;
    }

    .footer-right .btn-tertiary {
        width: 100%;
    }

    .payment-block > div {
        padding: 0;
    }

    .social-links-wrap {
        position: fixed;
        bottom: 0;
        z-index: 2;
        background: #4a4a49;
    }

    .social-links {
        margin: 10px 0;
    }

    .dx-material-desc h3 {
        font-size: 16px;
        padding-bottom: 10px;
        line-height: 22px;
    }

    .dx-datasheet-download {
        display: block;
        width: 100%;
    }

    .dx-material-title {
        padding-right: 30px;
        font-size: 16px;
    }

    .dx-material-title img {
        right: 0;
    }

    .dx-accordion-content {
        padding-top: 5px;
    }

    .dx-history {
        padding-bottom: 40px;
    }

    .dd-shortcode-dxkarriere .dx-karriere-download {
        bottom: 0;
    }

    .dd-shortcode-text ul li {
        vertical-align: sub;
    }

    .news-inner-block > div:not(:last-child) {
        margin-bottom: 20px !important;
    }

    .payment .ssl {
        display: block;
        float: none;
        width: 100% !important;
    }

    .thankyou_buttons .thankyou_buttons_right {
        margin-bottom: 10px;
        width: 100%;
    }

    .dd-shortcode-dxtopmenu li {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 0;
    }

    .contact-links li a:hover:after {
        display: none;
    }

    .header-bottom .navbar-nav li.active a,
    .header-bottom .navbar-nav li.active a:hover,
    .header-bottom .navbar-nav li.active a:focus {
        text-align: left;
    }

    .showLogin {
        position: static;
    }

    .showLogin > ul {
        left: 0 !important;
    }

    .header-links .flyoutBox ul li a {
        font-size: 16px;
        font-weight: 400;
        padding: 10px 20px;
    }

    /* dealer-info-page */
    .banner-dealer .banner-dealer-logo {
        width: 90px;
    }

    .dropzone-ctn-dealer .dropzone-ctn-dealer-logo {
        width: 90px;
    }

    .dealer-info h3.title-h3 {
        font-size: 18px;
        padding-bottom: 15px;
    }

    .dealer-information-block .right-contact-block h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .dealer-information-block .right-contact-block p {
        margin-bottom: 5px;
    }

    .dealer-information-block .right-contact-block .phone-content {
        margin-bottom: 5px;
    }

    .dealer-information-block .right-contact-block .info-link {
        margin-bottom: 10px;
    }

    .dealer-information-block .right-contact-block {
        padding: 15px;
    }

    .links-block li {
        width: 32.1%;
    }

    .links-block {
        margin-bottom: 10px;
    }

    .contact-dealer-block .dealer-form .smaller-block {
        max-width: 100%;
    }

    .contact-dealer-block .form-group .half-dropdown {
        width: 100%;
    }

    .contact-dealer-block .dealer-form .maximum-block {
        max-width: 100%;
    }

    .contact-dealer-block .dealer-form .maximum-block .half-block {
        width: 100%;
        margin-right: 0;
    }

    .contact-dealer-block .dealer-form .maximum-block .half-block.house-number {
        width: 100%;
    }

    .contact-dealer-block .dealer-form .larger-block {
        max-width: 100%;
    }

    .contact-dealer-block .dealer-form .larger-block .plz-block {
        width: 100%;
    }

    .contact-dealer-block .dealer-form .larger-block .half-block {
        width: 100%;
    }

    .contact-dealer-block .dealer-form .contact-dealer {
        max-width: 100%;
    }

    .contact-dealer-block .dealer-form .contact-dealer .half-block {
        width: 100%;
        margin-right: 0;
    }

    .contact-dealer-block .form-group .half-dropdown {
        margin-bottom: 10px;
    }

    .contact-dealer-block .form-group .half-dropdown:last-child {
        margin-bottom: 0;
    }

    .contact-dealer-block .dealer-form .maximum-block .half-block {
        margin-bottom: 10px;
    }

    .contact-dealer-block .dealer-form .maximum-block .half-block:last-child {
        margin-bottom: 0;
    }

    .contact-dealer-block .dealer-form .larger-block .plz-block {
        margin-bottom: 10px;
    }

    .contact-dealer-block .dealer-form .contact-dealer .half-block {
        margin-bottom: 10px;
    }

    .contact-dealer-block .dealer-form .contact-dealer .half-block:last-child {
        margin-bottom: 0;
    }

    .contact-dealer-block .dealer-form .larger-block .half-block {
        margin-bottom: 10px;
    }

    .contact-dealer-block .dealer-form .larger-block .half-block:last-child {
        margin-bottom: 0;
    }

    .contact-dealer-block .dealer-form .textarea-block .form-group {
        max-width: 100%;
    }

    .contact-dealer-block .dealer-form .textarea-block textarea {
        height: 80px;
    }

    .contact-dealer-block .dealer-form .captcha-block span {
        margin-bottom: 25px;
    }

    /* 30-10-2017 */
    .btn-inner.cart-btn {
        width: 100%;
        margin: 5px 0;
    }

    #layer_basketnotes .inner, #layer_deliveryselection .inner {
        max-width: 260px;
        height: auto !important;
        left: 50% !important;
        top: -305px !important;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .dxAdditionalAddressesContainer .dxAddressBlock {
        height: auto !important;
    }

    /* 3 nov 2017 */
    .top-banner {
        background: #e8e8e8;
        padding: 0 0 0px;
    }

    .top-banner .banner .info {
        position: inherit;
        top: 50px;
        left: 15px;
        width: auto;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
    }

    .top-banner .container {
        padding: 0;
    }

    .project-verification .project-content {
        padding: 15px;
    }

    .banner .info p {
        font-size: 14px;
        line-height: 18px;
    }

    .top-dropzone-ctn {
        background: #e8e8e8;
        padding: 0 0 0px;
    }

    .top-dropzone-ctn .dropzone-ctn .info {
        position: inherit;
        top: 10px;
        left: 15px;
        width: auto;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
    }

    .top-dropzone-ctn .container {
        padding: 0;
    }

    .project-verification .project-content {
        padding: 15px;
    }

    .dropzone-ctn .info p {
        font-size: 14px;
        line-height: 18px;
    }

    h2.main-title {
        font-size: 22px;
        line-height: 25px;
        padding: 0 40px 3px;
        letter-spacing: 0.3px;
    }

    .how-works .info {
        line-height: 19px;
        padding: 0 22px 22px;
    }

    .how-works .detail-block i img {
        max-width: 51px;
    }

    .how-works .detail-block {
        margin-bottom: 25px;
    }

    .how-works .btn-block {
        margin-top: 4px;
    }

    .already-done .banner img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

    .already-done .dropzone-ctn img {
        height: auto;
        width: 100%;
    }

    .already-done h2.main-title {
        padding: 0 40px 16px;
    }

    .already-done .custom-btn.big-btn {
        width: auto;
    }

    .questions {
        padding: 30px 0 10px;
    }

    .already-done ul li a {
        width: 260px;
    }

    .questions ul li {
        width: 50%;
        margin-bottom: 33px;
    }

    .questions ul {
        margin: 21px 0 0 0;
    }

    .questions ul a i {
        height: 40px;
        width: 40px;
    }

    .questions ul a span {
        font-size: 16px;
        line-height: 20px;
    }

    footer .footer-outer {
        margin: 0;
    }

    footer .footer-top .footer-links.payment-methods ul li {
        margin: 0 10px 10px 0;
    }

    footer .footer-bottom .signup-link {
        text-align: left;
    }

    footer .footer-bottom .signup-link button {
        margin: 40px 0 0 0;
        letter-spacing: 0.1px;
    }

    footer .footer-top .footer-links h3 {
        line-height: 15px;
        padding-bottom: 0;
        margin-bottom: 10px;
    }

    footer .footer-top .footer-links li a {
        font-size: 13px;
        line-height: 17px;
    }

    footer .footer-top {
        padding: 28px 0 0;
    }

    footer .footer-top .footer-links li {
        margin-bottom: 2px;
    }

    .detail-page .product-details .img-block {
        position: inherit;
    }

    .detail-page .product-details .img-block img {
        margin: 0 auto;
    }

    .detail-page h2.main-title {
        font-size: 22px;
        line-height: 26px;
        padding: 0 0 15px 0;
        letter-spacing: -0.4px;
    }

    .detail-page .detail-listing .listing-link {
        margin: 15px 0 22px;
    }

    .detail-page .detail-listing .listing-link li {
        margin-bottom: 10px;
    }

    .detail-page .product-details {
        padding: 20px 0 2px;
    }

    .detail-page .product-details h3.section-title {
        padding: 25px 0 0px 0;
    }

    .detail-page .product-details .product-text {
        padding: 5px 0 20px;
    }

    .detail-page .product-details .tech-list .left-img {
        height: auto;
        margin-bottom: 10px;
        position: static !important;
        overflow: auto !important;
    }

    .detail-page .product-details .tech-list .left-img img {
        position: static !important;
        height: auto !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
    }

    .detail-page .product-details .tech-list p {
        margin-bottom: 7px;
    }

    .detail-page .product-details .tech-list {
        margin-bottom: 30px;
    }

    .detail-page .product-details .tech-list:last-child {
        margin-bottom: 30px;
    }

    .detail-page .product-details .detail-text {
        margin-bottom: 20px;
    }

    .detail-page .product-details .full-product-img {
        height: 225px;
        margin: 19px 0;
    }

    .detail-page .product-details .thumbnail-img {
        height: auto;
        margin-bottom: 10px;
        position: static !important;
        overflow: auto !important;
    }

    .detail-page .product-details .thumbnail-img img {
        position: static !important;
        height: auto !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
    }

    .detail-page .product-details .thumbnail-view {
        margin-bottom: 30px;
        height: auto !important;
    }

    .detail-page .product-details .thumbnail-view p {
        margin-bottom: 7px;
        height: auto !important;
    }

    .already-done ul li {
        margin-right: 0 !important;
    }

    .detail-page .detail-listing {
        padding: 25px 0 0;
    }

    .detail-page .already-done ul li {
        margin-bottom: 10px;
        display: block
    }

    .detail-page .already-done ul li a {
        width: 290px;
    }

    .detail-page .already-done ul li:last-child {
        margin-bottom: 0;
    }

    .detail-page .product-details .pull-right {
        float: none !important;
    }

    /* product-list */
    .page-heading h1 {
        padding: 0;
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    .page-heading h2 {
        font-size: 15px;
        line-height: 22px;
    }

    .product-section {
        padding: 30px 0 0;
    }

    .product-list label {
        font-size: 15px;
        padding: 10px;
    }

    /* Modul-register */
    .register-section {
        padding: 50px 0;
    }

    /* news-listing */
    .pagination-outer {
        padding: 20px 0 0;
    }

    .news-section {
        padding: 30px 0;
    }

    .list-view li a {
        font-size: 14px;
        padding: 5px;
    }

    .news-list .news-text {
        padding: 20px;
    }

    .news-list .news-text h3 {
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 5px;
    }

    /* news-details */
    .news-detail {
        padding: 10px 0 30px;
    }

    .news-detail .page-heading {
        margin-top: 30px;
    }

    .news-detail .news-detail-text p:last-child {
        margin-top: 0;
    }

    .more-news h2 {
        font-size: 30px;
        line-height: 34px;
        padding-bottom: 15px;
    }

    .more-news {
        padding: 30px 0 0;
    }

    /* Modul-dates-list */
    .tabs {
        display: none;
    }

    .tab_drawer_heading {
        border: 1px solid #cccccc;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .d_active {
        color: #FFf;
        background: #0098a1;
        border-bottom: none;
    }

    .appointment-table tr td {
        display: block;
        width: 100% !important;
        border: none;
    }

    .appointment-table tr td:first-child {
        padding-top: 20px;
    }

    .appointment-table tr td:last-child {
        text-align: left;
        border-bottom: 1px solid #cccccc;
        padding-bottom: 20px;
    }

    .tabs-outer {
        border: none;
    }

    .tab_content {
        border: 1px solid #cccccc;
        margin-bottom: 10px;
        border-bottom: none;
    }

    .appointment-table > thead > tr > th, .appointment-table > tbody > tr > th, .appointment-table > tfoot > tr > th, .appointment-table > thead > tr > td, .appointment-table > tbody > tr > td, .appointment-table > tfoot > tr > td {
        border: none;
        padding: 5px 20px;
    }

    .appointment-table tr td {
        font-size: 18px;
        line-height: 22px;
    }

    .appointment-table .green-btn {
        max-width: 140px;
    }

    .past-appointments {
        padding: 0 0 50px;
    }

    .past-appointments h2 {
        font-size: 30px;
        line-height: 34px;
        padding-bottom: 15px;
    }

    .tabs-outer {
        padding: 0;
    }

    /* modul-dates-details */
    h2.sub-heading {
        font-size: 30px;
        line-height: 34px;
        padding-bottom: 15px;
    }

    .appointment-form .green-btn {
        float: left;
    }

    .dates-detail-block .page-heading {
        margin-top: 0;
        padding-bottom: 20px;
    }

    .dates-detail-block .cms-text {
        padding-right: 0;
    }

    .appointment-block {
        margin-top: 30px;
    }

    .appointment-form {
        padding: 30px 0;
    }

    .appointment-form .custom-form {
        margin-top: 20px;
    }

    .custom-form .form-group {
        margin-bottom: 30px;
    }

    .effect-input label {
        font-size: 18px;
        top: 27px;
    }

    .custom-form .form-control {
        font-size: 18px;
    }

    .custom-form textarea.form-control {
        height: 100px;
    }

    .inner-banner {
        height: 250px;
    }

    /* 3d Slider */
    .modul-slider {
        padding: 30px 0;
    }

    .modul-slider .slider-content p {
        font-size: 12px;
        line-height: 18px;
    }

    .modul-slider .slider-content h3.sub-heading {
        font-size: 20px;
        line-height: 24px;
    }

    .cascade-slider_item.prev, .cascade-slider_item.next {
        top: 3%;
    }

    .cascade-slider_nav li a {
        font-size: 14px;
    }

    .cascade-slider_nav li {
        padding: 0 5px;
        margin-bottom: 5px;
    }

    .cascade-slider_container {
        height: 310px;
    }

    .cascade-slider_arrow img {
        width: 20px;
    }

    /* Accordion */
    .dx-material-desc p {
        width: 100%;
    }

    .dx-material-desc p .green-btn {
        margin-bottom: 10px;
    }

    .dx-material-title img, .dx-accordion-title img {
        right: 0;
    }

    .basketSummary .table-bordered tr th, .basketSummary .table-bordered tr td {
        padding: 8px;
    }

    /* checkout-address-selection. */
    .address-selection-block .col-4 {
        width: 100%;
    }

    .address-selection-block .col-1 {
        width: 100%
    }

    .address-selection-block .col-2 {
        width: 100%;
    }

    .address-selection-block .col-3 {
        width: 100%;
    }

    .address-selection-block .col {
        margin-bottom: 20px;
    }

    .address-selection-block h3.sub-heading.toogle-heading {
        padding: 0 15px 10px;
    }

    .address-selection-block .custom-table .table td {
        font-size: 14px;
    }

    .address-selection-block .table-col h3.sub-heading {
        font-weight: 600;
    }

    .secondary-btn {
        height: 45px;
        line-height: 40px;
    }

    /* Contact page */
    .newsletter-block .btn-secondary {
        font-size: 18px;
    }

    .newsletter-block {
        background-image: none;
    }

    .newsletter-block .checkbox-outer label, .newsletter-block .checkbox-outer label a {
        text-align: left;
    }

    .message-block textarea.form-control {
        height: 100px;
        margin-top: 10px;
    }

    /* 07-02-2018 ---- Checkout 01 */
    .shipping_config {
        margin-top: 30px;
    }

    .display_table {
        height: auto !important;
    }

    .shipping_config .left_shipping_config {
        width: 100%;
        margin-bottom: 30px;
    }

    .shipping_config .right_shipping_config {
        width: 100%;
    }

    .shipping_config .border_box {
        padding: 15px;
    }

    .shipping_config .border_box h3 {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 20px;
    }

    .shipping_config .left_shipping_config ul {
        margin-bottom: 20px;
    }

    .shipping_config .right_shipping_config .primary-btn {
        margin-top: 15px;
    }

    .shipping_config h3.sub-heading.toogle-heading {
        padding: 0px 15px 10px;
        margin-bottom: 25px;
    }

    .shipping_config .bootom-block ul li {
        display: block;
    }

    .shipping_config .bootom-block .file-selection-box {
        margin-left: 0;
    }

    .shipping_config .bootom-block {
        margin: 37px 0 50px;
    }

    .shipping_config h3.sub-heading.toogle-heading {
        font-size: 16px;
        line-height: 20px;
    }

    .checkout_new .border_box .billing_address {
        width: 100%;
        margin-bottom: 25px;
    }

    .checkout_new .border_box .shipping_address {
        width: 100%;
        margin-bottom: 25px;
    }

    .checkout_new .border_box .address_block address {
        margin-bottom: 15px;
    }

    .checkout_new .border_box .address_block em {
        padding: 0 0 10px 0;
    }

    .shipping_config .bootom-block .payment-title {
        display: block;
        margin-left: 0;
    }

    .shipping_config .bootom-block .payment-title .radio label {
        padding-top: 0;
    }

    .shipping_config .bootom-block .payment-thumb {
        margin-left: 0;
    }

    /* 07-02-2018 ---- Checkout 02 */
    .checkout_new .dxMerchantBasket .inlinebox-bottom .basketSummary table {
        margin-top: 0;
    }

    .checkout_new .dxMerchantBasket .inlinebox-bottom .basketSummary, .checkout_new .dxMerchantBasket .inlinebox .basketSummary {
        margin-top: 10px;
    }

    .checkout_new .basketSummary table {
        margin-top: 0;
    }

    .checkout_new .btn-secondary {
        font-size: 17px;
        height: 50px;
    }

    .checkout_new .basketcontents_table {
        padding-right: 0;
    }

    .checkout_new .dxMerchantBasket .head {
        padding: 0px 0 5px 0px;
    }

    .checkout_new .dxMerchantBasket h2 {
        margin-bottom: 10px;
        padding: 0px;
    }

    .checkout_new .border_box {
        padding: 15px;
    }

    .checkout_new .border_box h3 {
        margin-bottom: 15px;
    }

    .checkout_new .dxMerchantBasket .head ul {
        margin-bottom: 10px
    }

    .checkout_new .basketSummary tr.inner-row-even > td {
        padding: 15px 10px 0px 10px;
    }

    .checkout_new .basketSummary tr.inner-row-odd > td {
        padding: 4px 10px 15px 10px;
    }

    .checkout_new .basketSummary tr.basketGrandTotal > td {
        padding: 15px 10px 15px 10px;
    }

    .checkout_new .inlinebox-bottom .basketSummary tr.inner-row-even > td {
        padding: 15px 10px 0px 10px;
    }

    .checkout_new .inlinebox-bottom .basketSummary tr.inner-row-odd > td {
        padding: 4px 10px 15px 10px;
    }

    .checkout_new .inlinebox-bottom .basketSummary tr.basketGrandTotal > td {
        padding: 15px 10px 15px 10px;
    }

    .checkout_new .dxMerchantBasket .inlinebox-bottom .basketSummary table {
        margin-bottom: 0;
    }

    .checkout_new .dxMerchantBasket h2 {
        margin-right: 0px;
    }

    .cartitem-block .couponBox {
        margin-top: 5px;
    }

    .checkout_new .dxPersonalOrderNumberTable .text-right {
        padding: 0;
    }

    /* 10-02-2018 */
    .custom-listing li {
        padding-left: 30px;
    }

    .advantages-block {
        padding: 50px 0;
    }

    .technical-information {
        padding: 20px;
    }

    .technical-information .right-col, .advantages-block .right-col {
        padding-top: 0;
    }

    .technical-information .right-col {
        padding: 30px;
    }

    .selective-laser-text .img-block {
        padding: 20px 0;
    }

    .advantages-block .video-block {
        padding-bottom: 20px;
    }

    .materials-accordion-block {
        padding: 30px 0;
    }

    .detail-page .materials-accordion-block h2.main-title {
        padding-bottom: 20px;
    }

    .materials-accordion-block .materials-content a.green-btn {
        margin-bottom: 10px;
    }

    .laser-application-block {
        padding: 20px 0;
    }

    .laser-application-block .col-sm-4 {
        margin-bottom: 20px;
    }

    .laser-application-block .right-col {
        padding: 30px 15px 0 15px
    }

    .banner .banner-bottom .iradio_minimal {
        top: 0;
    }

    .banner .banner-bottom .checkbox-outer {
        margin-right: 10px;
    }

    .dropzone-ctn .dropzone-ctn-bottom .iradio_minimal {
        top: 0;
    }

    .dropzone-ctn .dropzone-ctn-bottom .checkbox-outer {
        margin-right: 10px;
    }

    /* video-section*/
    .video-section {
        padding: 20px 0
    }

    .video-section .video-section-innner {
        text-align: center;
    }

    .video-section .video-section-innner {
        margin: 15px auto;
    }

    .video-section .video-section-innner a {
        margin-bottom: 15px
    }

    .video-section .video-section-innner .video-icon {
        width: 35px;
        height: 35px;
        top: 45%;
    }

    .video-section .video-title {
        margin-bottom: 30px;
    }

    .checkout_new .inner-container {
        padding: 0;
    }

    .download-btn, .download-btn:focus {
        font-size: 12px;
    }

    /* 28-02-2018 */
    .shipping_config .payment-title {
        margin-left: 80px;
    }

    .shipping_config ul.ssl-listing li:nth-child(2) {
        padding: 0 15px;
    }

    .shipping_config ul.ssl-listing li img {
        top: 0;
    }

    .shipping_config .left_shipping_config {
        padding: 0;
    }

    .shipping_config .right_shipping_config {
        padding: 0;
    }

    .dx-material-desc {
        margin-bottom: 0;
    }

    .landscape-view .advantages-block iframe {
        height: 400px;
    }

    .portrait-view .advantages-block iframe {
        height: 220px;
    }

    .cms-container {
        padding: 0;
    }

    .image-object-center .row > div {
        flex: auto;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
    }

    .image-object-center .row {
        display: flex;
        flex-wrap: wrap;
    }

    h3.title {
        font-size: 28px;
    }

    h3.subtitle, h4.subtitle {
        font-size: 18px;
    }

    .cms-image-full img {
        width: 100% !important;
    }

    .background-content-pad {
        max-width: 100%;
        padding: 0px 15px;
    }

    .embed-responsive video {
        width: auto !important;
    }

    .embed-responsive-16by9 {
        padding-bottom: 100%;
    }

    /*21-03-2018*/
    .basketSummary.globalbasket.inner-total-basket {
        width: 100%;
        margin-right: 0;
    }

    .btn-secondary.checkout-btn-custom.custom-btn-basket {
        margin-right: 0;
    }

    .dx_visual-cms-top-menu li a {
        transform: unset;
        -webkit-transform: unset;
    }

    .tab-title-details {
        transform: unset;
        -ms-transform: unset;
        -moz-transform: unset;
        -webkit-transform: unset;
    }

    .dx-landing-nav li a {
        font-size: 14px !important;
        min-height: 50px;
    }

    .dx_visual-cms-top-menu ul {
        border-bottom: unset !important;
    }

    .dx_visual-cms-top-menu li:first-child:before, .dx_visual-cms-top-menu li:last-child:before {
        background: unset;
        position: unset;
        content: unset;
        top: unset;
        bottom: unset;
        width: unset;
        z-index: unset;
        left: unset;
        box-shadow: unset;
        -webkit-box-shadow: unset;
        -ms-box-shadow: unset;
        -moz-box-shadow: unset;
        border-bottom: unset;
    }
}

@media (max-width: 640px) {
    .already-done .banner img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

    .already-done .dropzone-ctn img {
        object-fit: cover;
    }

    /* product-list */
    .product-list li {
        width: 100%;
    }

    .product-list li .product-box {
        height: auto !important;
    }

    /* Modul-register */
    .register-col li {
        width: 100%;
        margin-bottom: 50px;
    }

    .register-col p {
        margin-bottom: 20px;
    }

    /* news-listing */
    .news-list li {
        width: 100%;
    }

    .news-list li .news-box {
        height: auto !important;
    }

    /* contact page */
    .form-wrap .col-lg-3 {
        width: 50%;
    }
}

@media (max-width: 600px) {
    /* dealer-info-page */
    .links-block li {
        width: 31.8%;
    }

    .dealer-info .custom-dropdown {
        margin-top: 0;
    }

    h1 {
        font-size: 40px
    }
}

@media (max-width: 568px) {
    .induktor_cell {
        width: 45%;
        margin-bottom: 10px;
    }

    .header-links li a.tag-block em, .header-links li a.cart-block em {
        right: 20%;
    }

    .footer-bottom .form-group {
        width: 73%;
    }

    .btn-tertiary {
        width: 25%;
    }

    .help-contact-block, .company-block, .information-block {
        min-height: 170px;
    }

    .contact-links li a span {
        left: 5px;
    }

    .contact-links li a span::after, .contact-links li a span::before {
        left: -5px;
        right: -5px;
    }

    .method-inner-content h3 {
        font-size: 15px;
        line-height: 20px;
    }

    .header-bottom .navbar {
        margin-top: 38px;
    }

    .logo {
        width: 200px;
    }

    .header-bottom .navbar-nav li em {
        width: 8%;
        position: relative;
        top: -2px;
    }

    .support-block {
        display: none;
    }

    .contact-links li a, .contact-links li a.email {
        padding-right: 10px;
    }

    #mainnav {
        margin-top: -57px;
    }

    .logo {
        width: 240px;
    }

    #wrapper {
        margin-top: 60px;
    }

    .btn-inner {
        margin-bottom: 10px;
    }

    .direct-to-block li a {
        display: block;
        margin-bottom: 10px;
    }

    .direct-to-block {
        padding-top: 15px;
    }

    .btn-main {
        font-size: 16px;
        line-height: 21px;
        padding: 10px 20px;
        width: 100%;
    }

    .well .title {
        padding-bottom: 5px;
    }

    .well span {
        padding-bottom: 15px;
    }

    .lineBox {
        padding-top: 25px;
    }

    .header-top.inner-header .inner-logo {
        width: 30%;
    }

    .header-top.inner-header .header-logo {
        width: 22%;
    }

    .customer-account-block .bg-block {
        max-width: inherit;
        width: 50%;
    }

    .form-wrap {
        padding: 0 0 32px;
    }

    .banner-content {
        margin-top: -12px;
    }

    .banner-content span {
        font-size: 20px;
        line-height: 26px;
    }

    .dropzone-ctn-content {
        margin-top: -12px;
    }

    .dropzone-ctn-content span {
        font-size: 20px;
        line-height: 26px;
    }

    /* Order Page */
    .address-wrap li {
        width: 100%;
        margin-bottom: 20px;
    }

    .address-wrap li:last-child {
        margin-bottom: 0;
    }

    .address-wrap .edit-block.last {
        padding-top: 0;
    }

    /* Upload Page */
    .upload-main-block .dropzone {
        padding: 35px 0;
    }

    .upload-main-block #dropzone {
        margin: 20px 0;
    }

    .upload-main-block #dropzone img {
        height: 110px;
        width: 145px;
    }

    .upload-main-block .dropzone .radio-unit {
        max-width: 145px;
        padding: 10px 0;
    }

    .upload-main-block .dropzone .split-input label {
        font-size: 14px;
        line-height: 18px;
    }

    .btn-upload {
        font-size: 14px;
        line-height: 18px;
        padding: 10px;
    }

    .upload-main-block {
        padding: 25px 0 10px;
    }

    /* Payment Page */
    .payment {
        padding-bottom: 15px;
    }

    .payment h2 {
        float: none;
    }

    .payment a {
        float: none;
        display: block;
        width: 100%;
    }

    .payment a img {
        top: -8px;
    }

    .bottom-content-block .btn-main {
        font-size: 18px;
    }

    .basketSummary .table-responsive {
        border: 0;
        margin-bottom: 0;
        padding-bottom: 15px;
    }

    .basketSummary .table-bordered {
        margin-bottom: 0;
    }

    .basketSummary .table-bordered tr td.lead {
        font-size: 18px;
        line-height: 32px;
    }

    .password-block .password-inner .form-group, .password-block .dd-small, .password-block .company, .password-block .bg-block {
        max-width: 100%;
    }

    .password-block .bg-block {
        width: 100%;
    }

    .content-block span {
        padding-bottom: 10px;
    }

    .revoucher-box .maturity-block {
        padding: 14px 10px 0;
    }

    .address-wrap li {
        border-bottom: 1px solid #96be0d;
    }

    .address-wrap address {
        margin-bottom: 10px;
    }

    .address-wrap {
        padding-top: 40px;
    }

    .address-wrap span {
        padding-bottom: 10px;
    }

    .address-wrap .edit-block {
        margin-bottom: 10px;
    }

    .delievery-payment-block {
        padding-bottom: 10px;
    }

    .address-wrap.border-block {
        border-bottom: 0;
    }

    .address-wrap {
        padding-bottom: 0;
    }

    .linking-block {
        width: 40%;
    }

    .returning-list .list-unstyled .date-block {
        padding-top: 25px;
    }

    .returning-list .list-unstyled .cartitem-block .quantity {
        padding-top: 15px;
        font-size: 12px;
        line-height: 16px;
    }

    .returning-list .list-unstyled .basketItemDesc .checkbox.checkbox-main label {
        font-size: 12px;
        line-height: 16px;
    }

    .returning-list .list-unstyled .basketItemDesc .checkbox.checkbox-main label input.checkbox {
        top: -25px;
    }

    .returning-list .list-unstyled .basketItemDesc h6 {
        font-size: 12px;
        line-height: 16px;
    }

    .returning-list .btn-return, .returning-list .btn-secondary {
        margin-top: 20px;
    }

    .returning-list .list-unstyled .item-detail {
        padding: 15px 0 0;
    }

    .returning-list .list-unstyled .item-detail span {
        font-size: 12px;
        line-height: 16px;
        padding-bottom: 10px;
    }

    .returning-list .list-unstyled .cartitem-block .table-dropdown .form-control {
        width: 330px;
    }

    .project-thumb .checkbox.checkbox-main {
        padding-top: 30px;
        width: 8%;
    }

    .project-thumb .img-block {
        width: 30%;
    }

    .project-thumb .project-detail {
        margin-left: 10px;
        width: 59%;
    }

    .project-thumb .project-detail h6 {
        margin-top: 0;
        padding-top: 0;
    }

    .project-name-block span {
        padding-top: 1px;
    }

    /* 11102016 */
    .img-outer {
        width: 55%;
    }

    .date-block {
        width: 45%;
    }

    .config-page .list-unstyled .cartitem-block span.config-val {
        font-size: 30px;
        line-height: 34px;
    }

    .new-feature-banner {
        left: -5px;
        top: 10px;
        font-size: 10px;
        width: 75px;
    }

    /* 30-10-2017 */
    .btn-inner.cart-btn.dxGenerateOfferButton {
        margin-top: 15px;
    }

    /*16-01-2018*/
    .checkoutsteps li {
        width: 26%;
    }

    /* news-listing */
    .list-view {
        float: left;
        margin-top: 30px;
        width: 100%;
    }

    .banner .banner-bottom .checkbox-outer {
        display: block;
        margin-bottom: 10px;
    }

    .banner .banner-bottom .radio-outer {
        margin-left: 0;
    }

    .banner .banner-bottom .banner-inner-content {
        padding: 15px 0 15px 50px;
        background-size: 30px;
    }

    .top-banner .banner .info {
        padding-right: 30px;
    }

    .banner .banner-bottom h2 {
        font-size: 14px;
        line-height: 16px;
    }

    .banner .banner-bottom label {
        font-size: 13px;
        line-height: 17px;
    }

    .dropzone-ctn .dropzone-ctn-bottom .checkbox-outer {
        display: block;
        margin-bottom: 10px;
    }

    .dropzone-ctn .dropzone-ctn-bottom .radio-outer {
        margin-left: 0;
    }

    .dropzone-ctn .dropzone-ctn-bottom .dropzone-ctn-inner-content {
        padding: 15px 0 15px 50px;
        background-size: 30px;
    }

    .top-dropzone-ctn .dropzone-ctn .info {
        padding-right: 30px;
    }

    .dropzone-ctn .dropzone-ctn-bottom h2 {
        font-size: 14px;
        line-height: 16px;
    }

    .dropzone-ctn .dropzone-ctn-bottom label {
        font-size: 13px;
        line-height: 17px;
    }

    /*21-02-2018*/
    .checkout-btn-custom {
        max-width: 100%;
        float: right;
    }

    .checkoutsteps li {
        width: 50%;
        padding-right: 0;
    }

    .checkoutsteps li:last-child {
        width: 50%;
    }

    .checkoutsteps li span {
        width: 100%;
        padding: 20px 5px;
    }

    .landscape-view .advantages-block iframe {
        height: 305px;
    }

    .portrait-view .advantages-block iframe {
        height: 165px;
    }
}

@media (max-width: 479px) {
    /* dealer-info-page */
    .links-block li {
        width: 31%;
    }

    .dealer-info .green-button {
        width: 100%;
    }

    .checkbox-block label {
        width: 93%;
    }

    .banner .banner-header {
        height: 100%;
    }

    .dropzone-ctn .dropzone-ctn-header {
        height: 100%;
    }
}

@media (max-width: 424px) {
    .category-list li {
        width: 50%;
    }

    /* 07-02-2018 ---- Checkout 01 */
    .shipping_config .left_shipping_config li {
        width: 100%;
        margin-bottom: 10px;
    }

    .shipping_config .left_shipping_config li:last-child {
        margin-bottom: 0;
    }

    .top-banner .banner .info {
        top: 24px
    }

    .banner .info h1 {
        font-size: 18px;
        line-height: 26px;
    }

    .top-dropzone-ctn .dropzone-ctn .info {
        top: 24px
    }

    .dropzone-ctn .info h1 {
        font-size: 18px;
        line-height: 26px;
    }

    h1 {
        font-size: 30px;
    }
}

@media (max-width: 414px) {

    .accountLoginView .panel-body {
        padding: 15px;
    }

    .checkoutsteps li:after, .checkoutsteps li:before {
        display: none;
    }

    .header-top.inner-header .inner-logo {
        width: 34%;
    }

    .header-top.inner-header .header-logo {
        width: 24%;
    }

    /* Address Page */
    .bg-block, .sm-block, .md-block, .dd-small {
        max-width: inherit;
        width: 50%;
    }

    .company {
        max-width: inherit;
        width: 100%;
    }

    .customer-account-block .bg-block {
        width: 100%;
    }

    .upper-block .form-group {
        max-width: inherit;
        width: 100%;
    }

    .data-block .form-group {
        margin-bottom: 0;
    }

    /* Order Page */
    .order-block .well .btn-inner {
        width: 100%;
        margin-bottom: 0;
    }

    .order-block .well .btn-main {
        max-width: inherit;
        margin-bottom: 10px;
    }

    /* Payment Page */
    .payment-content-block li {
        padding-bottom: 20px;
    }

    .payment-content-block .payment-thumb {
        float: none;
        width: 100%;
    }

    .payment-content-block .payment-thumb img {
        width: 100%;
    }

    .payment-content-block .payment-title {
        float: none;
        width: 100%;
        padding-top: 15px;
        padding-left: 0;
    }

    .linking-block {
        float: none;
        width: 100%;
    }

    .returning-list .list-unstyled .basketItemDesc .checkbox.checkbox-main label input.checkbox {
        top: -19px;
    }

    .returning-list .list-unstyled .cartitem-block .quantity {
        padding-top: 10px;
    }

    .returning-list .list-unstyled .date-block {
        padding-top: 17px;
    }

    .returning-list .list-unstyled .cartitem-block .table-dropdown .form-control {
        width: 250px;
    }

    .returning-list .list-unstyled .cartitem-block .send-back-block .btn-secondary:hover {
        background: #96be0d;
    }

    .img-outer {
        width: 55%;
    }

    .date-block {
        width: 45%;
    }

    .project-thumb .project-detail {
        width: 55%;
    }

    .project-thumb .project-detail h6 {
        font-size: 14px;
        line-height: 18px;
    }

    .project-thumb .project-detail ul li {
        font-size: 12px;
        line-height: 16px;
        padding-bottom: 5px;
    }

    .shopping-btn-block {
        padding: 0 0 20px;
    }

    .shopping-btn-block .btn-secondary {
        width: 100%;
        display: block;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .shopping-btn-block .checkbox.checkbox-main {
        margin: 0 0 10px 0;
    }

    .project-thumb .checkbox.checkbox-main {
        padding-top: 25px;
    }

    .dx-material-desc p .green-btn.download-datasheet-custom {
        margin-left: 0 !important;
    }

    /* checkout-header-selection. */
    #header .header-top.inner-header .header-title span {
        padding-top: 9px;
    }

    .small-header #header .header-top.inner-header .header-title span {
        padding-top: 9px;
    }

    .basketItemDesc ul li span {
        width: 130px;
    }

    /*resolve basket span*/
    .basketItemDesc ul li:last-child {
        margin-top: 8px;
    }

    .already-done ul li {
        margin-right: 0 !important;
    }

    .dx-material-desc p .green-btn.download-datasheet-custom {
        padding: 13px 20px 13px 60px !important;
    }

    .already-done .banner {
        height: 350px !important;
    }

    .already-done .banner img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

    .already-done .dropzone-ctn {
        height: 350px !important;
    }

    .already-done .dropzone-ctn img {
        height: auto;
    }
}

@media (max-width: 359px) {
    .informationsmaterial .materialdatenblatt {
        min-height: 225px;
    }

    .triangle-block {
        width: 187px;
    }

    .second-block {
        margin-left: -121px;
    }

    .sixth-block {
        margin-left: -121px;
    }

    .fourth-block {
        margin-left: -121px;
    }

    .credentials-inner-block {
        width: 290px;
    }

    #video-block1, #video-block2, #video-block3, #video-block4 {
        width: 300px;
    }

    .method-inner-content h3 {
        font-size: 12px;
        line-height: 16px;
    }

    .header-bottom .navbar-nav li em img {
        width: 20px;
        height: auto;
    }

    .mobile-accordion .title-block h4 {
        font-size: 18px;
        line-height: 22px
    }

    .basketItemDesc ul li span {
        font-size: 12px;
        line-height: 16px;
        width: 100px;
        word-break: break-word;
    }

    /*resolve basket span*/
    .totalPrice span {
        font-size: 20px;
        line-height: 24px;
    }

    .revoucher-box .basketSummary .table-bordered tr th, .revoucher-box .basketSummary .table-bordered tr td, .revoucher-box .basketSummary .table-bordered tr td.lead {
        font-size: 12px;
        line-height: 16px;
    }

    .revoucher-box .maturity-block {
        font-size: 12px;
        line-height: 16px;
    }

    /* News page */
    .news-inner-block .col-xs-6 {
        width: 100%;
    }

    .returning-list .list-unstyled .cartitem-block .quantity {
        padding-top: 2px;
    }

    .project-name-block {
        padding: 10px;
    }

    .project-name-block h5 {
        font-size: 12px;
        line-height: 16px;
    }

    .project-name-block span {
        font-size: 11px;
        line-height: 15px;
    }

    .project-thumb .checkbox.checkbox-main {
        width: 10%;
    }

    .project-thumb .img-block {
        width: 35%;
    }

    .project-thumb .project-detail {
        width: 50%;
    }

    .project-box .price span {
        color: #96be0d;
        display: block;
        font-size: 25px;
        font-weight: 600;
        line-height: 29px;
    }

    .project-name-block span {
        padding-top: 0;
    }

    .dropzone .split-input {
        margin-right: 10px;
    }

    .help-contact-block, .company-block, .information-block, .payment-block {
        min-height: 0;
        width: 100%;
        text-align: center;
    }

    .payment-block h6 {
        text-align: center;
    }

    .payment_options {
        width: 100%;
        text-align: center;
    }

    .information-block > .pull-right {
        float: none !important;
    }
}

@media (max-width: 374px) {

    h2 {
        font-size: 30.5px;
        line-height: 34.5px;
    }

    h2.main-title {
        padding: 0 25px 3px;
        font-size: 20px;
        line-height: 24px;
    }

    footer .footer-bottom .social-icons li {
        margin-right: 17px;
    }

    .questions p {
        padding: 0 30px;
    }
}

@media (max-width: 320px) {
    /* 3d Slider */
    .modul-slider .slider-content {
        margin: 20px -50px 0;
    }

    .file-upload-btn {
        height: 100% !important;
    }
}

@media (min-width: 992px) {
    .vert-middle {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .vert-middle .dd-image-box {
        margin-top: 0px;
    }
}

body {
    line-height: 1.5;
}

a.text-warning:hover {
    cursor: pointer;
}

@media (min-width: 769px) {
    .margin-r {
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .margin-r {
        margin-top: 5px;
        width: 100%;
    }
}

.basketnamefield, .basketnamefield_bottom {
    display: none;
    margin-top: 10px;

    background-color:#f3f3f3;
    padding:10px;
}

.basketnamefield input, .basketnamefield_bottom input {
    margin-bottom: 10px;
    max-width:500px;
}

#head_part1 {
    display: block;
    height: 63px;
    background: #4A4A48;
}

#head_part1 .buttons a:hover {
    border: none;
}

#head_part1 .buttons .btn-group,
#head_part1 .buttons.btn-group-vertical {
    display: block;
    float: left;
}

#head_part1 .buttons .language_button {
    display: block;
    padding: 0;
    border: 0;
    height: 63px;
}

#logo, #logo:hover {
    display: block;
    text-decoration: none;
    margin-top: 24px;
    border: none;
}

#head_part2 .header_navigation {
    display: block;
    width: auto;
    float: right;
    max-width: 870px;
}

#head_part2 .header_navigation .information_links {
    display: block;
    color: #AEAEAE;
    font-size: 10px;
    margin-top: 10px;
    margin-right: 10px;
}

#head_part2 .header_navigation .information_links img {
    display: block;
    float: left;
}

#head_part2 .header_navigation .information_links .link_title {
    display: block;
    float: left;
}

#head_part2 .header_navigation .information_links a .link_title {
    text-decoration: none;
    color: #AEAEAE;
}

#head_part2 .header_navigation .information_links .line {
    display: block;
    float: left;
    margin: 0 10px;
    line-height: 20px;
    font-size: 20px;
}

#head_part2 .header_navigation .cat_navigation {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30px;
    width: 100%;
}

#head_part2 .cat_navigation .navbar {
    border: none;
    min-height: 30px;
    height: 30px;
    float: right;
}

#head_part2 .cat_navigation #navigation.nav li {
    border: none;
    padding: 0;
    height: 30px;
    border-right: 1px solid #97BD0E;
}

#head_part2 .cat_navigation #navigation.nav li a {
    border: none;
    line-height: 12px;
    font-size: 12px;
    padding: 5px 15px 0px;
    text-transform: uppercase;
    color: #000000;
    font-weight: bold;
}

#head_part2 .cat_navigation #navigation.nav li.active {
    border: none;
    background: #97BD0E;
    padding: 0;
}

#head_part2 .cat_navigation #navigation.nav li:hover,
#head_part2 .cat_navigation #navigation.nav li:hover a {
    background: #97BD0E;
    color: #FFFFFF;
}

#head_part2 .cat_navigation #navigation.nav li.firstelement {
    display: block;
    width: 1px;
    background: #97BD0E;
}

#head_part2 .cat_navigation #navigation.nav li.active a {
    color: #FFFFFF;
}

#head_part2 .cat_navigation #navigation.nav li a:hover {
    transition: none;
    border: none;
}

.clear {
    clear: both;
}

.description-notice {
    display: none;
    color: red;
}

.checkbox-savedbasket {
    float: left;
    width: 10px;
    height: 50px;
    padding-top: 5px;
}

.projectFunctions button {
    margin: 0 5px 5px 5px;
}

.form-group .dropdown-menu {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.productData.col-xs-11.productBox {
    margin-bottom: 30px;
}

.productData.col-xs-11.productBox .title {
    font-size: 16px;
    line-height: 16px;
    text-transform: none;
}

.top-content-block .alert {
    margin-top: 20px;
}

.dx_register_switch {
    float: left;
    position: relative;
    width: 380px;
    margin-right: 17%;
    margin-top: 20px;
    text-transform: uppercase;
}

.dx_register_switch:last-child {
    margin-right: 0;
}

.dx_register_switch button {
    position: absolute;
    bottom: 19px;
    text-transform: uppercase;
    z-index: 2;
}

.dx_register_switch img {
    padding-left: 100px;
    opacity: 0.3;
}

.dx_register_switch h3 {
    color: #96be0d;
    font-size: 20px;
}

@media (max-width: 1100px) {
    .dx_register_switch {
        margin-right: 10%;
    }
}

.thankyou_buttons {
    margin-top: 16px;
}

.thankyou_buttons_left button, .thankyou_buttons_right button {
    float: left;
    margin-right: 10px !important;
}

.thankyou_buttons_right button:last-child {
    margin-right: 0 !important;
}

.thankyou_buttons_right {
    float: right;
}

.fb-share-button {
    float: left;
    display: inline-block;
}

.review_block {
    background-color: #e3e3e3;
    padding: 30px 0 10px;
}

.rating {
    float: left;
    margin-bottom: 8px;
}

.fa-star-o:before, .fa-star:before {
    font-size: 20px;
    color: #5b5b5b;
}

.fa-star.small_icon:before,
.fa-star-o.small_icon:before {
    font-size: 12px;
}

.fa-star.small_icon:first-child,
.fa-star-o.small_icon:first-child {
    margin-left: 15px;
}

.small_font {
    font-size: 12px;
}

#reviewRating.list-inline > li {
    padding: 0;
}

#review .panel-body {
    padding-top: 10px;
    padding-bottom: 0;
}

#review .panel-default {
    border-color: #b2b2b2;
}

#review textarea {
    border: 0;
}

#review .review-textarea {
    border-top: 1px solid #98bd0e;
    border-bottom: 1px solid #b2b2b2;
    height: auto;
    font-size: 12px;
    line-height: 34px;
    width: 100%;
    border-radius: 0;
    color: #4a4a49;
    display: block;
    padding: 6px 12px;
    background-color: #fff;
}

#review .panel-group .panel {
    border-radius: 0;
    border-bottom: none;
}

#review .form-group {
    margin-bottom: 0;
}

.review_submit_button {
    margin-top: 20px;
}

.header-check {
    position: relative;
    color: #a0a0a0;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    padding: 1px 0 0 35px;
}

.header-check span {
    margin-left: 7px;
}

.payment .ssl {
    float: right;
    color: #b3b2b2;
    font-size: 12px;
    line-height: 15px;
    padding-left: 125px;
    position: relative;
    width: 24%;
    margin-top: 19px;
}

.payment .ssl img:first-child {
    height: 35px;
    left: 0;
    top: -8px;
    position: absolute;
    width: 85px;
}

.payment .ssl img:nth-child(2) {
    height: 28px;
    left: 102px;
    position: absolute;
    width: 20px;
}

.btn-primary {
    text-transform: uppercase;
}

.bg-grey-reviews {
    background-color: #e3e3e3;
    margin-top: 20px;
}

.bg-dark-nl {
    background-color: #3c3c3c;
}

.nl_block {
    margin: 40px 0;
    color: #fbfbfb;
    font-size: 12px;
}

.nl_block .row {
    max-width: 700px;
}

.nl_block label {
    color: #fbfbfb;
}

.nl_block a {
    text-decoration: underline;
    color: #fbfbfb;
}

.nl_block .checkbox-inline:first-child {
    padding-left: 0;
}

.nl_block .checkbox-inline {
    padding-top: 10px;
}

.nl_block .email-label {
    font-size: 18px;
    font-weight: bold;
}

.nl_block.newsletter-block {
    background-image: none;
}

.alert {
    margin-top: 20px;
}

.dx-dark-grey {
    background-color: #4a4a48;
}

.dx-light-grey {
    background-color: #c7c7c5;
}

.dx-white-headline .title {
    color: #fff;
}

.dx-white-font,
.dx-white-font p {
    color: #fff;
}

.center .row {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.padding-bottom {
    padding-bottom: 20px;
}

.header-links .flyoutBox li a {
    padding: 7px 10px 7px;
}

.header-links .flyoutBox li a:hover {
    text-decoration: underline;
}

/*.topPopList {
    margin-top: -15px;
}*/

.payment-infos {
    font-size: 13px;
    clear: left;
    margin-left: 12%;
}

.payment-infos input,
.payment-infos select {
    display: inline-block;
    width: 150px;
    padding: 0 5px;
}

.payment-infos label {
    width: 100px;
}

.payment-infos .oxValidateError {
    display: inline-block;
    width: auto;
    margin-left: 5px;
}

@media (max-width: 991px) {
    .payment-infos {
        margin-left: 20%;
    }

    .dxMerchantBasket h2 {
        font-size: 38px;
        line-height: 42px;
        padding-bottom: 0;
    }
}

.dd-shortcode-text ul:not(.slides, .header-nav-links) {
    list-style-type: disc;
    margin-left: 25px;
    font-weight: bold;
}

.accordion-content .dd-shortcode-text {
    padding-top: 0 !important;
    height: 380px;
}

.float-right {
    float: right;
}

.banner-caption {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 40px 0 0 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-headline {
    font-size: 33px;
    line-height: 1.25;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.banner-teaser {
    color: #fff;
    font-size: 19px;
    line-height: 22px;
}

.dropzone-ctn-caption {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 40px 0 0 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dropzone-ctn-headline {
    font-size: 33px;
    line-height: 1.25;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.dropzone-ctn-teaser {
    color: #fff;
    font-size: 19px;
    line-height: 22px;
}

#details #detailsItemsPager {
    margin-top: 20px;
    margin-bottom: 20px;
}

.dropzone {
    padding: 0;
}

#promo-carousel .flex-viewport {
    height: 100%;
}

.method-content {
    height: 250px;
    background-size: 100% 100%;
    background-size: cover;
    background-position: center center;
}

.method-wrap {
    margin-left: -6px;
    margin-right: -6px;
}

.method-col {
    padding: 0 6px;
    margin-bottom: 12px;
}

.method-inner-content h3 {
    width: 100%;
    padding-right: 75px;
}

@media all and (max-width: 500px) {
    .method-col {
        width: 100%;
    }
}

.accordion-content .row {
    margin: 0;
}

.accordion-content .row > div {
    padding: 0;
}

.accordion ul li div span a {
    padding: 0;
}

.accordion-icon {
    width: 229px;
    padding-bottom: 15px;
}

@media (max-width: 1360px) {
    .accordion-content img {
        width: 150px !important;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    .accordion-content img {
        width: 100px !important;
    }

    .work-block .col-sm-5 {
        width: 30%;
    }

    .works-content-block .title {
        font-size: 25px;
        line-height: 1;
    }

    .work-block .col-sm-7 {
        width: 70%;
    }

    .works-content-block {
        min-height: 0;
    }
}

.color-box {
    width: 25px;
    height: 25px;
    border: 1px solid black;
    display: inline-block;
    float: left;
}

.payment-content-block .payment-thumb {
    border: 1px solid #b3b2b2;
}

.textlink {
    color: #96be0d;
}

.social-links li a.xing {
    width: 34px;
    height: 34px;
    background: url(../img/social-icons.png) no-repeat -257px 0;
}

.social-links li a.xing:hover {
    background: url(../img/social-icons.png) no-repeat -257px -33px;
}

.quantity ul li input {
    padding: 0 4px;
    background: #ececec;
}

.header-right-links li {
    float: none !important;
}

li#errorBadLogin {
    padding: 10px;
}

li#errorBadLogin a {
    color: #a94442;
    text-decoration: underline;
}

.dx_delivery_notice {
    margin-top: 80px;
}

.dx-cms-list, .dx_cms_start, .dx_cms_list, .dx_cms_content {
    padding-top: 72px;
}

#sidebar .tree {
    border: 1px solid #eee;
    padding: 10px 15px;
}

#sidebar .cattreeheader {
    font-size: 1.5em;
    color: #96be0d;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.cms-banner {
    padding-right: 20px;
    padding-bottom: 20px;
}

#boxwrapper_cmsContent h2,
#boxwrapper_cmsList h2 {
    margin-top: 5px;
    margin-bottom: 0;
}

#boxwrapper_cmsContent h2 a,
#boxwrapper_cmsList h2 a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#basketVoucher small {
    display: block;
    font-size: 12px !important;
    line-height: 1.5;
}

@media (max-width: 432px) {
    .banner-headline {
        font-size: 24px;
    }

    .dropzone-ctn-headline {
        font-size: 24px;
    }
}

/* Meine Adressen */
.dxAddressBlockContainer {
    padding-left: 15px;
    padding-right: 15px;
}

.dxAddressBlockContainer,
.dxAddressBlock {
    margin: 0;
}

.dxAddressBlock {
    border: 2px solid #96be0d;
    padding: 5px 10px 10px;
    background: #fff;
}

.dxDefaultAddressesContainer .dxAddressBlock {
    border-top: none;
}

.dxAddressBlock table {
    width: 100%;
}

.dxAddressBlock td {
    padding: 5px;
    border-bottom: 1px solid #eee;
    word-break: break-word;
}

.dxAddressBlock tr:last-child td {
    border-bottom: none;
}

.dxAddressBlock td:first-child {
    font-weight: 600;
    word-break: normal
}

.dxadressheader {
    font-weight: bold;
    font-size: 1.15em;
    background: #96be0d;
    color: #fff;
    padding: 5px 15px;
}

.dxAdditionalAddressesBox {
    background: #eee;
}

.dxAdditionalAddressesContainer {
    padding: 15px 15px 0;
    background: #eee;
    margin-bottom: 20px;
}

.dxAdditionalAdressheader {
    margin: 20px 0 0;
    background: #b3b2b2;
}

.dxAdditionalAddressesContainer .dxAddressBlock {
    border: 2px solid #b3b2b2;
    text-align: right;
    margin-bottom: 15px;
}

.dxAdditionalAddressesContainer .dxAddressBlock table {
    text-align: left;
}

.dxAddressBlock .btn {
    margin-top: 10px;
}

.dxAddressBlock .btn-primary {
    text-transform: none;
}

.dxAdditionalAddressesContainer .dxAddAddressBlock {
    text-align: center;
    font-weight: bold;
    font-size: 1.15em;
    background: #b3b2b2;
    border-color: #949494;
    color: #fff;
    padding: 5px 10px;

    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.dxAdditionalAddressesContainer .dxAddAddressBlock:hover {
    background: #949494;
}

#employee_info {
    display: none;
}

.button-group.top {
    margin-top: 30px
}

.dxMerchantBasket h2 {
    display: block;
    padding: 0 0 30px 0;
    margin: 0;
    font-size: 50px;
    line-height: 54px;
    letter-spacing: 0.5px;
    font-weight: 300;
    color: #000;
}

.dxMerchantBasket h2 a {
    color: #96be0d;
}

.dxMerchantBasket .lineBox {
    padding: 0;
    padding-top: 10px;
    border-bottom: 2px solid #96be0d;
}

.dxMerchantBasket .basketcontents_table .table-bordered tbody tr {
    border: 0
}

.dxMerchantBasket .basketcontents_table .table-bordered .totalPrice {
    width: auto
}

.dxMerchantBasket .basketcontents_table .table-bordered .quantity a.delete {
    margin-left: 15px;
    opacity: 0.4;
}

.basketItemDesc_basket {
    max-width: 500px;
}

.basketItemDesc_order {
    max-width: 180px;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td {
    padding: 10px 0;
    position: relative;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr:first-child > td {
    padding-top: 0;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td {
    display: table-cell;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.basketcontents_table .basketItemDesc_basket {
    max-width: 380px;
}

.basketcontents_table .basketItemDesc_order {
    max-width: 250px;
}

.basketcontents_table .dxDeleteBasketItem_order {
    margin-left: 8px !important;
}

.dxMerchantBasket .basketcontents_table .table-bordered tr {
    border-top: 1px solid #ececec;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td:nth-child(1) {
    width: 1%;
    padding-left: 0;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td:nth-child(2) {
    width: 15%;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td:nth-child(3) {
    width: 28%;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td:nth-child(4) {
    width: 8%;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td:nth-child(5) {
    width: 28%;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td:nth-child(6) {
    width: 20%;
    padding-right: 0;
}

.dxMerchantBasket .basketcontents_table .table-bordered > tbody > tr > td {
    padding-left: 10px;
    padding-right: 10px;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 3px 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 15px;
}

.dx-shipping-disclaimer {
    font-size: 13px;
    font-weight: 300;
    color: #000;
}

.basketcontents_table .checkbox-outer {
    position: relative;
    margin-right: 10px;
}

.basketcontents_table .checkbox-outer .icheckbox_square {
    position: relative;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border: 1px solid #000;
    width: 12px;
    height: 12px;
}

.basketcontents_table .checkbox-outer .icheckbox_square.checked {
    width: 12px;
    height: 12px;
    background-size: 10px;
    border-color: #96be0d;
}

.basketcontents_table .basketFunctions .checkbox-outer {
    float: left;
    margin-top: 3px;
}

.basketItemDesc h6 {
    margin: 0 0 10px;
}

.basketItemDesc h6 a {
    font-size: 15px;
    font-weight: 700;
    color: #0098a1;
    word-wrap: break-word;
}

.basketItemDesc td {
    font-size: 15px;
    font-weight: 300;
    color: #000;
    line-height: 22px;
}

.basketRemoveAll {
    border-radius: 0
}

.basketVoucher {
    text-align: right;
    font-size: 15px;
    font-weight: 300;
    color: #000;
    margin-top: 7px;
}

#basketVoucher input, #basketVoucher button {
    font-size: 12px
}

#basketVoucher .form-control {
    height: 31px;
    padding: 0px 7px
}

.basketSummary.globalbasket .table-bordered, .summary .table-responsive {
    padding: 10px 0 0 0;
}

.basketSummary.globalbasket .basketGrandTotal h3 {
    margin-bottom: 0;
}

.basket_table tr td:first-child, .basket_table tr td:nth-child(2) {
    display: table-cell;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.basket_table .basketImage, .basket_table .basketItemDesc {
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
}

.dxMerchantBasket .basket_table .basketImage, .dxMerchantBasket .basket_table .basketItemDesc {
    top: inherit;
    transform: inherit;
    position: inherit;
}

.basket_table .totalPrice div:first-child {
    margin-top: 75px;
    transform: translate(0, -50%);
}

.basketSummary.globalbasket .table-responsive {
    margin-bottom: 10px;
}

.summary .table-responsive {
    margin-bottom: 20px;
}

.summary .table-responsive .table {
    margin-bottom: 0;
}

.basketSummary.globalbasket .table-bordered tr.inner-row-odd, .summary .table-responsive tr.inner-row-odd {
    border-bottom: 2px solid #FFF;
}

.basketSummary.globalbasket tr.basketGrandTotal > td, .basketSummary.globalbasket tr.basketGrandTotal > th {
    background: #ececec !important;
    color: #000 !important
}

/* 21-03-2018 */
.basketSummary tr.basket_nettotext {
    border-bottom: 2px solid #fff;
}

.basketSummary.globalbasket table td {
    font-weight: 400;
}

.basketSummary.globalbasket .table-bordered tr td.lead {
    font-size: 15px;
}

.basketSummary.globalbasket .table-bordered tr th.lead, .basketSummary.globalbasket .table-bordered tr td.lead {
    padding: 20px 28px;
}

.basketSummary.globalbasket tr.basket-inner-singlepay {
    border-bottom: 2px solid #fff;
}

.basketSummary.globalbasket .inner-row-singlepayment {
    padding-bottom: 20px;
}

.basketSummary.globalbasket {
    max-width: 415px;
    padding-left: 0;
}

.globalbasket.inner-total-basket {
    float: right;
    margin-right: 15px;
}

.basketcontents_table {
    padding-right: 0;
}

.checkout-btn-custom.custom-btn-basket {
    max-width: 415px;
    margin-right: 15px;
    float: right;
}

.dxPersonalOrderNumberTable.tblOrderNrTable {
    padding-left: 0;
    padding-bottom: 25px;
}

.checkout-block .well.well-sm.clear.cart-buttons.clearfix {
    margin-top: 0;
}

@media (min-width: 1200px) {
    .basketSummary {
        width: 100%
    }

    .basketcontents_table .table-responsive {
        overflow-x: visible
    }
}

.summary .table-responsive tr th, .summary .table-responsive tr td {
    padding: 10px 28px;
    font-weight: normal;
}

.table-responsive tr.summary-total th, .table-responsive tr.summary-total td {
    padding-top: 20px;
    padding-bottom: 20px;
}

.basketSummary tr.inner-row-even th, .basketSummary tr.inner-row-even td, .summary tr.inner-row-even td, .summary tr.inner-row-even th {
    padding-bottom: 0
}

.basketSummary tr.inner-row-odd th, .basketSummary tr.inner-row-odd td {
    padding-top: 4px
}

.button-group.bottom {
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .list-unstyled .cartitem-block:last-child {
        border-bottom: 1px solid #d2d2d1
    }

    .list-unstyled .cartitem-block {
        border-top: 1px solid #d2d2d1
    }

    .dxMerchantBasket h2 a {
        border: none
    }

    .totalPrice span {
        display: block
    }

    .dxMerchantBasket h2 {
        font-size: 32px;
        line-height: 36px;
        padding-bottom: 0;
    }

}

.header-bottom .navbar-nav .dropdown-menu li a:after {
    background: none;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:active,
.navbar-default .navbar-nav > .open > a:focus {
    color: #96be0d;
}

@media (min-width: 769px) {
    .header-bottom .navbar-nav .dropdown-menu {
        background-color: #fff;
        border: 1px solid #a0a0a0;
    }

    .header-bottom .navbar-nav li a:hover {
        background-color: #4a4a49;
        color: #fff;
    }
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu li a {
        color: #000;
    }

    .navbar-default .navbar-nav .open .dropdown-menu li.active-nav a {
        color: #96be0d;
        text-decoration: none;
    }

    #navigation .dropdown-menu > li > a:focus {
        background-color: #4a4a49 !important;
        color: #fff !important;
    }

    #navigation .dropdown-menu {
        background-color: #fff !important;
        padding: 0px !important;
    }

    .basketSummary .table-bordered tr th, .basketSummary .table-bordered tr td {
        padding: 8px;
    }
}

.dx_new_background {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0098a2+44,96be0c+93 */
    background: url("../../../out/pictures/ddmedia/bildmarke.png") no-repeat left top, #0098a2; /* Old browsers */
    background: url("../../../out/pictures/ddmedia/bildmarke.png") no-repeat left top, -moz-linear-gradient(-45deg, #0098a2 44%, #96be0c 93%); /* FF3.6-15 */
    background: url("../../../out/pictures/ddmedia/bildmarke.png") no-repeat left top, -webkit-linear-gradient(-45deg, #0098a2 44%, #96be0c 93%); /* Chrome10-25,Safari5.1-6 */
    background: url("../../../out/pictures/ddmedia/bildmarke.png") no-repeat left top, linear-gradient(135deg, #0098a2 44%, #96be0c 93%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0098a2', endColorstr='#96be0c', GradientType=1); /* IE6-9 fallback on horizontal gradient */
    padding: 40px 0 38px;
}

.dx_new_hero .dd-hero-holder {
    padding: 0px !important;
}

.dx_new_hero h3 {
    color: white !important;
}

.dx_new_hero a.btn {
    opacity: unset !important;
    min-width: 425px !important;
    border: 3px solid #ffffff !important;
    color: #ffffff !important;
}

.dx_new_hero a.btn:hover {
    background-color: #ffffff !important;
    color: #0098a2 !important;
}

#marktplatz-btn li a:hover {
    background: #96be0d;
}

.protiq_app iframe {
    border: none;
}

@media (max-width: 1399px) {
    /*20-02-2018*/
    .basketSummary .table-bordered tr th, .basketSummary .table-bordered tr td {
        padding: 10px 20px;
    }
}

@media (max-width: 1199px) {
    /*20-02-2018*/
    .basketSummary .table-bordered tr th, .basketSummary .table-bordered tr td {
        padding: 10px 10px;
    }
}

.is-checkout #header .header-top.inner-header .header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0 !important;
}

@media (max-width: 1024px) {
    .is-checkout #header .header-top.inner-header .header-title {
        max-width: none;
    }
}

.is-checkout .header-top.inner-header .header-title span {
    padding-top: 0 !important;
}

.is-checkout .header-top.inner-header .header-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 !important;
}

.is-checkout .header-top.inner-header .header-logo a {
    align-self: center;
}

.promo-carousel-testimonials .slider-content {
    background: #fff;
    padding: 60px;
    width: 100%;
    min-height: 251px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.promo-carousel-testimonials .slider-content:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: -0.5em;
    bottom: -1.9em;
    left: 10%;
    box-sizing: border-box;

    border: 1em solid black;
    border-color: transparent transparent #ffffff #ffffff;

    transform-origin: 0 0;
    transform: rotate(-45deg);

    box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.dx-bg-testimonials {
    margin-bottom: 100px;
}

.dx-bg-testimonials .title {
    color: #000;
    padding-bottom: 20px;
    font-size: 28px;
    line-height: 33px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.dx-bg-testimonials .flexslider .slides > li {
    overflow: visible;
}

.dx-bg-testimonials .flex-viewport {
    padding-bottom: 20px;
}

.dx-bg-testimonials .method-block {
    background-image: none !important;
    margin-right: auto;
    background-color: transparent;
    margin-left: auto;
    padding: 10px 260px 0 260px;
}

@media (max-width: 1594px) {
    .dx-bg-testimonials .method-block {
        padding: 10px 240px 0 240px;
    }
}

@media (max-width: 1399px) {
    .dx-bg-testimonials .method-block {
        padding: 10px 215px 0 215px;
    }
}

@media (max-width: 1199px) {
    .dx-bg-testimonials .method-block {
        padding: 10px 145px 0 145px;
    }
}

@media (max-width: 1024px) {
    .dx-bg-testimonials .method-block {
        padding: 10px 130px 0 130px;
    }
}

@media (max-width: 991px) {
    .dx-bg-testimonials .method-block {
        padding: 10px 120px 0 120px;
    }

    .induktor_icon img {
        max-width: 300px !important;
    }
}

@media (max-width: 767px) {
    .promo-carousel-testimonials .slider-content {
        padding: 30px;
    }
}

@media (max-width: 591px) {
    .promo-carousel-testimonials .slider-content {
        padding: 25px 10px 0 10px;
    }

    .dx-bg-testimonials .method-block {
        padding: 10px 100px 0 100px;
    }
}

@media (max-width: 536px) {
    .promo-carousel-testimonials .slider-content {
        padding: 15px 0;
    }
}

@media (max-width: 470px) {
    .dx-bg-testimonials .method-block {
        padding: 10px 40px 0 40px;
    }
}

.promo-carousel-testimonials .dx-edge {
    border-color: #fff transparent transparent transparent;
}

@media (max-width: 767px) {
    .dx-bg-testimonials .flexslider .slides img {
        display: none;
    }
}

@media (min-width: 768px) {
    .dx-bg-testimonials .container {
        width: 780px;
    }
}

@media (max-width: 991px) {
    .dx-bg-testimonials .container {
        width: auto;
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media (min-width: 992px) {
    .dx-bg-testimonials .container {
        width: 940px;
    }

}

@media (min-width: 1200px) {
    .dx-bg-testimonials .container {
        width: 1140px;
    }
}

@media (min-width: 1400px) {
    .dx-bg-testimonials .container {
        width: 1340px;
    }
}

@media (min-width: 1595px) {
    .dx-bg-testimonials .container {
        width: 1530px;
    }
}

.promo-carousel-testimonials .flex-control-paging li a {
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
    width: 17px;
    height: 17px;
}

.induktor_icon img {
    max-width: 120px !important;
}

.induktor_icon .dd-shortcode-image {
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .induktor_icon img {
        max-width: 300px !important;
    }
}

@media (max-width: 479px) {
    .induktor-cta .banner img {
        width: 140% !important;
        left: -23% !important;
        top: 0% !important;
        max-width: none !important;
    }

    .induktor-cta .dropzone-ctn img {
        width: 140% !important;
        left: -23% !important;
        top: 0% !important;
        max-width: none !important;
    }

    .already-done.induktor h2.main-title {
        line-height: 30px;
        padding-bottom: 30px;
    }
}

.dx_unsere_partner .dx_partner_col1 {
    margin-right: 1rem;
}

.dx_unsere_partner .dx_partner_col2 {
    margin-right: 1rem;
    margin-left: 1rem
}

.dx_unsere_partner .dx_partner_col3 {
    margin-left: 1rem
}

@media (max-width: 768px) {
    .dx_unsere_partner .dx_partner_col1 {
        margin-bottom: 1.5rem;
        margin-left: 0;
        margin-right: 0;
    }

    .dx_unsere_partner .dx_partner_col2 {
        margin-bottom: 1.5rem;
        margin-left: 0;
        margin-right: 0;
    }

    .dx_unsere_partner .dx_partner_col3 {
        margin-bottom: 1.5rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.merchantinfo_menu {
    margin-left: 10px;
    margin-right: 10px;
}

.merchantinfo_menu li a {
    justify-content: flex-start;
    padding-left: 4rem !important;
}

@media (max-width: 1399px) {
    .dealer-information-block .left-info-block {
        width: 70%;
        float: left;
    }

    .dealer-information-block .right-contact {
        width: 30%;
    }
}

@media (max-width: 991px) {
    .dealer-information-block .left-info-block {
        width: 65%;
    }

    .dealer-information-block .right-contact {
        width: 32%;
    }
}

@media (max-width: 768px) {
    .dealer-information-block .left-info-block {
        width: 100%;
    }

    .dealer-information-block .right-contact {
        width: 100%;
    }
}

.contact-dealer-block .bootstrap-select.form-control {
    line-height: 34px;
    height: 34px;
    width: 100%;
    border: 1px solid #ececec;
    border-radius: 0;
    color: #4a4a49;
    padding: 0px 12px;
}

.contact-dealer-block .form-control {
    line-height: 34px;
    height: 34px;
    width: 100%;
    border: 1px solid #ececec;
    border-radius: 0;
    color: #4a4a49;
    padding: 0px 12px;
}

.contact-dealer-block .data-block label {
    font-size: 12px;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-dealer-block h3 {
    border-bottom: none;
}

.contact-dealer-block h2 {
    font-size: 36px;
    border-top: 1px solid #000000;
    padding-top: 60px;
}

.law-block h2 {
    font-size: 36px;
    border-top: 1px solid #000000;
    padding-top: 60px;
}

.contact-dealer-block .border-block {
    border-bottom: none;
}

.contact-dealer-block button.btn.btn-primary {
    padding-left: 6rem;
    padding-right: 6rem;
}

.dx-material-details-wrap .dx-material-title .fa, .dx-material-details-wrap .dx-accordion-title .fa {
    position: absolute;
    right: 7px;
    width: auto;
    height: auto;
    top: 50%;
    margin-top: -18px;
    padding: 8px;
}

.dd-shortcode-dxmaterial2.closed .dx-material-details-wrap {
    padding: 10px 20px;
    left: 0;
}

.shipping_config .payment-thumb {
    padding: 20px 2px;
}

.shipping_config .payment-thumb.payment-thumb-cc-noval {
    padding: 7px 2px;
}

.payment-thumb .img-responsive {
    margin: auto;
}

.dx-arrow {
    float: right;
    background: url("/out/phoenix/src/img/next.png") no-repeat scroll right center / 5% auto
}

.shipping_config .payment-title .radio label {
    line-height: 18px;
}

.shipping_config .payment-title .radio label .iradio_minimal,
.checkbox-outer .icheckbox_square,
.radio-outer .iradio_minimal,
.category-list .iradio_minimal {
    top: -4px;
    margin: 0 !important;
    padding: 0 !important;
    width: 17px !important;
    height: 17px !important;
    border: 2px solid #96be0d !important;
    border-radius: 4px !important;
    vertical-align: middle !important;
    background-position: center center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    transition: background 0.15s ease-in-out !important;
}

.couponBox .input-group-btn {
    border-bottom: 1px solid #96be0d;
}

.shipping_config .payment-title .radio label .iradio_minimal.checked,
.category-list .iradio_minimal.checked,
.radio-outer .iradio_minimal.checked,
.checkbox-outer .icheckbox_square.checked {
    background-color: #96be0d !important;
    background-image: url(/modules/dx/configurator/images/check.png) !important;
    width: 17px !important;
    height: 17px !important;
    border-radius: 4px !important;
}

.shipping_config .payment-title .radio label .iradio_minimal {
    top: 18px;
}

.newsletter-block .radio-outer .iradio_minimal {
    top: 0;
}

.newsletter-block .radio-outer label {
    padding: 0 0 0 21px;
}

.privacy-policy-block .checkbox-outer label {
    line-height: 25px;
}

.dx-arrow-link {
    position: absolute;
    right: 16px;
    height: 25px;
    z-index:1000;
}

.dx-arrow-link.dx-arrow-link-short {
    width: 20px;
}

.top-banner #dropzone {
    margin-right: auto;
}

.top-dropzone-ctn #dropzone {
    margin-right: auto;
}

#dropzone {
    height: auto;
}

#dropzone.configurator, .configurator #dropzoneBox1, .configurator #dropzoneBox2 {
    height: 510px;
    background-size: cover;
}

.category-list li label {
    padding-left: 25px !important;
}

.category-list .iradio_minimal {
    top: 0 !important;
}

.category-list .iradio_minimal.checked:after {
    background: none;
}

.basketItemDesc h6 a, .basketItemDesc h6 {
    color: #000 !important;
}

.config-block .checkbox-outer .icheckbox_square {
    left: 0 !important;
    top: 3px !important;
}

.checkout_new .basketSummary.globalbasket {
    max-width: none;
}

.checkout_new .globalbasket.inner-total-basket {
    margin-right: 0;
}

.title-inner {
    text-transform: none;
}

.page-heading h1 {
    color: #96be0d;
}

.page-heading.mm-style h1 {
    color: #0098a1;
}

.checkout_new .dxPersonalOrderNumberTable {
    margin-left: 0;
}

.dxadressheader.dxAdditionalAdressheader {
    margin-bottom: 30px;
}

.dxadressheader.dxAdditionalAdressheader em {
    transform: rotate(-90deg);
    position: absolute;
    top: 5px;
    left: 290px;
}

.dxadressheader.dxAdditionalAdressheader.active em {
    transform: rotate(-270deg);
}

.shipping_config .border_box h3 {
    padding-bottom: 0;
}

.shipping_config .border_box label {
    padding-bottom: 35px;
}

.shipping_config .left_shipping_config ul {
    margin-bottom: 5px;
}

.nl_block.newsletter-block p, .nl_block.newsletter-block h1 {
    color: #fff;
}

.nl_block .row {
    max-width: none;
}

.newsletter-block .checkbox-outer .icheckbox_square {
    top: 0;
}

.newsletter-block .radio-outer .iradio_minimal {
    background: #fff;
}

.banner .banner-bottom .checkbox-outer {
    margin: 0 5px 0 0;
}

.dropzone-ctn .dropzone-ctn-bottom .checkbox-outer {
    margin: 0 5px 0 0;
}

.shipping_config ul.ssl-listing li:nth-child(1) {
    width: 31%;
}

.shipping_config ul.ssl-listing li:nth-child(2) {
    width: 34%;
}

.shipping_config ul.ssl-listing li:nth-child(3) {
    width: 35%;
}

#thankyouPage .payment a img {
    position: relative;
    height: auto;
    width: auto;
}

#thankyouPage .payment a {
    float: none;
    padding-left: 0;
}

@media (min-width: 1440px) {
    .already-done .info-block {
        top: 60px;
    }
}

.questions {
    padding: 60px 0;
}

.questions hr {
    margin-bottom: 60px;
}

.alert-danger {
    background-color: #fff;
    color: inherit;
}

.alert-danger a {
    color: #d9534f;
    font-weight: bold;
}

.alert-danger a:hover {
    text-decoration: underline;
}

.alert.alert-danger {
    border-radius: 0;
    border: 2px solid #d9534f;
}

.form-wrap .checkbox-outer .icheckbox_square {
    top: 2px;
}

.checkbox-outer a {
    text-decoration: underline;
}

.header-top.inner-header .header-logo {
    padding: 21px 15px 0 15px;
}

.address-selection-block h3.sub-heading.toogle-heading em {
    right: 5px;
}

@media (max-width: 1439px) {
    .how-works {
        padding: 0 0 10px;
    }
}

@media (max-width: 1199px) {
    .how-works {
        padding: 10px 0;
    }
}

.banner .banner-bottom .iradio_minimal.checked:after {
    background-color: transparent;
}

.dropzone-ctn .dropzone-ctn-bottom .iradio_minimal.checked:after {
    background-color: transparent;
}

@media (max-width: 1199px) {
    .how-works .info {
        padding: 0 150px 50px;
    }
}

@media (max-width: 1024px) {
    .how-works .info {
        padding: 0 100px 50px;
    }
}

@media (max-width: 991px) {
    .how-works .info {
        padding: 0 30px 50px;
    }
}

@media (max-width: 1199px) {
    .how-works .btn-block {
        margin-top: 60px;
    }
}

.dd-shortcode-text .already-done .banner {
    overflow: hidden;
}

.dd-shortcode-text .already-done .dropzone-ctn {
    overflow: hidden;
}

.questions ul {
    margin: 79px 70px 0 67px !important;
}

.questions ul a i img {
    transition: none;
}

.cmsContent.cms-container .dd-shortcode-text ul.privacy li {
    position: relative;
    padding: 2px 0;
    padding-left: 25px;
    list-style: none;
}

.cmsContent.cms-container .dd-shortcode-text ul.privacy li::before {
    content: '\25ba';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 3px;
}

.alert-info {
    font-size: inherit;
    color: inherit;
    border: 2px solid #96be0d;
    font-weight: bold;
}

@media (max-width: 991px) {
    #dropzone.configurator, .configurator #dropzoneBox1, .configurator #dropzoneBox2 {
        height: 200px;
    }
}

.technical-information .right-col {
    background: white;
    padding: 40px;
}

.technical-information .right-col li {
    color: #333333;
    font-weight: bold;
}

.centervideo {
    display: flex;
    justify-content: center;
}

.advantages-block .video-block {
    width: 42.3em;
}

.dx_visual-cms-top-menu ul {
    margin: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #0098a1;
    padding: 0;
}

h2 {
    line-height: 44px;
}

h3 {
    line-height: 30px;
}

@media (max-width: 991px) {
    .dx-landing-nav li a {
        font-size: 10px;
        padding: 5px;
    }

}

@media (max-width: 767px) {
    .advantages-block {
        padding: 10px 0;
    }
}

.centerit {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mg-left15 {
    margin-left: -15px;
}

.width490 {
    height: auto;
    width: 490px;
}

.mg-bottom30 {
    margin-bottom: 30px;
}

.technical-information {
    padding: 40px;
}

.technical-information .row {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767px) {
    .technical-information .col-sm-6 {
        margin-bottom: 0;
    }

    .technical-information {
        padding: 10px;
    }

    .technical-information .custom-listing li {
        font-size: 10px;
    }
}

@media (max-width: 1024px) {
    h1 {
        line-height: 63px;
    }
}

@media (max-width: 1024px) {
    .advantages-block-all {
        width: 100%;
    }

    .flexul {
        display: flex;
        flex-direction: column;
    }

    .fullwidth {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    ul.flexul li {
        margin-bottom: 10px;
    }

    section.questions .container p {
        margin-bottom: 40px;
        margin-top: 25px;
    }

    .technical-information .right-col {
        width: 100%;
    }

}

.technical-information .right-col {
    border-radius: 0;
    -ms-border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.flexul {
    display: flex;
    justify-content: space-between;
}

.fullwidth {

    text-align: center;
    font-size: 13px;
}

.dx-section-padding .btn-primary {
    text-transform: none;
}

.materials-accordion-block .green-btn {
    text-transform: none;
}

.mayint .info-block .flexul .custom-btn, .mayint .info-block .flexul .custom-btn:focus {
    font-size: 12px;
}

@media (min-width: 1920px) {
    .mayint .info-block .flexul .custom-btn, .mayint .info-block .flexul .custom-btn:focus {
        padding: 0 35px;
        height: auto;
    }
}

.lineheight {
    line-height: 40px;
}

@media (min-width: 1025px) and (max-width: 1595px) {
    ul.flexul li:nth-child(2) {
        margin: 0 10px;
    }

    .info-block .flexul .custom-btn, .custom-btn:focus {
        font-size: 13px;
        line-height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.invalid-card-currency {
    margin-top: 0;
    margin-left: 15px;
}

@media (max-width: 991px) {
    .invalid-card-currency {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .invalid-card-currency {
        margin-right: 0;
        margin-left: 0;
    }
}

.btn-primary {
    border-radius: 0;
    background-color: #96be0d;
    border-color: #96be0d;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #0098a1;
    border-color: #0098a1;
    outline: none;
}

@media (max-width: 1595px) {
    .basketcontents_table .basketItemDesc_basket {
        max-width: 300px;
    }
}

@media (max-width: 1400px) {
    .basketcontents_table .basketItemDesc_basket {
        max-width: 220px;
    }
}

@media (max-width: 1199px) {
    .basketcontents_table .basketItemDesc_basket {
        max-width: 160px;
    }

    .basketcontents_table .basketItemDesc_order {
        max-width: 75px;
    }

    .dxMerchantBasket .basketcontents_table .table-bordered .quantity a.delete {
        margin-left: 8px;
    }
}

@media (max-width: 1024px) {
    .basketcontents_table .basketItemDesc_basket {
        max-width: 110px;
    }
}

@media (max-width: 991px) {
    .basketcontents_table .basketItemDesc_basket {
        max-width: 235px;
    }

    .basketcontents_table .basketItemDesc_order {
        max-width: 178px;
    }
}

@media (max-width: 430px) {
    .inner-header .upper-header > ul > li {
        width: 55px;
        border-right: none;
    }

    .inner-header .upper-header ul li.open > a {
        background: transparent;
    }
}

ul.social-icons {
    margin-bottom: 25px;
}

ul.social-icons .svg-icon {
    fill: #757575;
}

ul.social-icons .svg-icon.facebook:hover {
    fill: #475993;
}

ul.social-icons .svg-icon.twitter:hover {
    fill: #00aced;
}

ul.social-icons .svg-icon.xing:hover {
    fill: #009090;
}

ul.social-icons .svg-icon.youtube:hover {
    fill: #FF0000;
}

ul.social-icons .svg-icon.instagram:hover {
    fill: #000;
}

ul.social-icons .svg-icon.linkedin:hover {
    fill: #0073b0;
}

.footer-bottom .award img, .footer-bottom .cert img {
    width: 150px;
}

.footer-bottom .shop-award img, .footer-bottom .zinc-award img {
    width: 100px;
}

@media (min-width: 1600px) {
    footer .footer-bottom .col-xl-9 {
        width: 75%;
    }
}

@media (max-width: 1399px) {
    footer .footer-bottom .signup-link {
        text-align: center;
    }
}

@media (max-width: 1399px) {
    footer .footer-bottom .col-lg-8, footer .footer-bottom .col-lg-4 {
        width: 100% !important;
    }
}

@media (max-width: 991px) {

    ul.social-icons {
        flex-direction: column;
    }

    ul.social-icons > .cert-div, ul.social-icons > .social-div {
        justify-content: center !important;
        margin: 10px 0;
    }

}

ul.social-icons {
    display: flex;
    justify-content: space-around;
}

ul.social-icons > .cert-div, ul.social-icons > .social-div {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 767px) {

    ul.social-icons > .cert-div {
        flex-direction: column;
    }

    ul.social-icons > .cert-div > li {
        margin-bottom: 10px;
    }

    ul.social-icons > .cert-div > li.award, footer .footer-bottom .social-icons li.award.shop-award {
        margin-right: 0;
    }

    footer .footer-bottom .social-icons li.award.zinc-award {
        margin-left: 0;
    }

    .white-divider {
        display: none;
    }
}

.dxErrorBox {
    background-color: red;
    padding: 15px;
    color: white;
    font-weight: bold;
}

.dxLandingHeaderImage {
    background: url("/out/pictures/ddmedia/SchulungBeratungHeader.jpg") no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    height: 525px;
    width: 100%;
    position: relative;
}

.dxLandingHeaderImageInner {
    position: absolute;
    left: 7%;
    bottom: 15%;
}

.dxLandingHeaderImage h2 {
    font-size: 46px !important;
    font-weight: bold;
    padding-bottom: 5px;
}

.dxLandingHeaderImage h4 {
    color: #fff;
    padding-bottom: 20px;
}

.dxLandingHeaderImage p {
    font-weight: bold;
    color: #fff;
}

@media (max-width: 1399px) {
    .dxLandingHeaderImage h2 {
        font-size: 2.5em !important;
        color: #fff;
    }

    .dxLandingHeaderImage h4 {
        font-size: 1.3em !important;
        color: #fff;
    }

    .dxLandingHeaderImage p {
        font-size: 2.5em !important;
        color: #fff;
    }
}

@media (max-width: 878px) {
    .dxLandingHeaderImage {
        height: 300px;
    }

    .dxLandingHeaderImage h2 {
        font-size: 1.5em !important;
        padding-bottom: 0;
        line-height: inherit;
    }

    .dxLandingHeaderImage h4 {
        font-size: 1em !important;
        padding-bottom: 5px;
    }
}

@media (max-width: 630px) {
    .dxLandingHeaderImage p {
        font-size: 2.5em !important;
        color: #fff;
    }

    .dxLandingHeaderImage {
        height: 250px;
    }

    .dxLandingHeaderImage h2 {
        display: none;
    }

    .dxLandingHeaderImage h4 {
        display: none;
    }
}

.technical-informationv1 {
    background: url(/out/pictures/ddmedia/GrundlagenDerAdditivenFertigungBackground.jpg) no-repeat center center;
    background-size: cover;
}

.technical-informationv2 {
    background: url(/out/pictures/ddmedia/conradbackground.jpg) no-repeat center center;
    background-size: cover;
}

.form-group .bootstrap-select.btn-group {
    padding: 0;
}

.btn-group.bootstrap-select.form-control .btn.dropdown-toggle.btn-default {
    line-height: 27px;
}

.filter-option.pull-left {
    padding-left: 6px;
}

/*Important for the dx_termines module. Fixes a bug which wont show first 1 or 2 dates*/
#dk0-listbox.dk-select-options {
    max-height: 300px !important;
}

.accountLoginView .effect-input label {
    top: 0;
}

.dd-shortcode-text .p-text {
    min-height: 220px;
}

.traning-time {
    margin-bottom: 155px;
    margin-top: 77px;
}

.traning-time .article-block-inner {
    display: flex;
    justify-content: space-between;
}

.traning-time .article-block-inner .img-block {
    position: relative;
    width: 50%;
}

.traning-time .article-block-inner .img-block img {
    display: block;
    width: 100%;
}

.traning-time .article-block-inner .article-detail h2 {
    margin-bottom: 50px;
    padding: 0;
    font-weight: 600;
    color: #707070;
    font-size: 28px;
    line-height: 40px;
    margin-top: 0;
    padding-right: 272px
}

.traning-time .article-block-inner .article-detail {
    width: 50%;
    background: #F4F4F4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.traning-time .article-block-inner .article-detail .article-detail-inner {
    padding: 0 40px 0 94px
}

.traning-time .article-block-inner .article-detail .article-detail-inner a.training-info-link:hover {
    background: #0098a1;
    color: #FFF;
}

.traning-time .article-block-inner .img-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.traning-time .article-block-inner .article-detail .article-detail-inner a.training-info-link {
    padding: 24px 67px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    text-align: center;
    background: #96BE0D
}

.traning-time .article-block-inner .article-detail .article-detail-inner .location-outer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.traning-time .article-block-inner .article-detail .article-detail-inner .location {
    margin-right: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.traning-time .article-block-inner .article-detail .article-detail-inner .location:last-child {
    margin-right: 0
}

.traning-time .article-block-inner .article-detail .article-detail-inner .location span {
    color: #707070;
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
}

.traning-time .article-block-inner .article-detail .article-detail-inner .location i.first {
    height: inherit;
    width: inherit;
    color: #96BE0D;
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    font-style: normal;
}

.traning-time .article-block-inner .article-detail .article-detail-inner .location i {
    height: 22px;
    width: 17px;
    display: inline-block;
    color: #96BE0D;
    margin-right: 12px;
}

.traning-time .article-block-inner .article-detail .article-detail-inner .traning-block p {
    font-weight: 600;
    border-bottom: 1px solid #F4F4F4;
    padding-bottom: 20px;
    color: #707070;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 18px 0;
}

.traning-time .article-block-inner .article-detail .article-detail-inner .traning-block {
    max-width: 504px;
    width: 100%;
    margin-bottom: 28px;
    padding: 35px 30px 30px 33px;
    background: #FFFFFF
}

.traning-time .article-block-inner .article-detail .article-detail-inner a.dxAutolink {
    color: #707070;
    cursor: text;
}

@media (max-width: 1600px) {
    .traning-time .article-block-inner .article-detail h5 {
        padding-right: 0
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner {
        padding: 35px;
    }

    .traning-time .article-block-inner .article-detail h2 {
        margin-bottom: 25px;
        line-height: 33px;
        padding: 0;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .traning-block {
        padding: 20px;
        margin-bottom: 20px
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .traning-block p {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner a.training-info-link {
        padding: 20px 60px;
    }
}


@media (max-width: 1024px) {
    .traning-time .article-block-inner .article-detail h5 {
        padding-right: 0;
        margin: 0 0 20px 0;
        font-size: 26px;
        line-height: 30px
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .traning-time {
        margin-bottom: 60px;
        margin-top: 60px;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .traning-block p {
        padding-bottom: 10px;
        margin: 0 0 10px 0
    }

    .traning-time .article-block-inner .article-detail h2 {
        margin-bottom: 15px;
        font-size: 22px;
        line-height: 26px;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner a.training-info-link {
        padding: 10px 20px;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .location {
        margin-right: 25px
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .traning-time .article-block-inner {
        flex-wrap: wrap;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner {
        padding: 20px
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .traning-block {
        max-width: 100%;
        width: 100%;
    }

    .traning-time .article-block-inner .article-detail {
        width: 100%;
    }

    .traning-time .article-block-inner .img-block {
        width: 100%;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner a.training-info-link {
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .traning-time .article-block-inner .article-detail .article-detail-inner .location i {
        height: 14px;
        width: 14px;
        margin-right: 8px
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .location {
        margin-right: 18px;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .location i.first {
        font-size: 18px;
        line-height: 22px;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .location span {
        font-size: 14px;
    }

    .traning-time .article-block-inner .article-detail .article-detail-inner .traning-block {
        padding: 15px 12px;
    }
}

.cmsContent.cms-container .btn {
    margin-bottom: 10px;
    margin-right: 10px;
}

@media (max-width: 500px) {
    .cmsContent.cms-container .btn {
        white-space: unset;
        width: 100%;
    }
}

.foundItem {
    margin-bottom: 30px
}

@media (max-width: 991px) {
    .dx-section-image-mb-30 {
        margin-bottom: 30px;
    }

    .dx-section-image-mt-30 {
        margin-top: 30px;
    }
}


#dxMeAsRepresentorList, #dxRepresentorCreate {
    margin-top: 30px;
}

#dxRepresentorCreate table tr {
    margin-bottom: 10px;
}

#dxRepresentorLoginList .logins {
    background-color: #ebebe4;
    padding: 25px;
}

@media (min-width: 768px) {
    .footer-bottom .award-div .golden-cart {
        margin: auto;
    }

    .footer-bottom .social-div {
        text-align: right;
    }
}

@media (min-width: 1200px) {
    .footer-bottom .award-div {
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .cert-div .tuev-siegel {
        max-height: 70px !important;
    }

    .cert-div .dqs-siegel {
        max-height: 70px !important;
    }
}

@media (max-width: 767px) {
    .cert-div {
        margin-bottom: 30px;
    }

    .row-social-icons .text-right {
        text-align: left;
    }
}

.cert-div h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: inherit;
}

.cert-div .tuev-siegel {
    max-height: 100px;
    margin-right: 20px;
}

.cert-div .dqs-siegel {
    max-height: 100px;
}

.golden-cart {
    max-height: 90px;
}

.row-social-icons {
    margin-top: 30px;
}

.newsletter-btn {
    text-align: center;
}

.topo-xyz input {
    border-radius: 0 !important;
}

a#loadcasecopy {
    padding: 0;
    background: #96be0d;
    height: 18px;
}

a#loadcasecopy i {
    font-size: 16px;
    color: #fff;
}

/* no shadow for buttons in bootstrap dropdowns */
.form-control > button {
    box-shadow: none;
}

/* dxbanner */
.dx-banner {
    font-size: 16px;
    padding: 1.5em;
    border: 1px solid #96be0d;
}

.dx-banner .heading {
    font-size: 2em;
    display: block;
    margin-bottom: 0.5em;
}

.dx-banner .heading i {
    display: inline-block;
    padding-right: 0.4em;
}

/** BEGIN Tooltip **/
.info-tooltip {
    cursor: pointer;
}

.info-tooltip img {
    width: 14px;
    height: 14px;
}

.tooltip-block {
    font-size: 14px;
    color: #4a4a49;
    background: #ffffff;
    border: 1px solid #96be0d;
    padding: 15px;
    position: absolute;
    left: 20px;
    z-index: 1;
    border-radius: 4px;
    display: none;
}

.info-title {
    float: left;
}

body header {
    height: 150px;
}

body main {
    margin-top: 138px;
}

@media (min-width: 992px) {
    body header {
        height: auto;
    }
    body main {
        margin-top: 204px;
    }
}

@media (min-width: 1440px) {
    body main {
        margin-top: 136px;
    }
}

@media(max-width: 991px) {
    .small-header header {
        height: 140px;
    }
}

header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price {
    width: 100%;
}
header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price #priceviewmode-form {
    margin: 7px 0;
}

@media(min-width: 569px) {
    header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price {
        text-align: left;
        padding-left: 28px;
    }
}

@media(min-width: 992px) {
    header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price {
        padding-left: 5px;
    }
}

@media(min-width: 1200px) {
    header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price {
        padding-left: 13px;
    }
}

@media(min-width: 1440px) {
    header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price {
        width: auto;
    }
    .inner-header .upper-header ul li > a {
        padding: 13px 18px 16px;
    }
}

header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price .dx-accounttype-private, header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price .dx-accounttype-business {
    color: darkgrey;
}

header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price .dx-accounttype-private.active, header .inner-header .header-top .upper-header ul > li.dx-change-accounttype-price .dx-accounttype-business.active {
    color: white;
}

body.is-checkout #header .inner-header .upper-header ul > li.dx-change-accounttype-price .dx-accounttype-private, body.is-checkout #header .inner-header .upper-header ul > li.dx-change-accounttype-price .dx-accounttype-business {
    color: darkgrey;
}

body.is-checkout #header .inner-header .upper-header ul > li.dx-change-accounttype-price .dx-accounttype-private.active, body.is-checkout #header .inner-header .upper-header ul > li.dx-change-accounttype-price .dx-accounttype-business.active {
    color: black;
}

.dx-register-success-box {
    background: #96be0d;
    padding: 20px;
    color: white;
    margin: 40px 0;
}

.dx-register-success-headline {
    font-size: 27px;
    font-weight: 600;
}

.dx-success-pre {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.dx-register-success {
    margin-top: 0 !important;
}

.dx-register-success .dx-logo {
    margin-top: 30px;
    display: block;
}

.dx-register-success .dx-register-success-headline {
    padding-top: 0;
}

.dx-register-success .dx-register-success-box {
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.dx-register-success .dx-register-success-box img {
    margin-right: 20px;
}

@media (max-width: 991px) {
    .dx-register-success .dx-register-success-box {
        flex-direction: column;
        text-align: center;
    }

    .dx-register-success .dx-register-success-box img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .dx-fake-footer-inner {
        width: auto;
    }
}

.dx-register-success .questions {
    padding-top: 0;
}

.dx-register-success .questions .container {
    padding-left: 0;
    padding-right: 0;
}

.dx-fake-footer {
    background: #e8e8e8;
    position: relative;
    padding: 20px;
}

.dx-fake-footer-inner {
    margin: 0 auto;
 }

.dx-fake-footer h3 {
    font-weight: 600;
}

.dx-fake-footer ul li a {
        color: #282828;
    }
    .dx-fake-footer ul li a:hover {
        color: #009EC0;
    }

@media (min-width: 480px) {
    .dx-fake-footer ul {
        display: flex;
    }
    .dx-fake-footer ul li {
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .dx-fake-footer {
        padding: 40px 20px;
    }
    .dx-fake-footer ul li {
        margin-right: 50px;
    }
    .dx-fake-footer-inner {
        width: 970px;
    }
}

@media (min-width: 992px) {
    .dx-fake-footer-inner {
        width: 1170px;
    }
}

@media (min-width: 1400px) {
    .dx-fake-footer-inner {
        width: 1370px;
    }
}

@media (min-width: 1595px) {
    .dx-fake-footer-inner {
        width: 1560px;
    }
}

.dx-start-link {
    color: #b2b2b2;
}

.dx-order-history__filter-list {
    margin: 65px 0 30px 0;
    display: none;
}
.dx-order-history__filter-list__list {
    display: flex;
    justify-content: space-between;
}
.dx-order-history__filter-list__listitem {
    list-style: none;
    font-weight: 600;
    flex-basis: 25%;
    width: 25%;
    font-size: 13px;
    cursor: pointer;
}
@media (min-width: 569px) {
    .dx-order-history__filter-list__listitem {
        font-size: 15px;
    }
}
@media (min-width: 569px) {
    .dx-order-history__filter-list__listitem {
        flex-basis: 18%;
        width: 18%;
    }
}
.dx-order-history__filter-list__listitem--active.desc .dx-order-history__sort-icon {
    transform: rotate(180deg);
}
.dx-order-history__filter-list__listitem--active .dx-order-history__sort-icon {
    display: inline-block;
}
.dx-order-history__filter-list__listitem:not(.dx-order-history__filter-list__listitem--active):hover .dx-order-history__sort-icon {
    display: inline-block;
}
.dx-order-history__sort-icon {
    display: none;
    width: 12px;
    position: relative;
    top: 1px;
    transition: 0.3s;
}
.dx-order-history__sort-icon__svg {
    width: 100%;
    height: auto;
}
.dx-order-history__sort-icon--active {
    display: inline-block;
}
.dx-order-history__sort-icon--active:hover {
    transform: rotate(180deg);
}
.dx-order-history__acc-icon {
    position: absolute;
    top: 50%;
    right: 1px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%) rotate(180deg);
}
@media (min-width: 480px) {
    .dx-order-history__acc-icon {
        right: 15px;
    }
}
.dx-order-history__acc-icon__svg {
    transition: 0.3s;
    width: 100%;
    height: auto;
    fill: #0098a1;
}
.dx-order-history__accordion__content:before {
    display: none;
    content: "";
    background-image: url(../../img/ajax-loader.gif);
    background-size: contain;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.dx-order-history__accordion__content.loading:before {
    display: block;
}
.dx-order-history__accordion--dx-active .dx-order-history__acc-icon__svg {
    transform: rotate(180deg);
    fill: #fff;
}
.dx-order-history__accordion--dx-active .dx-order-history__result-row {
    background: #0098a1;
    color: #fff;
}
.dx-order-history__result-ctn {
    display: none;
    position: relative;
    min-height: 200px;
}
.dx-order-history__result-ctn.loading {
    display: block;
}
.dx-order-history__result-ctn.loading .dx-order-history__ajax-loader {
    display: block;
}
.dx-order-history__result-ctn.loading:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(243, 254, 255, 0.75);
}
.dx-order-history__ajax-loader {
    display: none;
    position: absolute;
    left: 50%;
    top: 90px;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.dx-order-history__result-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
    border-top: 2px solid #0098a1;
    transition: 0.3s;
}
.dx-order-history__result-row:hover {
    background: #0098a1;
    color: #fff;
    cursor: pointer;
}
.dx-order-history__result-row:hover .dx-order-history__acc-icon__svg {
    fill: #fff;
}
.dx-order-history__summe {
    display: none;
}
@media (min-width: 569px) {
    .dx-order-history__summe {
        display: inline-block;
    }
}
.dx-order-history__result-col {
    flex-basis: 24%;
    width: 24%;
}
@media (min-width: 569px) {
    .dx-order-history__result-col {
        flex-basis: 18%;
        width: 18%;
    }
}
.dx-order-history__result-col .dx-year {
    display: none;
}
@media (min-width: 569px) {
    .dx-order-history__result-col .dx-year {
        display: inline-block;
    }
}
.dx-order-history__user-info-area {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap;
    margin-bottom: 45px;
}
.dx-order-history__info-box {
    padding: 25px;
    border: 1px solid lightgrey;
    display: flex;
    flex-direction: column;
    flex-basis: calc(33% - 16px);
    width: calc(33% - 16px);
}
@media (max-width: 647px) {
    .dx-order-history__info-box {
        flex-basis: 100%;
        width: 100%;
    }
}
@media (min-width: 648px) {
    .dx-order-history__info-box span {
        font-size: 13px;
    }
}
@media (min-width: 992px) {
    .dx-order-history__info-box span {
        font-size: 14px;
    }
}
.dx-order-history__heading {
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
@media (min-width: 647px) {
    .dx-order-history__heading {
        font-size: 14px;
    }
}
@media (min-width: 992px) {
    .dx-order-history__heading {
        font-size: 18px;
    }
}
.dx-order-history__basket-summary {
    flex-basis: 100%;
    width: 100%;
    margin-top: 50px;
}
@media (min-width: 569px) {
    .dx-order-history__basket-summary {
        flex-basis: calc(70% - 16px);
        width: calc(70% - 16px);
    }
}
@media (min-width: 992px) {
    .dx-order-history__basket-summary {
        flex-basis: calc(50% - 16px);
        width: calc(50% - 16px);
    }
}
.dx-order-history__basket-summary .table-responsive {
    padding: 0;
    margin: 0;
}
.dx-order-history__order-buttons {
    margin-top: 50px;
    flex-basis: calc(33% - 16px);
    width: calc(33% - 16px);
}
@media (max-width: 598px) {
    .dx-order-history__order-buttons {
        flex-basis: 100%;
        width: 100%;
    }
}
.dx-order-history__button {
    background: #96be0d;
    text-align: center;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 12.48px;
    line-height: 16px;
    padding: 14px 25px;
    color: #fff;
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    transition: 0.3s;
    width: 100%;
    border: none;
}
.dx-order-history__button:hover {
    background: #0098a1;
    color: #fff;
}
.dx-order-history__reorder {
    flex-basis: 100%;
    width: 100%;
    margin-top: 50px;
}
.dx-order-history__reorder__tablerow td {
    vertical-align: middle !important;
}
.dx-order-history__reorder__tablerow td h6 {
    margin: 0;
}
.dx-order-history__reorder__tablerow td .basketItemDesc h6 small {
    display: block;
    margin-top: 8px;
    font-weight: 600;
}
.dx-order-history__reorder__tablerow td.totalPrice .orderhistory-taxinfo {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #77828a;
}

.dx-order-history__reorder__tablerow .basketImage img {
    height: 100%;
    width: auto;
    height: 120px;
}
.dx-order-history__merch-title {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
}
@media (max-width: 568px) {
    .dx-order-history__status {
        margin-right: 15px;
    }
}

/* Ticket https://dixeno.eu.teamwork.com/#/tasks/17115054 */

.dx-mm-header {
    background: #4a4a49;
    padding: 10px 0;
}
.dx-mm-header .dxmarketplacelogo {
    padding: 0 !important;
    width: 130px;
}
@media (max-width: 768px){
    .dx-mm-header .dxmarketplacelogo {
        width: 80px !important;
    }
}

.dx-mm-header__search-inputs {
    display: flex;
    margin-top: 14px;
}
.dx-mm-header__search-inputs #searchParam {
    flex-basis: calc(100% - 40px);
    width: calc(100% - 40px);
    border: 2px solid #0098a1;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-right: none;
    padding: 10px 20px;
}
.dx-mm-header__search-inputs button {
    flex-basis: 40px;
    width: 40px;
    background: #0098a1;
    border: 2px solid #0098a1;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-left: none;
}
.dx-mm-header__search-inputs button img {
    margin: 0 auto;
}
.dx-mm-header__search-inputs button:hover {
    background: #007178;
    border-color: #007178;
}

.dx-sidebar-left {
    margin-bottom: 5rem;
}
.dx-sidebar-left #sidebar > .well {
    margin-top: 0;
}
.dx-sidebar-left #sidebar > .well .page-header {
    padding-top: 0;
}
.dx-sidebar-left .dx-materials-more__category-list ul.nav li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dx-sidebar-left .dx-materials-more__category-list ul.nav li.active > a {
    background-color: #0098a1;
}
.dx-sidebar-left .dx-materials-more__category-list ul.nav > li > ul.nav ul.nav {
    margin-left: 10px;
}
.dx-sidebar-left .dx-materials-more__deep-layer {
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}
.dx-sidebar-left #filterList {
    margin-top: 3rem;
}
.dx-sidebar-left #filterList > strong {
    display: none;
}
.dx-sidebar-left #filterList .btn-group {
    margin-bottom: 2rem;
}
.dx-sidebar-left #filterList .btn-group button {
    text-align: left;
    border: none;
}
.dx-sidebar-left #filterList .btn-group button strong {
    display: block;
    color: #0098a1;
}
.dx-sidebar-left #filterList .btn-group:hover {
    color: #282828;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__title {
    color: #0098a1;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__input {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    transition: 0.3s;
    cursor: pointer;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__input:hover {
    color: #96be0d;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__label {
    margin: 0;
    padding: 0;
    padding-left: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__listitem {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__listitem:hover .dx-attributes__label {
    color: #96be0d;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__rating {
    cursor: pointer;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__rating i:before {
    color: #0098a1;
    font-size: 16px;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__rating i.fa-star-o {
    display: block;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__rating i.fa-star {
    display: none;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__rating--filled i.fa-star-o {
    display: none;
}
.dx-sidebar-left #filterList .btn-group .dx-attributes__rating--filled i.fa-star {
    display: block;
}

.dx-mm-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.dx-mm-list__category-item {
    flex-basis: 100%;
    width: 100%;
    margin: 1rem 0;
    margin-right: 10px;
    text-align: center;
}
@media (min-width: 480px) {
    .dx-mm-list__category-item {
        flex-basis: 47%;
        width: 47%;
    }
}
@media (min-width: 992px) {
    .dx-mm-list__category-item {
        flex-basis: 33%;
        width: 33%;
    }
}
@media (min-width: 1442px) {
    .dx-mm-list__category-item {
        flex-basis: 24%;
        width: 24%;
    }
}
@media (min-width: 1600px) {
    .dx-mm-list__category-item {
        flex-basis: 19%;
        width: 19%;
    }
}
.dx-mm-list__image {
    margin-bottom: 0.7rem;
}
.dx-mm-list__anchor {
    font-size: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dx-mm-hero {
    margin-bottom: 6rem;
}
.dx-mm-hero .dd-background {
    position: relative;
}
.dx-mm-hero .dd-background:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.3;
    content: "";
}
.dx-mm-hero .dd-hero-box .dd-hero-inner .dd-hero-holder {
    color: #fff;
    padding-top: 180px;
}
.dx-mm-hero .dd-hero-box .dd-hero-inner .dd-hero-holder h1 {
    margin: 0;
    color: #fff;
}

.dx-mm-title {
    text-align: center;
    font-size: 26px;
    color: #0098a1;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.dx-attributes__reset-filter {
    margin-top: 2.5rem;
}

.dx-main-category-content .dxCategoryProducts .pagination > li > a {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 152, 161, 0.35);
    color: #0098a1;
    margin-right: 3px;
    margin-left: 0;
    border: none;
}
.dx-main-category-content .dxCategoryProducts .pagination > li > a:hover {
    background: #0098a1;
    color: #fff;
}
.dx-main-category-content .dxCategoryProducts .product-section .product-list > li > form .product-box {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
}
.dx-main-category-content .dxCategoryProducts .product-section .product-list > li > form .product-box .proceed-btn{
    margin-top: auto;
}
.dx-main-category-content .dxCategoryProducts .product-section .product-list > li > form .product-box:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.dx-mm-button {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 152, 161, 0.35);
    color: #0098a1;
    margin-right: 3px;
    margin-left: 0;
    border: none;
    padding: 4px 10px;
}
.dx-mm-button:hover {
    background: #0098a1 !important;
    color: #fff !important;
}

.open > .dx-mm-dropdown {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 152, 161, 0.35);
}
.open > .dx-mm-dropdown > li > a {
    background-image: none;
    background-color: #fff;
}
.open > .dx-mm-dropdown > li > a:hover {
    background-image: none;
    background-color: #0098a1;
    color: #fff;
}

@media (min-width: 1600px) {
    .product-list > li {
        width: 20%;
    }
}
.product-list .dx-list__price {
    display: block;
    margin: 1rem 0;
    font-weight: 600;
    font-size: 22px;
}
.product-list .dx-list__rating i:before {
    color: #0098a1;
    font-size: 13px;
}

.dx-panel {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border: none;
}
.dx-panel .panel-heading {
    background-image: none;
}

.inner-header .bottom-header .header-nav-links .submenu.dx-menu-marketplace {
    width: 750px;
}
.inner-header .bottom-header .header-nav-links .submenu.dx-menu-marketplace .dx-menu-marketplace-title {
    font-size: 18px;
    height: auto !important;
}

/** END Tooltip **/

/** New Landingpage Styles **/
.new-landingpage .dd-hero-box .dd-hero-inner .dd-hero-holder {
    color: white !important;
    background: rgba(0,0,0,0.5);

}

.new-landingpage .dd-hero-box h1 {
    color: white !important;
    font-weight: 300 !important;
}

#trustbadge-container-98e3dadd90eb493088abdc5597a70810 {
    z-index: 2147483642 !important;
}

















/*
JQuery Simple MobileMenu
https://github.com/Position2/jQuery-Simple-MobileMenu
*/
/*Main style*/

body.mmactive {
    overflow: hidden;
}

.mmactive main {
    right: 78%;
}

/*Hamburger Animation */
#sm_menu_ham {
    cursor: pointer;
    float: right;
    position: fixed;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    right: 15px;
    width: 21px;
    top: 108px;
    height: 18px;
    z-index: 9999;
}

@media(max-width: 991px) {
    .small-header #sm_menu_ham {
        top: 104px;
    }
}

#sm_menu_ham.open {
    top: 28px;
}

#sm_menu_ham span {
    background-color: #FFFFFF;
    border-radius: 5px;
    display: block;
    height: 2px;
    left: 0;
    opacity: 1;
    position: absolute;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    width: 30px;
}

#sm_menu_ham span:nth-child(1) {
    top: 0;
}

#sm_menu_ham span:nth-child(2),
#sm_menu_ham span:nth-child(3) {
    top: 10px;
}

#sm_menu_ham span:nth-child(4) {
    top: 20px;
}

#sm_menu_ham.open span:nth-child(1) {
    left: 50%;
    top: 18px;
    width: 0;
}

#sm_menu_ham.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

#sm_menu_ham.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#sm_menu_ham.open span:nth-child(4) {
    left: 50%;
    top: 18px;
    width: 0;
}

@media (min-width: 1024px) {
    #sm_menu_ham,
    .sm_menu_outer {
        display: none;
    }
}

/* mobile mega menu */
#sm_menu_ham span {
    height: 1px;
    width: 21px;
    background: #282828;
}

#sm_menu_ham span:nth-child(2),
#sm_menu_ham span:nth-child(3) {
    top: 8px;
}

#sm_menu_ham span:nth-child(4) {
    top: 16px;
}

.mmactive header {
    right: 78%;
    left: -78%;
    background: transparent;
}

.mmactive #sm_menu_ham {
    right: 82%;
}

.mmactive #sm_menu_ham.open span {
    background: #fff;
}

/******* Design Anpassungen Mobile Menu ****/

.sm_menu_outer {
    position: fixed;
    width: 78%;
    right: -100%;
    opacity: 1;
    background: #fff;
    top: 0;
    bottom: 0;
    min-height: 100%;
    height: 100vh;
    overflow-x: hidden;
    z-index: -9;
    overflow-y: scroll;
}

.sm_menu_outer.active {
    right: 0;
    opacity: 1;
    z-index: 999;
}

.sm_menu_outer .mobile_menu, .mobile_menu {
    display: none;
    position: relative;
}

.sm_menu_outer.active .mobile_menu {
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
}

.sm_menu_outer .mobile_menu .mobile-search {
    position: relative;
    padding: 20px;
}

.sm_menu_outer .mobile_menu .mobile-search .form-control {
    border: 0 none;
    box-shadow: none;
    font-size: 16px;
    line-height: 20px;
    color: #999999;
    border-radius: 4px !important;
    background: #e8e8e8;
    padding-right: 33px;
}


.sm_menu_outer .mobile_menu .mobile-search button {
    position: absolute;
    right: 25px;
    top: 27px;
    border: none;
    background: transparent;
}

.sm_menu_outer .mobile_menu .mobile-search button i {
    font-size: 16px;
    color: #999999;
}

.sm_menu_outer .mobile_menu .mobile_menu_list {
    flex: 1 0 auto;
}

.sm_menu_outer .mobile_menu .mobile_menu_list li {
    padding: 6px 20px;
}

.sm_menu_outer .mobile_menu .mobile_menu_list li.active > .submenu {
    top: 66px;
    right: 0;
}

.sm_menu_outer .mobile_menu li li > .submenu, .sm_menu_outer .mobile_menu li li li > .submenu {
    top: 0;
}
.sm_menu_outer .mobile_menu li.active li.active > .submenu, .sm_menu_outer .mobile_menu li.active li.active li.active > .submenu {
    top: 0;
}

.sm_menu_outer .mobile_menu a {
    display: block;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    color: #393939;
    text-transform: none;
    padding: 0;
    letter-spacing: 0;
    position: relative;
}

.sm_menu_outer .mobile_menu a.top:after {
    position: absolute;
    content: "TOP";
    background: #0098a1;
    border-radius: 30px;
    padding: 1px 7px;
    color: white;
    font-weight: bolder;
    font-size: 11px;
    top: -1px;
    right: 0;
}

.sm_menu_outer .mobile_menu .submenu-trigger {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sm_menu_outer .mobile_menu .submenu-trigger .trigger-txt {
    color: #393939;
    font-size: 16px;
    font-weight: 300;
}

.sm_menu_outer .mobile_menu .submenu-trigger .trigger-arrow {
    color: #393939;
    font-size: 16px;
}

.sm_menu_outer .mobile_menu .submenu {
    background: #fff;
    top: 66px;
    height: 100%;
    position: absolute;
    right: -100%;
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 999;
}

.sm_menu_outer .mobile_menu .submenu .to-category {
    padding: 18px;
    background: #F4F4F4;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 15px;
}

.sm_menu_outer .mobile_menu .submenu .to-category .to-category-link {
    display: flex;
    flex-flow: column nowrap;
}

.sm_menu_outer .mobile_menu .submenu .to-category .to-category-link span {
    color: #393939;
    font-size: 16px;
    font-weight: 600;
}

.sm_menu_outer .mobile_menu .submenu .to-category .to-category-link small {
    color: #393939;
    font-size: 13px;
    font-weight: 300;
}

.sm_menu_outer .mobile_menu .submenu .to-category .get-back {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    margin-right: 16px;
}

.sm_menu_outer .mobile_menu .submenu .to-category .get-back i {
    color: #393939;
    font-size: 14px;
}

.sm_menu_outer .mobile_menu .social-icons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    flex-shrink: 0;
}

.sm_menu_outer .mobile_menu .social-icons li {
    padding: 10px;
}

.sm_menu_outer .mobile_menu .social-icons li a i {
    display: block;
    height: 19px;
    width: 19px;
    position: relative;
}

.basket-merchant-stars
{
    font-size:12pt;
    display:inline-block;
    cursor:pointer;
}

.basket-merchant-stars > .fas.fa-star:before{
    color:gold;
    font-size:12pt;
}

.basket-merchant-stars > .far.fa-star:before{
    color:darkgrey;
    font-size:12pt;
}

.paperless {
    background: #F7F7F7;
    margin: 20px 0 30px;
    padding: 40px;
}

.paperless .inner {
    display: flex;
    flex-flow: row wrap;
    gap: 50px;
}

.paperless .inner .img {
    display: flex;
    align-items: center;
}

.paperless .inner .txt {
    flex: 1 1 300px;
}

.paperless .inner .txt .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-flow: row wrap;
    margin: 0;
}

.paperless .inner .txt .form-group .form-control {
    flex: 1 1 auto;
    max-width: 340px;
}

.paperless .inner .txt .form-group .btn-secondary {
    padding: 5px 10px;
    flex: 0 1 100px;
}

.paperless .inner .txt p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.paperless-register {
    background: #F7F7F7;
    padding: 30px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 10px;
    gap: 25px;
}

.paperless-register .img {
    flex: 0 1 auto;
}

.paperless-register .txt {
    font-weight: bold;
    flex: 1 1 300px;
}

.dx-star-item {
    display: inline-block;
    position: relative;
    font-family: 'Font Awesome 5 Free' !important;
}

.mm-row {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 768px) {
    .mm-row {
        gap: 15px;
        flex-flow: column nowrap;
    }
}

.mm-row .col-auto {
    padding-left: 15px;
    padding-right: 15px;
}

.col-auto.headermenu {
    margin-left: auto;
}

@media (max-width: 768px) {
    .col-auto.headermenu {
        margin-left: 0;
    }
}

.col-auto.backbutton {
    max-width: 240px;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.btn-mm-primary {
    background: #0098a1;
}

.btn-mm-secondary {
    background: #96be0d;
}

.btn-mm-primary, .btn-mm-secondary {
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    color: white;
}

.btn-small {
    padding: 6px 12px;
    gap: 12px;
}

.btn-mm-primary:hover {
    background: #96be0d;
    color: white;
}

.btn-mm-secondary:hover {
    background: #0098a1;
    color: white
}

.btn-mm-primary span, .btn-mm-primary i, .btn-mm-secondary span, .btn-mm-secondary i {
    color: white;
}

.materialsandmore-datasheets {
    margin-top: 15px;
}

.svg-icon-primary, .svg-icon-primary-white:hover {
    fill: #96be0d;
}

.svg-icon-primary-white, .svg-icon-secondary-white {
    fill: #fff;
}

.svg-icon-secondary-black {
    fill: #000;
}

a:hover .svg-icon-primary {
    fill: #96be0d;
}

.open .svg-icon-secondary-white, .svg-icon-secondary-black:hover {
    fill: #0098a1;
}

.svg-icon-phone {
    width: 23px;
    height: 28px;
    margin-left: 7px;
}

.svg-icon-contact {
    width: 39px;
    height: 30px;
}

.svg-icon-upload {
    width: 39px;
    height: 35px;
}

.svg-icon-hotline, .svg-icon-email, .svg-icon-callback {
    width: 83px;
    height: 83px;
    fill: #96be0d;
}

.svg-icon-secondary, a:hover .svg-icon-secondary-white, a:hover .svg-icon-primary {
    fill: #0098a1;
}

.svg-icon-b2c, .svg-icon-b2b {
    width: 50px;
    height: 24px;
}

.dx-accounttype-private, .dx-accounttype-business {
    vertical-align: top;
}

.svg-icon-search, .svg-icon-language, .svg-icon-currency, .svg-icon-user, .svg-icon-login, .svg-icon-cart {
    width: 18px;
    height: 17px;
    vertical-align: sub;
    margin-top: 5px;
}

.svg-icon-close {
    width: 25px;
    height: 25px;
}

.svg-icon-currency.basket-icon, .svg-icon-login.basket-icon {
    fill: #0098a1;
}

.dx-material-title svg, .dx-accordion-title svg {
    position: absolute;
    right: 0;
    top: 0;
    fill: #0098a1;
}

.closed .dx-material-title svg, .closed .dx-accordion-title svg {
    transform: rotate(45deg);
    fill: #000;
}

.svg-icon-home {
    width: 19px;
    height: 19px;
}

.svg-icon-payadvance, .svg-icon-invoice {
    width: 22px;
    height: 26px;
    fill: #96be0d;
}

.partner .small-header header .submenu, .partner header .submenu {
    position: absolute;
    top: 14px;
    left: unset;
    right: unset;
    min-width: 300px;
}

.partner header .submenu .inner-block ul li:last-child, .partner .small-header header .submenu .inner-block ul li:last-child {
    margin: 0;
}

.partner.small-header header .logo img, .partner header .logo img {
    max-width: 150px;
    max-height: 82px;
    width: auto;
}

.partner .header-nav-links, .partner.small-header .header-nav-links {
    margin-top: 40px;
}

.css-move-position
{
    cursor:pointer;
    color: #000000;
}

.js-finish-hint
{
    color:darkred;
    font-size:9pt;
}

.dx-externalproduction-hint
{
    color:darkred !important;
}

.protiq-checkbox, .protiq-checkbox:focus {
    appearance: none;
    background-color: white;
    outline: 0 !important;
    border: 2px solid #96BE0D;
    border-radius: 4px;
    width: 18px;
    height: 18px;
}

.protiq-checkbox:active {
    outline: 0 !important;
    background-image: url(../img/icheck-icon.png);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    opacity:0.5;
}

.protiq-checkbox:checked {
    background-image: url(../img/icheck-icon.png);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    outline: 0;
    appearance: none;
    background-color: #96BE0D;
}