/* =============================================================================
Multipliers
========================================================================== */
/* Multipliers: Use to scale sizes as desired */
/* =============================================================================
Type
========================================================================== */
/* =============================================================================
Basic Measurements and Spacing
========================================================================== */
/* =============================================================================
Transitions and Animations
========================================================================== */
/* =============================================================================
Colours
========================================================================== */
/* =============================================================================
CSS3 PIE settings
========================================================================== */
/*------------------------------------------------------------------------------------------------------------------------

    Author: Sean Goresht
    www: https://seangoresht.com/
    github: https://github.com/srsgores

    twitter: http://twitter.com/S.Goresht

    Licensed under the GPL License
    Date: December 2013

    ======================================
    File:  mixins.less
    ======================================
    This file will allows for more readable code.  Use these by placing the . operator with the selected class you would like to apply.
    Also, make sure to include this file: @include "mixins.less"

--------------------------------------------------------------------------------------------------------------------- */
.border-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.padding-fix {
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
/* =============================================================================
Site-wide rules
========================================================================== */
/* Border Image */
/* Background Origin */
/* =============================================================================
Fonts
========================================================================== */
/* =============================================================================
Tabs
========================================================================== */
/* =============================================================================
Hyphens
========================================================================== */
/* ------------------------ */
/* LESS mixin for CSS arrow */
/* ------------------------ */
/* Usage
 * .arrow(size, color, direction, offset, border-size, border-color);
 */
/* Where
 * Size is the with of the arrow
 * Color is the color of the arrow (plain color required)
 * Direction is the orientation of the arrow (top, right, bottom, left)
 * Offset is the position of the arrow on its axis (px / em)
 * Border-size is the width of the border if there is one (optional; default "0")
 * Border-color is the color of the border if there is one (optional; default "inherit");
 */
/* Extra
 * Drop-shadows can be used on the element to create a shadow on the arrow as well
 */
.icon {
    display: inline-block;
    text-indent: -9999em;
    overflow: hidden;
}
.icon a {
    -webkit-border-radius: 0.36630037em;
    -moz-border-radius: 0.36630037em;
    -o-border-radius: 0.36630037em;
    border-radius: 0.36630037em;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
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 {
    -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"] {
    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;
    -moz-box-sizing: content-box;
    -webkit-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;
        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;
    }
    select {
        background: #fff !important;
    }
    .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.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: "\2a";
}
.glyphicon-plus:before {
    content: "\2b";
}
.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";
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-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: #645e5e;
    background-color: #fff;
}
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
a {
    color: var(--PRIMARY);
    text-decoration: none;
}
a:hover,
a:focus {
    color: #a74b0a;
    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 {
    display: block;
    max-width: 100%;
    height: auto;
}
.img-rounded {
    border-radius: 4px;
}
.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.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 #d9d9d9;
}
.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;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "klavika", sans-serif;
    font-weight: bold;
    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: #c3c3c3;
}
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: 30px;
}
h2,
.h2 {
    font-size: 23px;
}
h3,
.h3 {
    font-size: 18px;
}
h4,
.h4 {
    font-size: 17px;
}
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: 0.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: #c3c3c3;
}
.text-primary {
    color: var(--PRIMARY);
}
a.text-primary:hover {
    color: var(--PRIMARY-HOVER);
}
.text-success {
    color: #3c763d;
}
a.text-success:hover {
    color: #2b542c;
}
.text-info {
    color: #31708f;
}
a.text-info:hover {
    color: #245269;
}
.text-warning {
    color: #8a6d3b;
}
a.text-warning:hover {
    color: #66512c;
}
.text-danger {
    color: #ef351d;
}
a.text-danger:hover {
    color: #cb240e;
}
.bg-primary {
    color: #fff;
    background-color: var(--PRIMARY);
}
a.bg-primary:hover {
    background-color: var(--PRIMARY-HOVER);
}
.bg-success {
    background-color: #dff0d8;
}
a.bg-success:hover {
    background-color: #c1e2b3;
}
.bg-info {
    background-color: #d9edf7;
}
a.bg-info:hover {
    background-color: #afd9ee;
}
.bg-warning {
    background-color: #fcf8e3;
}
a.bg-warning:hover {
    background-color: #f7ecb5;
}
.bg-danger {
    background-color: #ffc2ba;
}
a.bg-danger:hover {
    background-color: #ff9587;
}
.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #d9d9d9;
}
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 #c3c3c3;
}
.initialism {
    font-size: 90%;
    text-transform: uppercase;
}
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #d9d9d9;
}
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: #c3c3c3;
}
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 #d9d9d9;
    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: 3px;
}
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: #645e5e;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 3px;
}
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;
    }
}
.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: #c3c3c3;
    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-child(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: #ffc2ba;
}
.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: #ffaba1;
}
.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: #645e5e;
    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;
    -ms-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: 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: #717171;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #717171;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -o-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 0.15s,
        box-shadow ease-in-out 0.15s;
    -o-transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
    transition:
        border-color ease-in-out 0.15s,
        box-shadow ease-in-out 0.15s;
}
.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
    -moz-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
    -o-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow:
        inset 0 1px 1px rgba(0, 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::-webkit-input-placeholder {
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.form-control:-ms-input-placeholder {
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #d9d9d9;
    opacity: 1;
}
textarea.form-control {
    height: auto;
}
input[type="search"] {
    -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"],
    input[type="month"] {
        line-height: 34px;
    }
    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm {
        line-height: 30px;
    }
    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg {
        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 {
    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;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0;
}
.input-sm,
.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
select.input-sm,
select.form-group-sm .form-control {
    height: 30px;
    line-height: 30px;
}
textarea.input-sm,
textarea.form-group-sm .form-control,
select[multiple].input-sm,
select[multiple].form-group-sm .form-control {
    height: auto;
}
.input-lg,
.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 4px;
}
select.input-lg,
select.form-group-lg .form-control {
    height: 46px;
    line-height: 46px;
}
textarea.input-lg,
textarea.form-group-lg .form-control,
select[multiple].input-lg,
select[multiple].form-group-lg .form-control {
    height: auto;
}
.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 {
    width: 46px;
    height: 46px;
    line-height: 46px;
}
.input-sm + .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);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -o-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;
    -moz-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #67b168;
    -o-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);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -o-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;
    -moz-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #c0a16b;
    -o-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: #ef351d;
}
.has-error .form-control {
    border-color: #ef351d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -o-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: #cb240e;
    -webkit-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #f68a7c;
    -moz-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #f68a7c;
    -o-box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #f68a7c;
    box-shadow:
        inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 6px #f68a7c;
}
.has-error .input-group-addon {
    color: #ef351d;
    border-color: #ef351d;
    background-color: #ffc2ba;
}
.has-error .form-control-feedback {
    color: #ef351d;
}
.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: #a49e9e;
}
@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: 14.3px;
    }
}
@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
    }
}
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    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: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-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;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -o-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;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    opacity: 0.0065;
    filter: alpha(opacity=0.65);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0.65)";
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.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-default.btn-ghost {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-default.btn-ghost:hover,
.btn-default.btn-ghost:focus,
.btn-default.btn-ghost:active,
.btn-default.btn-ghost.active,
.open .dropdown-toggle.btn-default.btn-ghost {
    color: #333;
    background-color: #fff;
    border-color: #fff;
}
.btn-default.btn-ghost:hover.btn-psuedo,
.btn-default.btn-ghost:focus.btn-psuedo,
.btn-default.btn-ghost:active.btn-psuedo,
.btn-default.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-default.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-primary {
    color: #fff;
    background-color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.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: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.btn-primary .badge {
    color: var(--PRIMARY);
    background-color: #fff;
}
.btn-primary.btn-ghost {
    background-color: transparent;
    color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.btn-primary.btn-ghost:hover,
.btn-primary.btn-ghost:focus,
.btn-primary.btn-ghost:active,
.btn-primary.btn-ghost.active,
.open .dropdown-toggle.btn-primary.btn-ghost {
    color: #fff;
    background-color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.btn-primary.btn-ghost:hover.btn-psuedo,
.btn-primary.btn-ghost:focus.btn-psuedo,
.btn-primary.btn-ghost:active.btn-psuedo,
.btn-primary.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-primary.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.btn-success {
    color: #fff;
    background-color: #21b3a2;
    border-color: #21b3a2;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #19887b;
    border-color: #177f73;
}
.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: #21b3a2;
    border-color: #21b3a2;
}
.btn-success .badge {
    color: #21b3a2;
    background-color: #fff;
}
.btn-success.btn-ghost {
    background-color: transparent;
    color: #21b3a2;
    border-color: #21b3a2;
}
.btn-success.btn-ghost:hover,
.btn-success.btn-ghost:focus,
.btn-success.btn-ghost:active,
.btn-success.btn-ghost.active,
.open .dropdown-toggle.btn-success.btn-ghost {
    color: #fff;
    background-color: #21b3a2;
    border-color: #21b3a2;
}
.btn-success.btn-ghost:hover.btn-psuedo,
.btn-success.btn-ghost:focus.btn-psuedo,
.btn-success.btn-ghost:active.btn-psuedo,
.btn-success.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-success.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #21b3a2;
    border-color: #21b3a2;
}
.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    border-color: #2aabd2;
}
.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: #5bc0de;
}
.btn-info .badge {
    color: #5bc0de;
    background-color: #fff;
}
.btn-info.btn-ghost {
    background-color: transparent;
    color: #5bc0de;
    border-color: #5bc0de;
}
.btn-info.btn-ghost:hover,
.btn-info.btn-ghost:focus,
.btn-info.btn-ghost:active,
.btn-info.btn-ghost.active,
.open .dropdown-toggle.btn-info.btn-ghost {
    color: #fff;
    background-color: #5bc0de;
    border-color: #5bc0de;
}
.btn-info.btn-ghost:hover.btn-psuedo,
.btn-info.btn-ghost:focus.btn-psuedo,
.btn-info.btn-ghost:active.btn-psuedo,
.btn-info.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-info.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #5bc0de;
    border-color: #5bc0de;
}
.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #5bc0de;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #2aabd2;
}
.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: #5bc0de;
}
.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff;
}
.btn-warning.btn-ghost {
    background-color: transparent;
    color: #f0ad4e;
    border-color: #f0ad4e;
}
.btn-warning.btn-ghost:hover,
.btn-warning.btn-ghost:focus,
.btn-warning.btn-ghost:active,
.btn-warning.btn-ghost.active,
.open .dropdown-toggle.btn-warning.btn-ghost {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}
.btn-warning.btn-ghost:hover.btn-psuedo,
.btn-warning.btn-ghost:focus.btn-psuedo,
.btn-warning.btn-ghost:active.btn-psuedo,
.btn-warning.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-warning.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #f0ad4e;
    border-color: #f0ad4e;
}
.btn-danger {
    color: #ffffff;
    background-color: #ffc2ba;
    border-color: #ef351d;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #ff9587;
    border-color: #c1220e;
}
.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: #ffc2ba;
    border-color: #ef351d;
}
.btn-danger .badge {
    color: #ffc2ba;
    background-color: #ffffff;
}
.btn-danger.btn-ghost {
    background-color: transparent;
    color: #ffc2ba;
    border-color: #ffc2ba;
}
.btn-danger.btn-ghost:hover,
.btn-danger.btn-ghost:focus,
.btn-danger.btn-ghost:active,
.btn-danger.btn-ghost.active,
.open .dropdown-toggle.btn-danger.btn-ghost {
    color: #ffffff;
    background-color: #ffc2ba;
    border-color: #ffc2ba;
}
.btn-danger.btn-ghost:hover.btn-psuedo,
.btn-danger.btn-ghost:focus.btn-psuedo,
.btn-danger.btn-ghost:active.btn-psuedo,
.btn-danger.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-danger.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #ffc2ba;
    border-color: #ffc2ba;
}
.btn-link {
    color: var(--PRIMARY);
    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;
    -moz-box-shadow: none;
    -o-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: #a74b0a;
    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: #c3c3c3;
    text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 4px;
}
.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 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}
.collapse {
    display: none;
    visibility: hidden;
}
.collapse.in {
    display: block;
    visibility: visible;
}
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;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-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 solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.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 transparent;
    border-radius: 3px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    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: #645e5e;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #575252;
    background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: var(--PRIMARY);
    text-decoration: none;
    outline: 0;
    background-color: #f6f6f6;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #c3c3c3;
}
.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: #c3c3c3;
    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 solid;
    content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 1px;
}
@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-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 > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.btn-group > .btn-group:last-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);
    -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    -o-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;
    -moz-box-shadow: none;
    -o-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: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-bottom-left-radius: 3px;
    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.33;
    border-radius: 4px;
    height: 50px;
    padding: 12px 16px;
}
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-lg > .form-control::-moz-placeholder,
.input-group-lg > .input-group-addon::-moz-placeholder,
.input-group-lg > .input-group-btn > .btn::-moz-placeholder,
.input-group-lg > .form-control:-ms-input-placeholder,
.input-group-lg > .input-group-addon:-ms-input-placeholder,
.input-group-lg > .input-group-btn > .btn:-ms-input-placeholder,
.input-group-lg > .form-control::-webkit-input-placeholder,
.input-group-lg > .input-group-addon::-webkit-input-placeholder,
.input-group-lg > .input-group-btn > .btn::-webkit-input-placeholder {
    font-family: "klavika", sans-serif !important;
    font-size: 18px;
}
.input-group-lg > .form-control.search:focus,
.input-group-lg > .input-group-addon.search:focus,
.input-group-lg > .input-group-btn > .btn.search:focus {
    font-weight: 600;
    color: #3f3f3f;
}
.input-group-lg > .form-control.what,
.input-group-lg > .input-group-addon.what,
.input-group-lg > .input-group-btn > .btn.what,
.input-group-lg > .form-control.where,
.input-group-lg > .input-group-addon.where,
.input-group-lg > .input-group-btn > .btn.where {
    font-family: "klavika", sans-serif;
    font-size: 15px;
    color: #c3c3c3;
}
.input-group-lg > .form-control.what,
.input-group-lg > .input-group-addon.what,
.input-group-lg > .input-group-btn > .btn.what {
}
.input-group-lg > .form-control.where,
.input-group-lg > .input-group-addon.where,
.input-group-lg > .input-group-btn > .btn.where {
}
.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: #717171;
    text-align: center;
    background-color: #d9d9d9;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.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: 4px;
}
.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 {
    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: #f6f6f6;
}
.nav > li.disabled > a {
    color: #c3c3c3;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
    color: #c3c3c3;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: #f6f6f6;
    border-color: var(--PRIMARY);
}
.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: 3px 3px 0 0;
}
.nav-tabs > li > a:hover {
    border-color: #d9d9d9 #d9d9d9 #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: var(--PRIMARY);
    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: 3px;
}
.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: 3px 3px 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: 3px;
}
.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: var(--PRIMARY);
    background-color: #f6f6f6;
}
.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: 3px;
}
.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: 3px 3px 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;
    visibility: hidden;
}
.tab-content > .active {
    display: block;
    visibility: visible;
}
.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: 3px;
    }
}
@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;
        visibility: visible !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: 3px;
}
.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;
        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);
    -moz-box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.1);
    -o-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;
        -moz-box-shadow: none;
        -o-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 {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    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: #e9e9e9;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent;
}
.navbar-inverse .navbar-text {
    color: #e9e9e9;
}
.navbar-inverse .navbar-nav > li > a {
    color: #e9e9e9;
}
.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: #e9e9e9;
    }
    .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: #e9e9e9;
}
.navbar-inverse .navbar-link:hover {
    color: #fff;
}
.navbar-inverse .btn-link {
    color: #e9e9e9;
}
.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: 3px;
}
.breadcrumb > li {
    display: inline-block;
}
.breadcrumb > li + li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #ccc;
}
.breadcrumb > .active {
    color: #c3c3c3;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 3px;
}
.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: #645e5e;
    background-color: transparent;
    border: 1px solid transparent;
    margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color: var(--PRIMARY);
    background-color: transparent;
    border-color: transparent;
}
.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: transparent;
    border-color: transparent;
    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: #c3c3c3;
    background-color: transparent;
    border-color: transparent;
    cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}
.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: transparent;
    border: 1px solid transparent;
    border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
    text-decoration: none;
    background-color: transparent;
}
.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: #c3c3c3;
    background-color: transparent;
    cursor: not-allowed;
}
.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.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: #c3c3c3;
}
.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #aaaaaa;
}
.label-primary {
    background-color: var(--PRIMARY);
}
.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: var(--PRIMARY-HOVER);
}
.label-success {
    background-color: #21b3a2;
}
.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #19887b;
}
.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: #ef351d;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #cb240e;
}
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: #c3c3c3;
    border-radius: 10px;
}
.badge:empty {
    display: none;
}
.btn .badge {
    position: relative;
    top: -1px;
}
.btn-xs .badge {
    top: 0;
    padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.badge .list-group-item.active {
    color: var(--PRIMARY);
    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;
}
.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-transition: border 0.2s ease-in-out;
    -o-transition: border 0.2s ease-in-out;
    transition: border 0.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: var(--PRIMARY);
}
.thumbnail .caption {
    padding: 9px;
    color: #645e5e;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 3px;
}
.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: #ffc2ba;
    border-color: #ef351d;
    color: #ef351d;
}
.alert-danger hr {
    border-top-color: #e22810;
}
.alert-danger .alert-link {
    color: #cb240e;
}
@-webkit-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: 3px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -o-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: var(--PRIMARY);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -o-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 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.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
    );
    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: #21b3a2;
}
.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: #ef351d;
}
.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-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: 3px;
    border-top-left-radius: 3px;
}
.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}
a.list-group-item {
    color: #555;
}
a.list-group-item .list-group-item-heading {
    color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    background-color: #d9d9d9;
    color: #c3c3c3;
    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: #c3c3c3;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: var(--PRIMARY);
    background-color: #f6f6f6;
    border-color: #f6f6f6;
}
.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: #ffffff;
}
.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}
a.list-group-item-success {
    color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
    color: inherit;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.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 {
    color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
    color: inherit;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.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 {
    color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
    color: inherit;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b;
}
.list-group-item-danger {
    color: #ef351d;
    background-color: #ffc2ba;
}
a.list-group-item-danger {
    color: #ef351d;
}
a.list-group-item-danger .list-group-item-heading {
    color: inherit;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
    color: #ef351d;
    background-color: #ffaba1;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #ef351d;
    border-color: #ef351d;
}
.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: 3px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    -o-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: 2px;
    border-top-left-radius: 2px;
}
.panel-heading > .dropdown .dropdown-toggle {
    color: inherit;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}
.panel-title > a {
    color: inherit;
}
.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
.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: 2px;
    border-top-left-radius: 2px;
}
.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: 2px;
    border-bottom-left-radius: 2px;
}
.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: 2px;
    border-top-left-radius: 2px;
}
.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: 2px;
    border-top-right-radius: 2px;
}
.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: 2px;
}
.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: 2px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
.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: 2px;
    border-bottom-right-radius: 2px;
}
.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: 2px;
}
.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: 2px;
}
.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: 3px;
}
.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: #645e5e;
    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: #645e5e;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd;
}
.panel-primary {
    border-color: var(--PRIMARY);
}
.panel-primary > .panel-heading {
    color: #fff;
    background-color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: var(--PRIMARY);
}
.panel-primary > .panel-heading .badge {
    color: var(--PRIMARY);
    background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: var(--PRIMARY);
}
.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: #ef351d;
}
.panel-danger > .panel-heading {
    color: #ef351d;
    background-color: #ffc2ba;
    border-color: #ef351d;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ef351d;
}
.panel-danger > .panel-heading .badge {
    color: #ffc2ba;
    background-color: #ef351d;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ef351d;
}
.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.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -o-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: 4px;
}
.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: 0.2;
    filter: alpha(opacity=20);
    opacity: 0.002;
    filter: alpha(opacity=0.2);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0.2)";
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
    opacity: 0.005;
    filter: alpha(opacity=0.5);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0.5)";
}
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: 1040;
    -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;
    -moz-transition: -moz-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: 4px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
}
.modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.modal-backdrop.in {
    opacity: 80;
    filter: alpha(opacity=8000);
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.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 {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        -o-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;
    visibility: visible;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90);
    opacity: 0.009;
    filter: alpha(opacity=0.9);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0.9)";
}
.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;
    text-decoration: none;
    background-color: #000;
    border-radius: 3px;
}
.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-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    white-space: normal;
}
.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: 3px 3px 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: #999999;
    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: #999999;
    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: #999999;
    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: #999999;
    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;
}
.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;
    visibility: hidden !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;
    }
    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;
    }
    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;
    }
    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;
    }
    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;
    }
    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;
    }
}
@media (max-width: 992px) {
    body {
        width: 100%;
        height: 100%;
    }
    .slideout-menu {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        z-index: 0;
        width: 256px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: none;
    }
    .slideout-panel {
        position: relative;
        z-index: 1;
    }
    .slideout-open,
    .slideout-open body,
    .slideout-open .slideout-panel {
        overflow: hidden;
    }
    .slideout-open .slideout-menu {
        display: block;
    }
}
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.noUi-target {
    position: relative;
    direction: ltr;
}
.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
}
.noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
}
.noUi-handle {
    position: relative;
    z-index: 1;
}
.noUi-stacking .noUi-handle {
    /* This class is applied to the lower origin when
   its values is > 50%. */
    z-index: 10;
}
.noUi-stacking + .noUi-origin {
    /* Fix stacking order in IE7, which incorrectly
   creates a new context for the origins. */
    *z-index: -1;
}
.noUi-state-tap .noUi-origin {
    -webkit-transition:
        left 0.3s,
        top 0.3s;
    transition:
        left 0.3s,
        top 0.3s;
}
.noUi-state-drag * {
    cursor: inherit !important;
}
/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
    height: 18px;
}
.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    left: -17px;
    top: -6px;
}
.noUi-vertical {
    width: 18px;
}
.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    left: -6px;
    top: -17px;
}
/* Styling;
 */
.noUi-background {
    background: #fafafa;
    box-shadow: inset 0 1px 1px #f0f0f0;
}
.noUi-connect {
    background: #3fb8af;
    box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
    -webkit-transition: background 450ms;
    transition: background 450ms;
}
.noUi-origin {
    border-radius: 2px;
}
.noUi-target {
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    box-shadow:
        inset 0 1px 1px #f0f0f0,
        0 3px 6px -5px #bbb;
}
.noUi-target.noUi-connect {
    box-shadow:
        inset 0 0 3px rgba(51, 51, 51, 0.45),
        0 3px 6px -5px #bbb;
}
/* Handles and cursors;
 */
.noUi-dragable {
    cursor: w-resize;
}
.noUi-vertical .noUi-dragable {
    cursor: n-resize;
}
.noUi-handle {
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    cursor: default;
    box-shadow:
        inset 0 0 1px #fff,
        inset 0 1px 7px #ebebeb,
        0 3px 6px -3px #bbb;
}
.noUi-active {
    box-shadow:
        inset 0 0 1px #fff,
        inset 0 1px 7px #ddd,
        0 3px 6px -3px #bbb;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #e8e7e6;
    left: 14px;
    top: 6px;
}
.noUi-handle:after {
    left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px;
}
.noUi-vertical .noUi-handle:after {
    top: 17px;
}
/* Disabled state;
 */
[disabled].noUi-connect,
[disabled] .noUi-connect {
    background: #b8b8b8;
}
[disabled] .noUi-handle {
    cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.noUi-pips {
    position: absolute;
    font: 400 12px Arial;
    color: #999;
}
/* Values;
 *
 */
.noUi-value {
    width: 40px;
    position: absolute;
    text-align: center;
}
.noUi-value-sub {
    color: #ccc;
    font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
    position: absolute;
    background: #ccc;
}
.noUi-marker-sub {
    background: #aaa;
}
.noUi-marker-large {
    background: #aaa;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
    padding: 10px 0;
    height: 50px;
    top: 100%;
    left: 0;
    width: 100%;
}
.noUi-value-horizontal {
    margin-left: -20px;
    padding-top: 20px;
}
.noUi-value-horizontal.noUi-value-sub {
    padding-top: 15px;
}
.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
    height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%;
}
.noUi-value-vertical {
    width: 15px;
    margin-left: 20px;
    margin-top: -5px;
}
.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
    width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
    width: 15px;
}
.thumbnail,
.img-thumbnail {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    -o-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: 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, #f6f6f6 0%, #e9e9e9 100%);
    background-image: -o-linear-gradient(top, #f6f6f6 0%, #e9e9e9 100%);
    background-image: linear-gradient(to bottom, #f6f6f6 0%, #e9e9e9 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe9e9e9', GradientType=0);
    background-color: #e9e9e9;
}
.navbar-default {
    background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
    background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
    background-image: linear-gradient(to bottom, #ffffff 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: 3px;
    -webkit-box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 1px 5px rgba(0, 0, 0, 0.075);
    -moz-box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 1px 5px rgba(0, 0, 0, 0.075);
    -o-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: 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);
    -moz-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
    -o-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: 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);
}
.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: 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);
    -moz-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
    -o-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,
            #f6f6f6 0%,
            #e9e9e9 100%
        );
        background-image: -o-linear-gradient(top, #f6f6f6 0%, #e9e9e9 100%);
        background-image: linear-gradient(to bottom, #f6f6f6 0%, #e9e9e9 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe9e9e9', GradientType=0);
    }
}
.progress {
    background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
    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,
        var(--PRIMARY) 0%,
        var(--PRIMARY-HOVER) 100%
    );
    background-image: -o-linear-gradient(
        top,
        var(--PRIMARY) 0%,
        var(--PRIMARY-HOVER) 100%
    );
    background-image: linear-gradient(
        to bottom,
        var(--PRIMARY) 0%,
        var(--PRIMARY-HOVER) 100%
    );
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffef6b0e', endColorstr='#ffbf550b', GradientType=0);
}
.progress-bar-success {
    background-image: -webkit-linear-gradient(top, #21b3a2 0%, #19887b 100%);
    background-image: -o-linear-gradient(top, #21b3a2 0%, #19887b 100%);
    background-image: linear-gradient(to bottom, #21b3a2 0%, #19887b 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff21b3a2', endColorstr='#ff19887b', 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: 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: 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, #ef351d 0%, #cb240e 100%);
    background-image: -o-linear-gradient(top, #ef351d 0%, #cb240e 100%);
    background-image: linear-gradient(to bottom, #ef351d 0%, #cb240e 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffef351d', endColorstr='#ffcb240e', 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: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
    -o-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 #dddddd;
    background-image: -webkit-linear-gradient(top, #f6f6f6 0%, #e3e3e3 100%);
    background-image: -o-linear-gradient(top, #f6f6f6 0%, #e3e3e3 100%);
    background-image: linear-gradient(to bottom, #f6f6f6 0%, #e3e3e3 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f6f6', endColorstr='#ffe3e3e3', GradientType=0);
    border-color: #e3e3e3;
}
.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);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -o-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: 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,
        var(--PRIMARY) 0%,
        #d7600d 100%
    );
    background-image: -o-linear-gradient(top, var(--PRIMARY) 0%, #d7600d 100%);
    background-image: linear-gradient(
        to bottom,
        var(--PRIMARY) 0%,
        #d7600d 100%
    );
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffef6b0e', endColorstr='#ffd7600d', 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: 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: 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: 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, #ffc2ba 0%, #ffaba1 100%);
    background-image: -o-linear-gradient(top, #ffc2ba 0%, #ffaba1 100%);
    background-image: linear-gradient(to bottom, #ffc2ba 0%, #ffaba1 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffc2ba', endColorstr='#ffffaba1', 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: 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);
    -moz-box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.05),
        0 1px 0 rgba(255, 255, 255, 0.1);
    -o-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);
}
/* Container Of The Plugin */
.socialPlugin .socials {
    position: relative;
    z-index: 2;
    width: 135px;
    margin-left: -50px;
    padding: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: out 0 1px 1px 3px #3f3f3f 25;
    -moz-box-shadow: out 0 1px 1px 3px #3f3f3f 25;
    -o-box-shadow: out 0 1px 1px 3px #3f3f3f 25;
    box-shadow: out 0 1px 1px 3px #3f3f3f 25;
    -webkit-box-shadow: 0 1px 3px 1px rgba(63, 63, 63, 0.25);
    -moz-box-shadow: 0 1px 3px 1px rgba(63, 63, 63, 0.25);
    box-shadow: 0 1px 3px 1px rgba(63, 63, 63, 0.25);
    background: #f6f6f6;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transform-origin: 50% 0%;
    -webkit-transform: scale(0) translateY(60px);
    -moz-transform: scale(0) translateY(60px);
    -ms-transform: scale(0) translateY(60px);
    -o-transform: scale(0) translateY(60px);
    transform: scale(0) translateY(60px);
    -webkit-transition: 300ms all ease 0ms;
    -moz-transition: 300ms all ease 0ms;
    -o-transition: 300ms all ease 0ms;
    transition: 300ms all ease 0ms;
    display: block;
}
.socialPlugin .socials:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-bottom: 6px solid #f6f6f6;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.socialPlugin .socials a {
    position: relative;
    height: 40px;
    margin: 0 0 10px;
    padding: 3px 0 3px 50px;
    display: block;
}
.socialPlugin .socials a span {
    display: block;
}
.socialPlugin .socials a span.fa {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 25px;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: var(--PRIMARY);
    -webkit-transition: 300ms background ease 0ms;
    -moz-transition: 300ms background ease 0ms;
    -o-transition: 300ms background ease 0ms;
    transition: 300ms background ease 0ms;
}
.socialPlugin .socials a span.shared {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #3f3f3f;
    width: 100%;
    height: 34px;
    padding: 0 0 0 12px;
    line-height: 34px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: out 1px 0 1px 3px #3f3f3f 15;
    -moz-box-shadow: out 1px 0 1px 3px #3f3f3f 15;
    -o-box-shadow: out 1px 0 1px 3px #3f3f3f 15;
    box-shadow: out 1px 0 1px 3px #3f3f3f 15;
    -webkit-box-shadow: 1px 0 3px 1px rgba(63, 63, 63, 0.15);
    -moz-box-shadow: 1px 0 3px 1px rgba(63, 63, 63, 0.15);
    box-shadow: 1px 0 3px 1px rgba(63, 63, 63, 0.15);
    background: white;
}
.socialPlugin .socials a span.shared:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    left: -4px;
    width: 0;
    height: 0;
    margin: -4px 0 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid white;
}
.socialPlugin .socials a:hover {
    text-decoration: none;
}
.socialPlugin .socials a:hover span.fa {
    background: #3f3f3f;
}
.socialPlugin .socials a:last-child {
    margin: 0;
}
.socialPlugin.opened .socials {
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1) translateY(10px);
    -moz-transform: scale(1) translateY(10px);
    -ms-transform: scale(1) translateY(10px);
    -o-transform: scale(1) translateY(10px);
    transform: scale(1) translateY(10px);
}
@media (max-width: 767px) {
    div .socialPlugin {
        top: 8px;
        right: 28px !important;
    }
}
.node a {
    stroke: #f0f0f0;
    stroke-width: 4;
    fill: white;
    text-decoration: none;
    -webkit-transition: 300ms fill ease 0ms;
    -moz-transition: 300ms fill ease 0ms;
    -o-transition: 300ms fill ease 0ms;
    transition: 300ms fill ease 0ms;
}
.node a body {
    background: transparent;
}
.node a body div {
    width: 100%;
    height: 100%;
    display: table;
}
.node a body div p {
    font-family: "klavika", sans-serif;
    font-size: 17px;
    color: #717171;
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}
.node a:hover {
    fill: #f0f0f0;
}
.node.highlighted a {
    stroke: var(--PRIMARY);
    fill: var(--PRIMARY);
}
.node.highlighted a body div p {
    color: white;
}
.node.highlighted a:hover {
    stroke: #717171;
    fill: #717171;
}
.link {
    stroke: #f0f0f0;
    stroke-width: 4;
}
a {
    outline: 0;
}
a:focus,
a:active,
a::mox-focus-inner {
    outline: 0;
}
a[role="button"] {
    cursor: pointer;
}
.pos-absolute {
    position: absolute !important;
}
@media (max-width: 767px) {
    .pos-xs-absolute {
        position: absolute !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .pos-sm-absolute {
        position: absolute !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .pos-md-absolute {
        position: absolute !important;
    }
}
@media (min-width: 992px) {
    .pos-lg-absolute {
        position: absolute !important;
    }
}
.pos-fixed {
    position: fixed !important;
}
@media (max-width: 767px) {
    .pos-xs-fixed {
        position: fixed !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .pos-sm-fixed {
        position: fixed !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .pos-md-fixed {
        position: fixed !important;
    }
}
@media (min-width: 992px) {
    .pos-lg-fixed {
        position: fixed !important;
    }
}
.pos-relative {
    position: relative !important;
}
@media (max-width: 767px) {
    .pos-xs-relative {
        position: relative !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .pos-sm-relative {
        position: relative !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .pos-md-relative {
        position: relative !important;
    }
}
@media (min-width: 992px) {
    .pos-lg-relative {
        position: relative !important;
    }
}
.no-top {
    top: 0 !important;
}
@media (max-width: 767px) {
    .no-xs-top {
        top: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-top {
        top: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-top {
        top: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-top {
        top: 0;
    }
}
.no-bottom {
    bottom: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-bottom {
        bottom: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-bottom {
        bottom: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-bottom {
        bottom: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-bottom {
        bottom: 0;
    }
}
.no-left {
    left: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-left {
        left: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-left {
        left: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-left {
        left: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-left {
        left: 0;
    }
}
.no-right {
    right: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-right {
        right: 0 !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-right {
        right: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-right {
        right: 0 !important;
    }
}
@media (min-width: 992px) {
    .no-lg-right {
        right: 0 !important;
    }
}
.no-margin {
    margin: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-margin {
        margin: 0 !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-margin {
        margin: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-margin {
        margin: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-margin {
        margin: 0;
    }
}
.no-margin-tp {
    margin-top: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-margin-tp {
        margin-top: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-margin-tp {
        margin-top: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-margin-tp {
        margin-top: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-margin-tp {
        margin-top: 0;
    }
}
.no-margin-bt {
    margin-bottom: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-margin-bt {
        margin-bottom: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-margin-bt {
        margin-bottom: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-margin-bt {
        margin-bottom: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-margin-bt {
        margin-bottom: 0;
    }
}
.no-margin-lt {
    margin-left: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-margin-lt {
        margin-left: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-margin-lt {
        margin-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-margin-lt {
        margin-left: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-margin-lt {
        margin-left: 0;
    }
}
.no-margin-rt {
    margin-right: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-margin-rt {
        margin-right: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-margin-rt {
        margin-right: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-margin-rt {
        margin-right: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-margin-rt {
        margin-right: 0;
    }
}
.no-padding {
    padding: 0 !important;
}
@media (max-width: 767px) {
    .no-xs-padding {
        padding: 0 !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-padding {
        padding: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-padding {
        padding: 0 !important;
    }
}
@media (min-width: 992px) {
    .no-lg-padding {
        padding: 0 !important;
    }
}
.no-padding-tp {
    padding-top: 0 !important;
}
@media (max-width: 767px) {
    .no-xs-padding-tp {
        padding-top: 0 !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-padding-tp {
        padding-top: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-padding-tp {
        padding-top: 0 !important;
    }
}
@media (min-width: 992px) {
    .no-lg-padding-tp {
        padding-top: 0 !important;
    }
}
.no-padding-bt {
    padding-bottom: 0 !important;
}
@media (max-width: 767px) {
    .no-xs-padding-bt {
        padding-bottom: 0 !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-padding-bt {
        padding-bottom: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-padding-bt {
        padding-bottom: 0 !important;
    }
}
@media (min-width: 992px) {
    .no-lg-padding-bt {
        padding-bottom: 0 !important;
    }
}
.no-padding-lt {
    padding-left: 0 !important;
}
@media (max-width: 767px) {
    .no-xs-padding-lt {
        padding-left: 0 !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-padding-lt {
        padding-left: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-padding-lt {
        padding-left: 0 !important;
    }
}
@media (min-width: 992px) {
    .no-lg-padding-lt {
        padding-left: 0 !important;
    }
}
.no-padding-rt {
    padding-right: 0 !important;
}
@media (max-width: 767px) {
    .no-xs-padding-rt {
        padding-right: 0 !important;
    }
}
@media (min-width: 767px) and (max-width: 768px) {
    .no-sm-padding-rt {
        padding-right: 0 !important;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-padding-rt {
        padding-right: 0 !important;
    }
}
@media (min-width: 992px) {
    .no-lg-padding-rt {
        padding-right: 0 !important;
    }
}
.border-all {
    border: 1px solid #d9d9d9;
}
.no-border {
    border: 0 !important;
}
@media (max-width: 767px) {
    .no-xs-border {
        border: 0 !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-border {
        border: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-border {
        border: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-border {
        border: 0;
    }
}
.border-top {
    border-top: 1px solid #d9d9d9;
}
.no-border-tp {
    border-top: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-border-tp {
        border-top: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-border-tp {
        border-top: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-border-tp {
        border-top: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-border-tp {
        border-top: 0;
    }
}
.border-bottom {
    border-bottom: 1px solid #d9d9d9;
}
.no-border-bt {
    border-bottom: 0 !important;
}
@media (max-width: 767px) {
    .no-xs-border-bt {
        border-bottom: 0 !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-border-bt {
        border-bottom: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-border-bt {
        border-bottom: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-border-bt {
        border-bottom: 0;
    }
}
.border-left {
    border-left: 1px solid #d9d9d9;
}
.no-border-lt {
    border-left: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-border-lt {
        border-left: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-border-lt {
        border-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-border-lt {
        border-left: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-border-lt {
        border-left: 0;
    }
}
.border-right {
    border-right: 1px solid #d9d9d9;
}
.no-border-rt {
    border-right: 0 !important;
}
@media (max-width: 480px) {
    .no-xs-border-rt {
        border-right: 0;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .no-sm-border-rt {
        border-right: 0;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .no-md-border-rt {
        border-right: 0;
    }
}
@media (min-width: 992px) {
    .no-lg-border-rt {
        border-right: 0;
    }
}
.no-box-shadow {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}
.no-text-shadow {
    text-shadow: none !important;
}
.align-tp {
    vertical-align: top;
}
.align-md {
    vertical-align: middle;
}
.align-bt {
    vertical-align: bottom;
}
.align-lt {
    float: left;
}
.align-ct {
    margin: 0 auto;
}
.align-rt {
    float: right;
}
.txt-align-lt {
    text-align: left;
}
.txt-align-ct {
    text-align: center;
}
.txt-align-rt {
    text-align: right;
}
.disp-block {
    display: block;
}
.disp-inline {
    display: inline-block;
}
.disp-table {
    display: table;
}
.disp-table > div,
.disp-table > li,
.disp-table > span,
.disp-table > a,
.disp-table > button {
    display: table-cell;
}
.disp-table.separate {
    border-spacing: 20px;
    border-collapse: separate;
}
.disp-table.rows > div,
.disp-table.rows > li,
.disp-table.rows > span,
.disp-table.rows > a,
.disp-table.rows > button {
    display: table-row;
}
.disp-table.rows > div > div,
.disp-table.rows > li > div,
.disp-table.rows > span > div,
.disp-table.rows > a > div,
.disp-table.rows > button > div,
.disp-table.rows > div > li,
.disp-table.rows > li > li,
.disp-table.rows > span > li,
.disp-table.rows > a > li,
.disp-table.rows > button > li,
.disp-table.rows > div > span,
.disp-table.rows > li > span,
.disp-table.rows > span > span,
.disp-table.rows > a > span,
.disp-table.rows > button > span,
.disp-table.rows > div > a,
.disp-table.rows > li > a,
.disp-table.rows > span > a,
.disp-table.rows > a > a,
.disp-table.rows > button > a,
.disp-table.rows > div > button,
.disp-table.rows > li > button,
.disp-table.rows > span > button,
.disp-table.rows > a > button,
.disp-table.rows > button > button {
    display: table-cell;
}
.no-radius {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.no-overflow {
    overflow: hidden !important;
}
.no-float {
    float: none !important;
}
.no-list-style {
    list-style-type: none;
}
.no-appearance {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.line-height-0 {
    line-height: 0 !important;
}
.border-orange {
    border-color: var(--PRIMARY) !important;
}
.border-gray-light {
    border-color: #c3c3c3 !important;
}
.width-auto {
    width: auto !important;
}
.max-width-250 {
    max-width: 250px;
}
.link-color-gray-darker {
    color: #3f3f3f;
    -webkit-transition: 300ms color ease 0ms;
    -moz-transition: 300ms color ease 0ms;
    -o-transition: 300ms color ease 0ms;
    transition: 300ms color ease 0ms;
}
.link-color-gray-darker:hover {
    color: var(--PRIMARY);
    text-decoration: none;
}
.link-color-gray-mid {
    color: #858484;
    -webkit-transition: 300ms color ease 0ms;
    -moz-transition: 300ms color ease 0ms;
    -o-transition: 300ms color ease 0ms;
    transition: 300ms color ease 0ms;
}
.link-color-gray-mid:hover {
    color: var(--PRIMARY);
    text-decoration: none;
}
.title-link {
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    -o-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transition:
        300ms color ease 0ms,
        300ms background ease 0ms;
    -moz-transition:
        300ms color ease 0ms,
        300ms background ease 0ms;
    -o-transition:
        300ms color ease 0ms,
        300ms background ease 0ms;
    transition:
        300ms color ease 0ms,
        300ms background ease 0ms;
}
.title-link p {
    color: #3f3f3f;
}
.title-link:hover {
    text-decoration: none;
    background: #f6f6f6;
}
.title-link:hover p {
    color: #21b3a2;
}
.top-minus-2 {
    top: -2px;
}
.font-weight-500 {
    font-weight: 500;
}
.line-height-standard {
    line-height: 1.42857143;
}
.line-height-2em {
    line-height: 2em;
}
.max-height-580 {
    position: relative;
    max-height: 580px;
    overflow-y: auto;
    overflow-x: hidden;
}
.height-50 {
    height: 50px;
}
.border-tb {
    border-top: 1px solid #c3c3c3;
    border-bottom: 1px solid #c3c3c3;
}
.bottom-20 {
    bottom: 20px;
}
.right-20 {
    right: 20px;
}
.left-minus-15 {
    left: -15px;
}
.right-minus-15 {
    right: -15px;
}
.fake {
    background: yellow !important;
}
.fixed-height-350 {
    height: 350px !important;
}
.no-resize {
    resize: none;
}
.no-text-decoration {
    text-decoration: none !important;
}
.margin-left-minus-25 {
    margin-left: -25px;
}
.margin-top-17 {
    margin-top: 17px;
}
.help-no-margin .help-block {
    margin: 0 !important;
}
.z-index-9 {
    z-index: 9;
}
.z-index-10 {
    z-index: 10;
}
.z-index-11 {
    z-index: 11;
}
.z-index-12 {
    z-index: 12;
}
.z-index-100 {
    z-index: 100;
}
[data-search-tasks-edit-head] {
    top: 64px;
    height: 60px;
}
.line-height-50 {
    line-height: 48px;
}
@media (min-width: 768px) {
    .no-sm-max-height {
        max-height: unset !important;
    }
}
@media (min-width: 480px) and (max-width: 768px) {
    .text-md-size-30 {
        font-size: 30px !important;
    }
}
@media (max-width: 767px) {
    .overflow-x-xs-hidden {
        overflow-x: hidden !important;
    }
    .title-xs-size-30 {
        font-size: 30px !important;
        margin: -5px 0 10px !important;
    }
    .title-xs-size-25 {
        font-size: 25px !important;
        margin: 15px 0 5px !important;
    }
    .text-xs-size-16 {
        font-size: 16px !important;
    }
    .text-xs-size-15 {
        font-size: 15px !important;
    }
    .text-xs-size-10 {
        font-size: 10px !important;
    }
    .padding-xs-right-70 {
        padding-right: 70px !important;
    }
    .margin-xs-minus-1 {
        margin-top: -1px;
    }
    .xs-underline {
        text-decoration: underline;
    }
    .border-top-gray {
        border-top: 1px solid #c3c3c3;
    }
    .border-bottom-gray {
        border-bottom: 1px solid #c3c3c3;
    }
    .no-xs-max-height {
        max-height: unset;
        overflow: hidden;
    }
    .min-height-90 {
        min-height: 90px;
    }
    .top-15 {
        top: 15px;
    }
}
@media (max-width: 767px) {
    .top-filters {
        height: 140px !important;
        padding: 15px 0 !important;
    }
    .top-filters:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 15px;
        right: 15px;
        height: 0;
        border-bottom: 1px solid #c3c3c3;
    }
    .top-filters > div {
        height: 50px;
        padding: 0 15px !important;
    }
    .top-filters > div > div {
        width: auto !important;
    }
    .top-filters > div:first-child {
        margin: 0 0 10px;
    }
    .top-filters > div:last-child > div {
        left: 15px;
        right: 15px;
    }
}
body,
html {
    -webkit-font-smoothing: antialiased;
    font-smooth: always;
}
@font-face {
    font-family: "klavika";
    src: url("../fonts/klavika-light-webfont.eot");
    src:
        url("../fonts/klavika-light-webfont.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/klavika-light-webfont.woff2") format("woff2"),
        url("../fonts/klavika-light-webfont.woff") format("woff"),
        url("../fonts/klavika-light-webfont.ttf") format("truetype"),
        url("../fonts/klavika-light-webfont.svg#klavikalight") format("svg");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "klavika";
    src: url("../fonts/klavika-regular-webfont-webfont.eot");
    src:
        url("../fonts/klavika-regular-webfont-webfont.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/klavika-regular-webfont-webfont.woff2") format("woff2"),
        url("../fonts/klavika-regular-webfont-webfont.woff") format("woff"),
        url("../fonts/klavika-regular-webfont-webfont.ttf") format("truetype"),
        url("../fonts/klavika-regular-webfont-webfont.svg#klavikaregular")
            format("svg");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "klavika";
    src: url("../fonts/klavika-medium-webfont-webfont.eot");
    src:
        url("../fonts/klavika-medium-webfont-webfont.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/klavika-medium-webfont-webfont.woff2") format("woff2"),
        url("../fonts/klavika-medium-webfont-webfont.woff") format("woff"),
        url("../fonts/klavika-medium-webfont-webfont.ttf") format("truetype"),
        url("../fonts/klavika-medium-webfont-webfont.svg#klavikamedium")
            format("svg");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "klavika";
    src: url("../fonts/klavika-bold-webfont-webfont.eot");
    src:
        url("../fonts/klavika-bold-webfont-webfont.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/klavika-bold-webfont-webfont.woff2") format("woff2"),
        url("../fonts/klavika-bold-webfont-webfont.woff") format("woff"),
        url("../fonts/klavika-bold-webfont-webfont.ttf") format("truetype"),
        url("../fonts/klavika-bold-webfont-webfont.svg#klavikabold")
            format("svg");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "glyphicons-new";
    src: url("../fonts/glyphicons-new.eot");
    src:
        url("../fonts/glyphicons-new.eot?#iefix") format("embedded-opentype"),
        url("../fonts/glyphicons-new.woff2") format("woff2"),
        url("../fonts/glyphicons-new.woff") format("woff"),
        url("../fonts/glyphicons-new.ttf") format("truetype"),
        url("../fonts/glyphicons-new.svg#glyphiconsnew") format("svg");
    font-weight: normal;
    font-style: normal;
}
.glyphicons {
    font-family: "glyphicons-new" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.glyphicons.added {
    position: relative;
}
.glyphicons.added:after {
    content: "\e914";
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 5px;
    color: white;
    width: 12px;
    height: 12px;
    line-height: 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: #21b3a2;
    display: block;
}
.glyphicons-arrow-up:before {
    content: "\e900";
}
.glyphicons-arrow-down:before {
    content: "\e902";
}
.glyphicons-arrow-left:before {
    content: "\e919";
}
.glyphicons-arrow-right:before {
    content: "\e901";
}
.glyphicons-pointer-up:before {
    content: "\e904";
}
.glyphicons-pointer-down:before {
    content: "\e903";
}
.glyphicons-pointer-left:before {
    content: "\e917";
}
.glyphicons-pointer-right:before {
    content: "\e905";
}
.glyphicons-add-candidate:before {
    content: "\e906";
}
.glyphicons-search-results:before {
    content: "\e907";
}
.glyphicons-trash:before {
    content: "\e908";
}
.glyphicons-save:before {
    content: "\e909";
}
.glyphicons-find-searches:before {
    content: "\e90a";
}
.glyphicons-filters:before {
    content: "\e90b";
}
.glyphicons-location:before {
    content: "\e90c";
}
.glyphicons-scroll:before {
    content: "\e90d";
}
.glyphicons-current-location:before {
    content: "\e90e";
}
.glyphicons-messages:before {
    content: "\e90f";
}
.glyphicons-candidate:before {
    content: "\e910";
}
.glyphicons-plus-filled:before {
    content: "\e912";
}
.glyphicons-support:before {
    content: "\e913";
}
.glyphicons-check:before {
    content: "\e914";
}
.glyphicons-check-filled:before {
    content: "\e915";
}
.glyphicons-search:before {
    content: "\e916";
}
.glyphicons-cross:before {
    content: "\e918";
}
.glyphicons-share:before {
    content: "\e91a";
}
.glyphicons-viewed:before {
    content: "\e91b";
}
.glyphicons-settings:before {
    content: "\e91c";
}

.current-location {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    font-size: 20px;
    color: #858484;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: transparent;
    -webkit-transition: 300ms color ease 0ms;
    -moz-transition: 300ms color ease 0ms;
    -o-transition: 300ms color ease 0ms;
    transition: 300ms color ease 0ms;
}
.current-location:hover {
    color: var(--PRIMARY);
    text-decoration: none;
}
.current-location.tall {
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.clear-search {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    font-size: 20px;
    color: #858484;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: transparent;
    -webkit-transition: 300ms color ease 0ms;
    -moz-transition: 300ms color ease 0ms;
    -o-transition: 300ms color ease 0ms;
    transition: 300ms color ease 0ms;
}
.clear-search:hover {
    color: var(--PRIMARY);
    text-decoration: none;
}
.clear-search.tall {
    width: 50px;
    height: 50px;
    line-height: 50px;
}
a:hover .icon-button-modify,
a:active .icon-button-modify,
a:focus .icon-button-modify,
button:hover .icon-button-modify,
button:active .icon-button-modify,
button:focus .icon-button-modify {
    width: 18px;
    height: 18px;
    background-position: -430px -280px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    a:hover .icon-button-modify,
    a:active .icon-button-modify,
    a:focus .icon-button-modify,
    button:hover .icon-button-modify,
    button:active .icon-button-modify,
    button:focus .icon-button-modify {
        width: 18px;
        height: 18px;
        background-position: -492px -224px;
    }
}
a:hover .icon-button-new-account,
a:active .icon-button-new-account,
a:focus .icon-button-new-account,
button:hover .icon-button-new-account,
button:active .icon-button-new-account,
button:focus .icon-button-new-account {
    width: 13px;
    height: 13px;
    background-position: -623px -345px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    a:hover .icon-button-new-account,
    a:active .icon-button-new-account,
    a:focus .icon-button-new-account,
    button:hover .icon-button-new-account,
    button:active .icon-button-new-account,
    button:focus .icon-button-new-account {
        width: 13px;
        height: 13px;
        background-position: -503px -276px;
    }
}
a:hover .icon-button-remove-user,
a:active .icon-button-remove-user,
a:focus .icon-button-remove-user,
button:hover .icon-button-remove-user,
button:active .icon-button-remove-user,
button:focus .icon-button-remove-user {
    width: 18px;
    height: 18px;
    background-position: -499px -257px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    a:hover .icon-button-remove-user,
    a:active .icon-button-remove-user,
    a:focus .icon-button-remove-user,
    button:hover .icon-button-remove-user,
    button:active .icon-button-remove-user,
    button:focus .icon-button-remove-user {
        width: 18px;
        height: 18px;
        background-position: -572px -204px;
    }
}
a:hover .icon-statistics-help,
a:active .icon-statistics-help,
a:focus .icon-statistics-help,
button:hover .icon-statistics-help,
button:active .icon-statistics-help,
button:focus .icon-statistics-help {
    width: 16px;
    height: 12px;
    background-position: -402px -228px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    a:hover .icon-statistics-help,
    a:active .icon-statistics-help,
    a:focus .icon-statistics-help,
    button:hover .icon-statistics-help,
    button:active .icon-statistics-help,
    button:focus .icon-statistics-help {
        width: 16px;
        height: 12px;
        background-position: -465px -291px;
    }
}
.icon-arrow-pager-left,
.icon-arrow-pager-right {
    position: relative;
    top: 1px;
}
.icon,
.icon a {
    background: url("../images/sprites.png") no-repeat;
}
.icon-account-title-orange {
    width: 22px;
    height: 22px;
    background-position: -457px -155px;
}
.icon-arrow-breadcrumb {
    width: 3px;
    height: 6px;
    background-position: -637px -86px;
}
.icon-arrow-entryfield-choose-down-active {
    width: 10px;
    height: 5px;
    background-position: -234px -155px;
}
.icon-arrow-entryfield-choose-down-disabled {
    width: 10px;
    height: 5px;
    background-position: -339px -197px;
}
.icon-arrow-entryfield-choose-down-hover {
    width: 10px;
    height: 5px;
    background-position: -324px -207px;
}
.icon-arrow-entryfield-choose-down {
    width: 10px;
    height: 5px;
    background-position: -339px -207px;
}
.icon-arrow-entryfield-choose-up-active {
    width: 10px;
    height: 5px;
    background-position: -274px -110px;
}
.icon-arrow-entryfield-choose-up-disabled {
    width: 10px;
    height: 5px;
    background-position: -274px -130px;
}
.icon-arrow-entryfield-choose-up-hover {
    width: 10px;
    height: 5px;
    background-position: -274px -140px;
}
.icon-arrow-entryfield-choose-up {
    width: 10px;
    height: 5px;
    background-position: -324px -197px;
}
.icon-arrow-header-profile-down-active {
    width: 10px;
    height: 5px;
    background-position: -249px -155px;
}
.icon-arrow-header-profile-down-disabled {
    width: 10px;
    height: 5px;
    background-position: -402px -261px;
}
.icon-arrow-header-profile-down-hover {
    width: 10px;
    height: 5px;
    background-position: -294px -207px;
}
.icon-arrow-header-profile-down {
    width: 10px;
    height: 5px;
    background-position: -309px -197px;
}
.icon-arrow-header-profile-up-active {
    width: 10px;
    height: 5px;
    background-position: -294px -197px;
}
.icon-arrow-header-profile-up-disabled {
    width: 10px;
    height: 5px;
    background-position: -334px -182px;
}
.icon-arrow-header-profile-up-hover {
    width: 10px;
    height: 5px;
    background-position: -274px -120px;
}
.icon-arrow-header-profile-up {
    width: 10px;
    height: 5px;
    background-position: -309px -207px;
}
.icon-arrow-pager-left-active {
    width: 5px;
    height: 10px;
    background-position: -334px -152px;
}
.icon-arrow-pager-left-disabled {
    width: 5px;
    height: 10px;
    background-position: -344px -152px;
}
.icon-arrow-pager-left-hover {
    width: 5px;
    height: 10px;
    background-position: -419px -273px;
}
.icon-arrow-pager-left {
    width: 5px;
    height: 10px;
    background-position: -334px -167px;
}
.icon-arrow-pager-right-active {
    width: 5px;
    height: 10px;
    background-position: -417px -245px;
}
.icon-arrow-pager-right-disabled {
    width: 5px;
    height: 10px;
    background-position: -384px -273px;
}
.icon-arrow-pager-right-hover {
    width: 5px;
    height: 10px;
    background-position: -394px -273px;
}
.icon-arrow-pager-right {
    width: 5px;
    height: 10px;
    background-position: -634px -155px;
}
.icon-breadcrumbs-dashboard {
    width: 17px;
    height: 11px;
    background-position: -362px -273px;
}
.icon-button-arrow-upgrade {
    width: 10px;
    height: 11px;
    background-position: -402px -245px;
}
.icon-button-info-active {
    width: 14px;
    height: 14px;
    background-position: -506px -345px;
}
.icon-button-info-darkgrey-active {
    width: 14px;
    height: 14px;
    background-position: -487px -345px;
}
.icon-button-info-disabled {
    width: 14px;
    height: 14px;
    background-position: -468px -345px;
}
.icon-button-info-grey-active {
    width: 14px;
    height: 14px;
    background-position: -449px -345px;
}
.icon-button-info-grey-disabled {
    width: 14px;
    height: 14px;
    background-position: -610px -325px;
}
.icon-button-info-hover {
    width: 14px;
    height: 14px;
    background-position: -499px -325px;
}
.icon-button-info {
    width: 14px;
    height: 14px;
    background-position: -569px -325px;
}
.icon-button-modify-active {
    width: 18px;
    height: 18px;
    background-position: -430px -257px;
}
.icon-button-modify-disabled {
    width: 18px;
    height: 18px;
    background-position: -453px -280px;
}
.icon-button-modify-hover {
    width: 18px;
    height: 18px;
    background-position: -430px -280px;
}
.icon-button-modify {
    width: 18px;
    height: 18px;
    background-position: -597px -257px;
}
.icon-button-new-account-active {
    width: 13px;
    height: 13px;
    background-position: -448px -364px;
}
.icon-button-new-account-disabled {
    width: 13px;
    height: 13px;
    background-position: -430px -364px;
}
.icon-button-new-account-hover {
    width: 13px;
    height: 13px;
    background-position: -623px -345px;
}
.icon-button-new-account {
    width: 13px;
    height: 13px;
    background-position: -605px -345px;
}
.icon-button-plaatvacature {
    width: 17px;
    height: 14px;
    background-position: -588px -325px;
}
.icon-button-remove-user-active {
    width: 18px;
    height: 18px;
    background-position: -476px -257px;
}
.icon-button-remove-user-disabled {
    width: 18px;
    height: 18px;
    background-position: -453px -257px;
}
.icon-button-remove-user-hover {
    width: 18px;
    height: 18px;
    background-position: -499px -257px;
}
.icon-button-remove-user {
    width: 18px;
    height: 18px;
    background-position: -606px -232px;
}
.icon-checkbox-active {
    width: 22px;
    height: 21px;
    background-position: -507px -155px;
}
.icon-checkmark {
    width: 10px;
    height: 8px;
    background-position: -344px -167px;
}
.icon-cross-notification {
    width: 10px;
    height: 10px;
    background-position: -404px -273px;
}
.icon-cross-popup-grey-active {
    width: 20px;
    height: 20px;
    background-position: -534px -155px;
}
.icon-cross-popup-grey-disabled {
    width: 20px;
    height: 20px;
    background-position: -559px -155px;
}
.icon-cross-popup-grey-hover {
    width: 20px;
    height: 20px;
    background-position: -584px -155px;
}
.icon-cross-popup-grey {
    width: 20px;
    height: 20px;
    background-position: -609px -155px;
}
.icon-delete-grey {
    width: 18px;
    height: 22px;
    background-position: -484px -155px;
}
.icon-discountcode-cross {
    width: 12px;
    height: 12px;
    background-position: -625px -364px;
}
.icon-entryfield-error {
    width: 18px;
    height: 18px;
    background-position: -574px -257px;
}
.icon-entryfield-ok {
    width: 18px;
    height: 18px;
    background-position: -620px -257px;
}
.icon-generate-pdf-active {
    width: 20px;
    height: 23px;
    background-position: -565px -124px;
}
.icon-generate-pdf-disabled {
    width: 20px;
    height: 23px;
    background-position: -540px -124px;
}
.icon-generate-pdf-hover {
    width: 20px;
    height: 23px;
    background-position: -515px -124px;
}
.icon-generate-pdf {
    width: 20px;
    height: 23px;
    background-position: -490px -124px;
}
.icon-login-logo-white {
    width: 210px;
    height: 40px;
    background-position: -430px 0px;
}
.icon-login-poweredby {
    width: 55px;
    height: 26px;
    background-position: -430px -124px;
}
.icon-logo-mobile {
    width: 202px;
    height: 33px;
    background-position: -430px -86px;
}
.icon-logo-orange {
    width: 237px;
    height: 45px;
    background-position: 0px -296px;
}
.icon-logo-small {
    width: 126px;
    height: 20px;
    background-position: -430px -182px;
}
.icon-menu-tablet-landscape {
    width: 44px;
    height: 40px;
    background-position: -200px -346px;
}
.icon-menu-tablet-mobile {
    width: 33px;
    height: 30px;
    background-position: -483px -45px;
}
.icon-messages {
    width: 23px;
    height: 22px;
    background-position: -613px -124px;
}
.icon-mobile-logo-footer-qube {
    width: 61px;
    height: 30px;
    background-position: -521px -45px;
}
.icon-mobile-logo-footer-techniek {
    width: 126px;
    height: 20px;
    background-position: -481px -207px;
}
.icon-modify-entryfield-active {
    width: 14px;
    height: 14px;
    background-position: -430px -345px;
}
.icon-modify-entryfield-disabled {
    width: 14px;
    height: 14px;
    background-position: -525px -345px;
}
.icon-modify-entryfield-hover {
    width: 14px;
    height: 14px;
    background-position: -561px -345px;
}
.icon-modify-entryfield {
    width: 14px;
    height: 14px;
    background-position: -480px -325px;
}
.icon-newjob-attachment {
    width: 16px;
    height: 16px;
    background-position: -622px -280px;
}
.icon-newjob-biggertext {
    width: 22px;
    height: 14px;
    background-position: -542px -325px;
}
.icon-newjob-bold {
    width: 12px;
    height: 12px;
    background-position: -541px -364px;
}
.icon-newjob-bullets {
    width: 15px;
    height: 15px;
    background-position: -528px -303px;
}
.icon-newjob-html {
    width: 20px;
    height: 12px;
    background-position: -579px -364px;
}
.icon-newjob-italic {
    width: 10px;
    height: 12px;
    background-position: -629px -232px;
}
.icon-newjob-numbering {
    width: 14px;
    height: 15px;
    background-position: -509px -303px;
}
.icon-newjob-placeholder {
    width: 48px;
    height: 36px;
    background-position: -430px -45px;
}
.icon-newjob-smallertext {
    width: 19px;
    height: 14px;
    background-position: -518px -325px;
}
.icon-newjob-textalign-center {
    width: 17px;
    height: 15px;
    background-position: -618px -303px;
}
.icon-newjob-textalign-left {
    width: 17px;
    height: 15px;
    background-position: -596px -303px;
}
.icon-newjob-textalign-right {
    width: 18px;
    height: 15px;
    background-position: -573px -303px;
}
.icon-newjob-title-orange {
    width: 22px;
    height: 22px;
    background-position: -430px -155px;
}
.icon-newjob-underline {
    width: 9px;
    height: 12px;
    background-position: -629px -325px;
}
.icon-product-365online-mobile {
    width: 35px;
    height: 40px;
    background-position: -120px -346px;
}
.icon-product-365online {
    width: 63px;
    height: 71px;
    background-position: -362px -152px;
}
.icon-product-60days-mobile {
    width: 35px;
    height: 40px;
    background-position: -40px -346px;
}
.icon-product-60days {
    width: 63px;
    height: 71px;
    background-position: -362px -76px;
}
.icon-product-automation-mobile {
    width: 35px;
    height: 40px;
    background-position: -362px -296px;
}
.icon-product-automation {
    width: 63px;
    height: 71px;
    background-position: -362px 0px;
}
.icon-product-contact-mobile {
    width: 35px;
    height: 40px;
    background-position: -282px -296px;
}
.icon-product-contact {
    width: 63px;
    height: 71px;
    background-position: -272px -220px;
}
.icon-product-cv-mobile {
    width: 35px;
    height: 40px;
    background-position: -234px -110px;
}
.icon-product-cv {
    width: 63px;
    height: 71px;
    background-position: -204px -220px;
}
.icon-product-mailing-mobile {
    width: 35px;
    height: 40px;
    background-position: -294px -152px;
}
.icon-product-mailing {
    width: 63px;
    height: 71px;
    background-position: 0px -220px;
}
.icon-product-oneclick-mobile {
    width: 35px;
    height: 40px;
    background-position: -160px -346px;
}
.icon-product-oneclick {
    width: 63px;
    height: 71px;
    background-position: -68px -220px;
}
.icon-product-response-mobile {
    width: 35px;
    height: 40px;
    background-position: 0px -346px;
}
.icon-product-response {
    width: 63px;
    height: 71px;
    background-position: -98px -110px;
}
.icon-product-study-mobile {
    width: 35px;
    height: 40px;
    background-position: -242px -296px;
}
.icon-product-study {
    width: 63px;
    height: 71px;
    background-position: -294px -76px;
}
.icon-product-support-mobile {
    width: 35px;
    height: 40px;
    background-position: -362px -228px;
}
.icon-product-support {
    width: 63px;
    height: 71px;
    background-position: -294px 0px;
}
.icon-product-top-mobile {
    width: 35px;
    height: 40px;
    background-position: -322px -296px;
}
.icon-product-top {
    width: 63px;
    height: 71px;
    background-position: -166px -110px;
}
.icon-product-unlimited-mobile {
    width: 35px;
    height: 40px;
    background-position: -80px -346px;
}
.icon-product-unlimited {
    width: 63px;
    height: 71px;
    background-position: -136px -220px;
}
.icon-productoverview-boost {
    width: 93px;
    height: 105px;
    background-position: -98px 0px;
}
.icon-productoverview-cv {
    width: 93px;
    height: 105px;
    background-position: 0px 0px;
}
.icon-productoverview-eenmalig {
    width: 93px;
    height: 105px;
    background-position: -196px 0px;
}
.icon-productoverview-onbeperkt {
    width: 93px;
    height: 105px;
    background-position: 0px -110px;
}
.icon-score-jobtext-attention-details {
    width: 16px;
    height: 12px;
    background-position: -604px -364px;
}
.icon-score-jobtext-attention {
    width: 24px;
    height: 18px;
    background-position: -545px -257px;
}
.icon-score-jobtext-good-details {
    width: 12px;
    height: 14px;
    background-position: -544px -345px;
}
.icon-score-jobtext-good {
    width: 18px;
    height: 22px;
    background-position: -590px -124px;
}
.icon-search {
    width: 18px;
    height: 18px;
    background-position: -522px -257px;
}
.icon-shop-title-orange {
    width: 25px;
    height: 19px;
    background-position: -528px -232px;
}
.icon-sidemenu-account-active {
    width: 20px;
    height: 20px;
    background-position: -430px -207px;
}
.icon-sidemenu-account-disabled {
    width: 20px;
    height: 20px;
    background-position: -612px -207px;
}
.icon-sidemenu-account-hover {
    width: 20px;
    height: 20px;
    background-position: -430px -232px;
}
.icon-sidemenu-account {
    width: 20px;
    height: 20px;
    background-position: -455px -232px;
}
.icon-sidemenu-berichten-active {
    width: 18px;
    height: 17px;
    background-position: -545px -280px;
}
.icon-sidemenu-berichten-disabled {
    width: 18px;
    height: 17px;
    background-position: -522px -280px;
}
.icon-sidemenu-berichten-hover {
    width: 18px;
    height: 17px;
    background-position: -499px -280px;
}
.icon-sidemenu-berichten {
    width: 18px;
    height: 17px;
    background-position: -476px -280px;
}
.icon-sidemenu-cvdatabase-active {
    width: 21px;
    height: 20px;
    background-position: -613px -182px;
}
.icon-sidemenu-cvdatabase-disabled {
    width: 21px;
    height: 20px;
    background-position: -587px -182px;
}
.icon-sidemenu-cvdatabase-hover {
    width: 21px;
    height: 20px;
    background-position: -561px -182px;
}
.icon-sidemenu-cvdatabase {
    width: 21px;
    height: 20px;
    background-position: -455px -207px;
}
.icon-sidemenu-dashboard-active {
    width: 20px;
    height: 13px;
    background-position: -516px -364px;
}
.icon-sidemenu-dashboard-disabled {
    width: 20px;
    height: 13px;
    background-position: -580px -345px;
}
.icon-sidemenu-dashboard-hover {
    width: 20px;
    height: 13px;
    background-position: -491px -364px;
}
.icon-sidemenu-dashboard {
    width: 20px;
    height: 13px;
    background-position: -466px -364px;
}
.icon-sidemenu-ondersteuning-active {
    width: 20px;
    height: 15px;
    background-position: -430px -325px;
}
.icon-sidemenu-ondersteuning-disabled {
    width: 20px;
    height: 15px;
    background-position: -548px -303px;
}
.icon-sidemenu-ondersteuning-hover {
    width: 20px;
    height: 15px;
    background-position: -484px -303px;
}
.icon-sidemenu-ondersteuning {
    width: 20px;
    height: 15px;
    background-position: -455px -325px;
}
.icon-sidemenu-producten-active {
    width: 22px;
    height: 17px;
    background-position: -568px -280px;
}
.icon-sidemenu-producten-disabled {
    width: 22px;
    height: 17px;
    background-position: -595px -280px;
}
.icon-sidemenu-producten-hover {
    width: 22px;
    height: 17px;
    background-position: -430px -303px;
}
.icon-sidemenu-producten {
    width: 22px;
    height: 17px;
    background-position: -457px -303px;
}
.icon-sidemenu-vacatures-active {
    width: 19px;
    height: 19px;
    background-position: -558px -232px;
}
.icon-sidemenu-vacatures-disabled {
    width: 19px;
    height: 19px;
    background-position: -582px -232px;
}
.icon-sidemenu-vacatures-hover {
    width: 19px;
    height: 19px;
    background-position: -504px -232px;
}
.icon-sidemenu-vacatures {
    width: 19px;
    height: 19px;
    background-position: -480px -232px;
}
.icon-sidemenu-statistieken-hover {
    width: 20px;
    height: 20px;
    background-position: -536px -382px;
}
.icon-sidemenu-statistieken {
    width: 20px;
    height: 20px;
    background-position: -511px -382px;
}
.icon-sidemenu-cvdatabase-zoeken {
    width: 16px;
    height: 16px;
    background-position: -451px -410px;
}
.icon-sidemenu-cvdatabase-zoeken-hover {
    width: 16px;
    height: 16px;
    background-position: -430px -410px;
}
.icon-sidemenu-cvdatabase-berichten {
    width: 20px;
    height: 18px;
    background-position: -497px -410px;
}
.icon-sidemenu-cvdatabase-berichten-hover {
    width: 20px;
    height: 18px;
    background-position: -472px -410px;
}
.icon-sidemenu-cvdatabase-zoekopdrachten {
    width: 20px;
    height: 18px;
    background-position: -547px -410px;
}
.icon-sidemenu-cvdatabase-zoekopdrachten-hover {
    width: 20px;
    height: 18px;
    background-position: -522px -410px;
}
.icon-sidemenu-cvdatabase-uitloggen {
    width: 18px;
    height: 19px;
    background-position: -595px -410px;
}
.icon-sidemenu-cvdatabase-uitloggen-hover {
    width: 18px;
    height: 19px;
    background-position: -572px -410px;
}
.icon-statistics-help-hover {
    width: 16px;
    height: 12px;
    background-position: -402px -228px;
}
.icon-statistics-help {
    width: 16px;
    height: 12px;
    background-position: -558px -364px;
}
.icon-steps-order-grey {
    width: 23px;
    height: 26px;
    background-position: -587px -45px;
}
.icon-steps-order-orange {
    width: 23px;
    height: 26px;
    background-position: -615px -45px;
}
.icon-dashboard-title-orange {
    width: 22px;
    height: 14px;
    background-position: -586px -382px;
}
.icon-statistieken-title-orange {
    width: 22px;
    height: 22px;
    background-position: -459px -382px;
}
.icon-vacaturebeheer-title-orange {
    width: 24px;
    height: 23px;
    background-position: -430px -382px;
}
.retina-icons {
    background: url("../images/sprites2x.png") no-repeat;
    background-size: 620px 370px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .icon,
    .icon a {
        background: url("../images/sprites2x.png") no-repeat;
        background-size: 620px 370px;
    }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .icon-account-title-orange {
        width: 22px;
        height: 22px;
        background-position: -410px -139px;
    }
    .icon-arrow-breadcrumb {
        width: 3px;
        height: 6px;
        background-position: -614px -58px;
    }
    .icon-arrow-entryfield-choose-down-active {
        width: 10px;
        height: 5px;
        background-position: -487px -304px;
    }
    .icon-arrow-entryfield-choose-down-disabled {
        width: 10px;
        height: 5px;
        background-position: -598px -291px;
    }
    .icon-arrow-entryfield-choose-down-hover {
        width: 10px;
        height: 5px;
        background-position: -421px -304px;
    }
    .icon-arrow-entryfield-choose-down {
        width: 10px;
        height: 5px;
        background-position: -432px -304px;
    }
    .icon-arrow-entryfield-choose-up-active {
        width: 10px;
        height: 5px;
        background-position: -443px -304px;
    }
    .icon-arrow-entryfield-choose-up-disabled {
        width: 10px;
        height: 5px;
        background-position: -465px -304px;
    }
    .icon-arrow-entryfield-choose-up-hover {
        width: 10px;
        height: 5px;
        background-position: -476px -304px;
    }
    .icon-arrow-entryfield-choose-up {
        width: 10px;
        height: 5px;
        background-position: -587px -291px;
    }
    .icon-arrow-header-profile-down-active {
        width: 10px;
        height: 5px;
        background-position: -498px -304px;
    }
    .icon-arrow-header-profile-down-disabled {
        width: 10px;
        height: 5px;
        background-position: -610px -217px;
    }
    .icon-arrow-header-profile-down-hover {
        width: 10px;
        height: 5px;
        background-position: -609px -291px;
    }
    .icon-arrow-header-profile-down {
        width: 10px;
        height: 5px;
        background-position: -576px -291px;
    }
    .icon-arrow-header-profile-up-active {
        width: 10px;
        height: 5px;
        background-position: -565px -291px;
    }
    .icon-arrow-header-profile-up-disabled {
        width: 10px;
        height: 5px;
        background-position: -554px -291px;
    }
    .icon-arrow-header-profile-up-hover {
        width: 10px;
        height: 5px;
        background-position: -454px -304px;
    }
    .icon-arrow-header-profile-up {
        width: 10px;
        height: 5px;
        background-position: -410px -304px;
    }
    .icon-arrow-pager-left-active {
        width: 5px;
        height: 10px;
        background-position: -536px -291px;
    }
    .icon-arrow-pager-left-disabled {
        width: 5px;
        height: 10px;
        background-position: -542px -291px;
    }
    .icon-arrow-pager-left-hover {
        width: 5px;
        height: 10px;
        background-position: -530px -291px;
    }
    .icon-arrow-pager-left {
        width: 5px;
        height: 10px;
        background-position: -548px -291px;
    }
    .icon-arrow-pager-right-active {
        width: 5px;
        height: 10px;
        background-position: -613px -89px;
    }
    .icon-arrow-pager-right-disabled {
        width: 5px;
        height: 10px;
        background-position: -613px -100px;
    }
    .icon-arrow-pager-right-hover {
        width: 5px;
        height: 10px;
        background-position: -513px -291px;
    }
    .icon-arrow-pager-right {
        width: 5px;
        height: 10px;
        background-position: -613px -78px;
    }
    .icon-breadcrumbs-dashboard {
        width: 17px;
        height: 11px;
        background-position: -495px -291px;
    }
    .icon-button-arrow-upgrade {
        width: 10px;
        height: 11px;
        background-position: -609px -261px;
    }
    .icon-button-info-active {
        width: 14px;
        height: 14px;
        background-position: -425px -276px;
    }
    .icon-button-info-darkgrey-active {
        width: 14px;
        height: 14px;
        background-position: -410px -276px;
    }
    .icon-button-info-grey-active {
        width: 14px;
        height: 14px;
        background-position: -594px -261px;
    }
    .icon-button-info-grey-disabled {
        width: 14px;
        height: 14px;
        background-position: -579px -261px;
    }
    .icon-button-info-hover {
        width: 14px;
        height: 14px;
        background-position: -546px -261px;
    }
    .icon-button-info {
        width: 14px;
        height: 14px;
        background-position: -455px -261px;
    }
    .icon-button-infodisabled {
        width: 14px;
        height: 14px;
        background-position: -531px -261px;
    }
    .icon-button-modify-active {
        width: 18px;
        height: 18px;
        background-position: -515px -204px;
    }
    .icon-button-modify-disabled {
        width: 18px;
        height: 18px;
        background-position: -511px -224px;
    }
    .icon-button-modify-hover {
        width: 18px;
        height: 18px;
        background-position: -492px -224px;
    }
    .icon-button-modify {
        width: 18px;
        height: 18px;
        background-position: -454px -224px;
    }
    .icon-button-new-account-active {
        width: 13px;
        height: 13px;
        background-position: -531px -276px;
    }
    .icon-button-new-account-disabled {
        width: 13px;
        height: 13px;
        background-position: -517px -276px;
    }
    .icon-button-new-account-hover {
        width: 13px;
        height: 13px;
        background-position: -503px -276px;
    }
    .icon-button-new-account {
        width: 13px;
        height: 13px;
        background-position: -489px -276px;
    }
    .icon-button-plaatvacature {
        width: 17px;
        height: 14px;
        background-position: -561px -261px;
    }
    .icon-button-remove-user-active {
        width: 18px;
        height: 18px;
        background-position: -553px -204px;
    }
    .icon-button-remove-user-disabled {
        width: 18px;
        height: 18px;
        background-position: -534px -204px;
    }
    .icon-button-remove-user-hover {
        width: 18px;
        height: 18px;
        background-position: -572px -204px;
    }
    .icon-button-remove-user {
        width: 18px;
        height: 18px;
        background-position: -496px -204px;
    }
    .icon-checkbox-active {
        width: 23px;
        height: 22px;
        background-position: -452px -139px;
    }
    .icon-checkmark {
        width: 10px;
        height: 8px;
        background-position: -603px -58px;
    }
    .icon-cross-notification {
        width: 10px;
        height: 10px;
        background-position: -519px -291px;
    }
    .icon-cross-popup-grey-active {
        width: 20px;
        height: 20px;
        background-position: -410px -162px;
    }
    .icon-cross-popup-grey-disabled {
        width: 20px;
        height: 20px;
        background-position: -431px -162px;
    }
    .icon-cross-popup-grey-hover {
        width: 20px;
        height: 20px;
        background-position: -452px -162px;
    }
    .icon-cross-popup-grey {
        width: 20px;
        height: 20px;
        background-position: -473px -162px;
    }
    .icon-delete-grey {
        width: 18px;
        height: 22px;
        background-position: -433px -139px;
    }
    .icon-discountcode-cross {
        width: 12px;
        height: 12px;
        background-position: -482px -291px;
    }
    .icon-entryfield-error {
        width: 18px;
        height: 18px;
        background-position: -435px -224px;
    }
    .icon-entryfield-ok {
        width: 18px;
        height: 18px;
        background-position: -473px -224px;
    }
    .icon-generate-pdf-active {
        width: 20px;
        height: 23px;
        background-position: -529px -112px;
    }
    .icon-generate-pdf-disabled {
        width: 20px;
        height: 23px;
        background-position: -508px -112px;
    }
    .icon-generate-pdf-hover {
        width: 20px;
        height: 23px;
        background-position: -487px -112px;
    }
    .icon-generate-pdf {
        width: 20px;
        height: 23px;
        background-position: -466px -112px;
    }
    .icon-login-logo-white {
        width: 210px;
        height: 40px;
        background-position: -410px 0px;
    }
    .icon-login-poweredby {
        width: 55px;
        height: 26px;
        background-position: -410px -112px;
    }
    .icon-logo-mobile {
        width: 202px;
        height: 33px;
        background-position: -410px -78px;
    }
    .icon-logo-orange {
        width: 237px;
        height: 45px;
        background-position: 0px -284px;
    }
    .icon-logo-small {
        width: 126px;
        height: 20px;
        background-position: -475px -139px;
    }
    .icon-menu-tablet-landscape {
        width: 45px;
        height: 41px;
        background-position: -346px -216px;
    }
    .icon-menu-tablet-mobile {
        width: 34px;
        height: 31px;
        background-position: -459px -41px;
    }
    .icon-messages {
        width: 23px;
        height: 22px;
        background-position: -569px -112px;
    }
    .icon-mobile-logo-footer-qube {
        width: 61px;
        height: 30px;
        background-position: -493px -41px;
    }
    .icon-mobile-logo-footer-techniek {
        width: 126px;
        height: 20px;
        background-position: -410px -183px;
    }
    .icon-modify-entryfield-active {
        width: 14px;
        height: 14px;
        background-position: -453px -276px;
    }
    .icon-modify-entryfield-disabled {
        width: 14px;
        height: 14px;
        background-position: -410px -261px;
    }
    .icon-modify-entryfield-hover {
        width: 14px;
        height: 14px;
        background-position: -425px -261px;
    }
    .icon-modify-entryfield {
        width: 14px;
        height: 14px;
        background-position: -440px -261px;
    }
    .icon-newjob-attachment {
        width: 16px;
        height: 16px;
        background-position: -603px -41px;
    }
    .icon-newjob-biggertext {
        width: 22px;
        height: 14px;
        background-position: -508px -261px;
    }
    .icon-newjob-bold {
        width: 12px;
        height: 12px;
        background-position: -608px -276px;
    }
    .icon-newjob-bullets {
        width: 15px;
        height: 15px;
        background-position: -602px -139px;
    }
    .icon-newjob-html {
        width: 20px;
        height: 12px;
        background-position: -427px -291px;
    }
    .icon-newjob-italic {
        width: 10px;
        height: 12px;
        background-position: -610px -204px;
    }
    .icon-newjob-numbering {
        width: 14px;
        height: 15px;
        background-position: -561px -243px;
    }
    .icon-newjob-placeholder {
        width: 48px;
        height: 36px;
        background-position: -410px -41px;
    }
    .icon-newjob-smallertext {
        width: 19px;
        height: 14px;
        background-position: -470px -261px;
    }
    .icon-newjob-textalign-center {
        width: 17px;
        height: 14px;
        background-position: -490px -261px;
    }
    .icon-newjob-textalign-left {
        width: 17px;
        height: 15px;
        background-position: -603px -162px;
    }
    .icon-newjob-textalign-right {
        width: 18px;
        height: 15px;
        background-position: -576px -243px;
    }
    .icon-newjob-title-orange {
        width: 22px;
        height: 22px;
        background-position: -593px -112px;
    }
    .icon-newjob-underline {
        width: 9px;
        height: 12px;
        background-position: -610px -224px;
    }
    .icon-product-365online-mobile {
        width: 35px;
        height: 40px;
        background-position: -108px -330px;
    }
    .icon-product-365online {
        width: 63px;
        height: 71px;
        background-position: -346px -144px;
    }
    .icon-product-60days-mobile {
        width: 35px;
        height: 40px;
        background-position: -36px -330px;
    }
    .icon-product-60days {
        width: 63px;
        height: 71px;
        background-position: -346px -72px;
    }
    .icon-product-automation-mobile {
        width: 35px;
        height: 40px;
        background-position: -346px -284px;
    }
    .icon-product-automation {
        width: 63px;
        height: 71px;
        background-position: -346px 0px;
    }
    .icon-product-contact-mobile {
        width: 35px;
        height: 40px;
        background-position: -274px -284px;
    }
    .icon-product-contact {
        width: 63px;
        height: 71px;
        background-position: -256px -212px;
    }
    .icon-product-cv-mobile {
        width: 35px;
        height: 40px;
        background-position: -222px -106px;
    }
    .icon-product-cv {
        width: 63px;
        height: 71px;
        background-position: -192px -212px;
    }
    .icon-product-mailing-mobile {
        width: 35px;
        height: 40px;
        background-position: -282px -144px;
    }
    .icon-product-mailing {
        width: 63px;
        height: 71px;
        background-position: -64px -212px;
    }
    .icon-product-oneclick-mobile {
        width: 35px;
        height: 40px;
        background-position: -144px -330px;
    }
    .icon-product-oneclick {
        width: 63px;
        height: 71px;
        background-position: -94px -106px;
    }
    .icon-product-response-mobile {
        width: 35px;
        height: 40px;
        background-position: 0px -330px;
    }
    .icon-product-response {
        width: 63px;
        height: 71px;
        background-position: 0px -212px;
    }
    .icon-product-study-mobile {
        width: 35px;
        height: 40px;
        background-position: -238px -284px;
    }
    .icon-product-study {
        width: 63px;
        height: 71px;
        background-position: -282px -72px;
    }
    .icon-product-support-mobile {
        width: 35px;
        height: 40px;
        background-position: -180px -330px;
    }
    .icon-product-support {
        width: 63px;
        height: 71px;
        background-position: -282px 0px;
    }
    .icon-product-top-mobile {
        width: 35px;
        height: 40px;
        background-position: -310px -284px;
    }
    .icon-product-top {
        width: 63px;
        height: 71px;
        background-position: -158px -106px;
    }
    .icon-product-unlimited-mobile {
        width: 35px;
        height: 40px;
        background-position: -72px -330px;
    }
    .icon-product-unlimited {
        width: 63px;
        height: 71px;
        background-position: -128px -212px;
    }
    .icon-productoverview-boost {
        width: 93px;
        height: 105px;
        background-position: -94px 0px;
    }
    .icon-productoverview-cv {
        width: 93px;
        height: 105px;
        background-position: 0px 0px;
    }
    .icon-productoverview-eenmalig {
        width: 93px;
        height: 105px;
        background-position: -188px 0px;
    }
    .icon-productoverview-onbeperkt {
        width: 93px;
        height: 105px;
        background-position: 0px -106px;
    }
    .icon-score-jobtext-attention-details {
        width: 16px;
        height: 12px;
        background-position: -448px -291px;
    }
    .icon-score-jobtext-attention {
        width: 24px;
        height: 18px;
        background-position: -410px -224px;
    }
    .icon-score-jobtext-good-details {
        width: 12px;
        height: 14px;
        background-position: -440px -276px;
    }
    .icon-score-jobtext-good {
        width: 18px;
        height: 22px;
        background-position: -550px -112px;
    }
    .icon-search {
        width: 18px;
        height: 18px;
        background-position: -591px -204px;
    }
    .icon-shop-title-orange {
        width: 25px;
        height: 19px;
        background-position: -430px -204px;
    }
    .icon-sidemenu-account-active {
        width: 20px;
        height: 20px;
        background-position: -560px -162px;
    }
    .icon-sidemenu-account-disabled {
        width: 20px;
        height: 20px;
        background-position: -537px -183px;
    }
    .icon-sidemenu-account-hover {
        width: 20px;
        height: 20px;
        background-position: -579px -183px;
    }
    .icon-sidemenu-account {
        width: 20px;
        height: 20px;
        background-position: -558px -183px;
    }
    .icon-sidemenu-berichten-active {
        width: 18px;
        height: 17px;
        background-position: -410px -243px;
    }
    .icon-sidemenu-berichten-disabled {
        width: 18px;
        height: 17px;
        background-position: -591px -224px;
    }
    .icon-sidemenu-berichten-hover {
        width: 18px;
        height: 17px;
        background-position: -572px -224px;
    }
    .icon-sidemenu-berichten {
        width: 18px;
        height: 17px;
        background-position: -553px -224px;
    }
    .icon-sidemenu-cvdatabase-active {
        width: 21px;
        height: 20px;
        background-position: -538px -162px;
    }
    .icon-sidemenu-cvdatabase-disabled {
        width: 21px;
        height: 20px;
        background-position: -516px -162px;
    }
    .icon-sidemenu-cvdatabase-hover {
        width: 21px;
        height: 20px;
        background-position: -494px -162px;
    }
    .icon-sidemenu-cvdatabase {
        width: 21px;
        height: 20px;
        background-position: -581px -162px;
    }
    .icon-sidemenu-dashboard-active {
        width: 20px;
        height: 13px;
        background-position: -587px -276px;
    }
    .icon-sidemenu-dashboard-disabled {
        width: 20px;
        height: 13px;
        background-position: -468px -276px;
    }
    .icon-sidemenu-dashboard-hover {
        width: 20px;
        height: 13px;
        background-position: -566px -276px;
    }
    .icon-sidemenu-dashboard {
        width: 20px;
        height: 13px;
        background-position: -545px -276px;
    }
    .icon-sidemenu-ondersteuning-active {
        width: 20px;
        height: 15px;
        background-position: -540px -243px;
    }
    .icon-sidemenu-ondersteuning-disabled {
        width: 20px;
        height: 15px;
        background-position: -498px -243px;
    }
    .icon-sidemenu-ondersteuning-hover {
        width: 20px;
        height: 15px;
        background-position: -595px -243px;
    }
    .icon-sidemenu-ondersteuning {
        width: 20px;
        height: 15px;
        background-position: -519px -243px;
    }
    .icon-sidemenu-producten-active {
        width: 22px;
        height: 17px;
        background-position: -530px -224px;
    }
    .icon-sidemenu-producten-disabled {
        width: 22px;
        height: 17px;
        background-position: -429px -243px;
    }
    .icon-sidemenu-producten-hover {
        width: 22px;
        height: 17px;
        background-position: -452px -243px;
    }
    .icon-sidemenu-producten {
        width: 22px;
        height: 17px;
        background-position: -475px -243px;
    }
    .icon-sidemenu-vacatures-active {
        width: 19px;
        height: 19px;
        background-position: -456px -204px;
    }
    .icon-sidemenu-vacatures-disabled {
        width: 19px;
        height: 19px;
        background-position: -476px -204px;
    }
    .icon-sidemenu-vacatures-hover {
        width: 19px;
        height: 19px;
        background-position: -410px -204px;
    }
    .icon-sidemenu-vacatures {
        width: 19px;
        height: 19px;
        background-position: -600px -183px;
    }
    .icon-sidemenu-statistieken-hover {
        width: 20px;
        height: 20px;
        background-position: -515px -313px;
    }
    .icon-sidemenu-statistieken {
        width: 20px;
        height: 20px;
        background-position: -490px -313px;
    }
    .icon-sidemenu-cvdatabase-zoeken {
        width: 16px;
        height: 16px;
        background-position: -430px -340px;
    }
    .icon-sidemenu-cvdatabase-zoeken-hover {
        width: 16px;
        height: 16px;
        background-position: -410px -340px;
    }
    .icon-sidemenu-cvdatabase-berichten {
        width: 20px;
        height: 18px;
        background-position: -475px -340px;
    }
    .icon-sidemenu-cvdatabase-berichten-hover {
        width: 20px;
        height: 18px;
        background-position: -451px -340px;
    }
    .icon-sidemenu-cvdatabase-zoekopdrachten {
        width: 20px;
        height: 17px;
        background-position: -524px -340px;
    }
    .icon-sidemenu-cvdatabase-zoekopdrachten-hover {
        width: 20px;
        height: 17px;
        background-position: -500px -340px;
    }
    .icon-sidemenu-cvdatabase-uitloggen {
        width: 18px;
        height: 19px;
        background-position: -571px -340px;
    }
    .icon-sidemenu-cvdatabase-uitloggen-hover {
        width: 18px;
        height: 19px;
        background-position: -549px -340px;
    }
    .icon-statistics-help-hover {
        width: 16px;
        height: 12px;
        background-position: -465px -291px;
    }
    .icon-statistics-help {
        width: 16px;
        height: 12px;
        background-position: -410px -291px;
    }
    .icon-steps-order-grey {
        width: 23px;
        height: 26px;
        background-position: -555px -41px;
    }
    .icon-steps-order-orange {
        width: 23px;
        height: 26px;
        background-position: -579px -41px;
    }
    .icon-dashboard-title-orange {
        width: 22px;
        height: 14px;
        background-position: -564px -313px;
    }
    .icon-statistieken-title-orange {
        width: 22px;
        height: 22px;
        background-position: -438px -313px;
    }
    .icon-vacaturebeheer-title-orange {
        width: 24px;
        height: 23px;
        background-position: -410px -313px;
    }
}
.orange {
    color: var(--PRIMARY);
}
.bg-orange {
    background-color: var(--PRIMARY);
}
.brand-primary {
    color: var(--PRIMARY);
}
.bg-brand-primary {
    background-color: var(--PRIMARY);
}
.brand-secondary {
    color: #5e2a06;
}
.bg-brand-secondary {
    background-color: #5e2a06;
}
.red {
    color: #ef351d;
}
.bg-red {
    background-color: #ef351d;
}
.green {
    color: #21b3a2;
}
.bg-green {
    background-color: #21b3a2;
}
.white {
    color: #ffffff;
}
.bg-white {
    background-color: #ffffff;
}
.black {
    color: #3f3f3f;
}
.bg-black {
    background-color: #3f3f3f;
}
.gray-darkest {
    color: #000;
}
.bg-gray-darkest {
    background-color: #000;
}
.gray-darker {
    color: #3f3f3f;
}
.bg-gray-darker {
    background-color: #3f3f3f;
}
.gray-dark {
    color: #645e5e;
}
.bg-gray-dark {
    background-color: #645e5e;
}
.light-grey {
    color: #d9d9d9;
}
.bg-light-grey {
    background-color: #d9d9d9;
}
.gray-mid {
    color: #858484;
}
.bg-gray-mid {
    background-color: #858484;
}
.gray {
    color: #717171;
}
.bg-gray {
    background-color: #717171;
}
.gray-light {
    color: #c3c3c3;
}
.bg-gray-light {
    background-color: #c3c3c3;
}
.gray-lighter {
    color: #d9d9d9;
}
.bg-gray-lighter {
    background-color: #d9d9d9;
}
.gray-light-mid {
    color: #d4d4d4;
}
.bg-gray-light-mid {
    background-color: #d4d4d4;
}
.gray-mid-light {
    color: #909090;
}
.bg-gray-mid-light {
    background-color: #909090;
}
.gray-lightest {
    color: #f6f6f6;
}
.bg-gray-lightest {
    background-color: #f6f6f6;
}
.col-xs-half {
    float: left;
    width: 50%;
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}
.narrow-spacing,
.narrow-gutter {
    margin-left: -5px;
    margin-right: -5px;
}
.narrow-spacing [class*="col-"],
.narrow-gutter [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}
.clear {
    clear: both;
}
[class*="pos-top"],
[class*="pos-bottom"],
[class*="pos-center"] {
    position: absolute;
}
.pos-top-left {
    top: 10px;
    left: 10px;
}
.pos-top-right {
    top: 10px;
    right: 10px;
}
.pos-bottom-left {
    bottom: 10px;
    left: 10px;
}
.pos-bottom-right {
    bottom: 0;
    right: 0;
}
.pos-center-left {
    left: 10px;
}
.pos-center-right {
    right: 10px;
}
.pos-center-left,
.pos-center-right {
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
}
.pos-left {
    left: 0;
}
.pos-center {
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}
.pos-center-center {
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.pos-inline {
    vertical-align: middle;
}
.pos-text-middle {
    vertical-align: text-bottom;
}
.vertical-align {
    vertical-align: middle;
}
.aligned-right {
    margin-left: 10px;
}
.aligned-left {
    margin-right: 10px;
}
.col-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .display-xs-block {
        display: block;
    }
    .text-xs-left {
        text-align: left;
    }
}
.align-tp {
    vertical-align: top;
}
.align-md {
    vertical-align: middle;
}
.align-bt {
    vertical-align: bottom;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.fixed {
    position: fixed;
}
.margin-5 {
    margin: 5px;
}
.margin-top-5 {
    margin-top: 5px;
}
.margin-bottom-5 {
    margin-bottom: 5px;
}
.margin-left-5 {
    margin-left: 5px;
}
.margin-right-5 {
    margin-right: 5px;
}
@media (max-width: 768px) {
    .margin-xs-5 {
        margin: 5px;
    }
    .margin-xs-top-5 {
        margin-top: 5px;
    }
    .margin-xs-bottom-5 {
        margin-bottom: 5px;
    }
    .margin-xs-left-5 {
        margin-left: 5px;
    }
    .margin-xs-right-5 {
        margin-right: 5px;
    }
}
@media (min-width: 768px) {
    .margin-sm-5 {
        margin: 5px;
    }
    .margin-sm-top-5 {
        margin-top: 5px;
    }
    .margin-sm-bottom-5 {
        margin-bottom: 5px;
    }
    .margin-sm-left-5 {
        margin-left: 5px;
    }
    .margin-sm-right-5 {
        margin-right: 5px;
    }
}
@media (min-width: 992px) {
    .margin-md-5 {
        margin: 5px;
    }
    .margin-md-top-5 {
        margin-top: 5px;
    }
    .margin-md-bottom-5 {
        margin-bottom: 5px;
    }
    .margin-md-left-5 {
        margin-left: 5px;
    }
    .margin-md-right-5 {
        margin-right: 5px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-5 {
        margin: 5px;
    }
    .margin-lg-top-5 {
        margin-top: 5px;
    }
    .margin-lg-bottom-5 {
        margin-bottom: 5px;
    }
    .margin-lg-left-5 {
        margin-left: 5px;
    }
    .margin-lg-right-5 {
        margin-right: 5px;
    }
}
.margin-10 {
    margin: 10px;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-bottom-10 {
    margin-bottom: 10px;
}
.margin-left-10 {
    margin-left: 10px;
}
.margin-right-10 {
    margin-right: 10px;
}
@media (max-width: 768px) {
    .margin-xs-10 {
        margin: 10px;
    }
    .margin-xs-top-10 {
        margin-top: 10px;
    }
    .margin-xs-bottom-10 {
        margin-bottom: 10px;
    }
    .margin-xs-left-10 {
        margin-left: 10px;
    }
    .margin-xs-right-10 {
        margin-right: 10px;
    }
}
@media (min-width: 768px) {
    .margin-sm-10 {
        margin: 10px;
    }
    .margin-sm-top-10 {
        margin-top: 10px;
    }
    .margin-sm-bottom-10 {
        margin-bottom: 10px;
    }
    .margin-sm-left-10 {
        margin-left: 10px;
    }
    .margin-sm-right-10 {
        margin-right: 10px;
    }
}
@media (min-width: 992px) {
    .margin-md-10 {
        margin: 10px;
    }
    .margin-md-top-10 {
        margin-top: 10px;
    }
    .margin-md-bottom-10 {
        margin-bottom: 10px;
    }
    .margin-md-left-10 {
        margin-left: 10px;
    }
    .margin-md-right-10 {
        margin-right: 10px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-10 {
        margin: 10px;
    }
    .margin-lg-top-10 {
        margin-top: 10px;
    }
    .margin-lg-bottom-10 {
        margin-bottom: 10px;
    }
    .margin-lg-left-10 {
        margin-left: 10px;
    }
    .margin-lg-right-10 {
        margin-right: 10px;
    }
}
.margin-15 {
    margin: 15px;
}
.margin-top-15 {
    margin-top: 15px;
}
.margin-bottom-15 {
    margin-bottom: 15px;
}
.margin-left-15 {
    margin-left: 15px;
}
.margin-right-15 {
    margin-right: 15px;
}
@media (max-width: 768px) {
    .margin-xs-15 {
        margin: 15px;
    }
    .margin-xs-top-15 {
        margin-top: 15px;
    }
    .margin-xs-bottom-15 {
        margin-bottom: 15px;
    }
    .margin-xs-left-15 {
        margin-left: 15px;
    }
    .margin-xs-right-15 {
        margin-right: 15px;
    }
}
@media (min-width: 768px) {
    .margin-sm-15 {
        margin: 15px;
    }
    .margin-sm-top-15 {
        margin-top: 15px;
    }
    .margin-sm-bottom-15 {
        margin-bottom: 15px;
    }
    .margin-sm-left-15 {
        margin-left: 15px;
    }
    .margin-sm-right-15 {
        margin-right: 15px;
    }
}
@media (min-width: 992px) {
    .margin-md-15 {
        margin: 15px;
    }
    .margin-md-top-15 {
        margin-top: 15px;
    }
    .margin-md-bottom-15 {
        margin-bottom: 15px;
    }
    .margin-md-left-15 {
        margin-left: 15px;
    }
    .margin-md-right-15 {
        margin-right: 15px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-15 {
        margin: 15px;
    }
    .margin-lg-top-15 {
        margin-top: 15px;
    }
    .margin-lg-bottom-15 {
        margin-bottom: 15px;
    }
    .margin-lg-left-15 {
        margin-left: 15px;
    }
    .margin-lg-right-15 {
        margin-right: 15px;
    }
}
.margin-20 {
    margin: 20px;
}
.margin-top-20 {
    margin-top: 20px;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.margin-left-20 {
    margin-left: 20px;
}
.margin-right-20 {
    margin-right: 20px;
}
@media (max-width: 768px) {
    .margin-xs-20 {
        margin: 20px;
    }
    .margin-xs-top-20 {
        margin-top: 20px;
    }
    .margin-xs-bottom-20 {
        margin-bottom: 20px;
    }
    .margin-xs-left-20 {
        margin-left: 20px;
    }
    .margin-xs-right-20 {
        margin-right: 20px;
    }
}
@media (min-width: 768px) {
    .margin-sm-20 {
        margin: 20px;
    }
    .margin-sm-top-20 {
        margin-top: 20px;
    }
    .margin-sm-bottom-20 {
        margin-bottom: 20px;
    }
    .margin-sm-left-20 {
        margin-left: 20px;
    }
    .margin-sm-right-20 {
        margin-right: 20px;
    }
}
@media (min-width: 992px) {
    .margin-md-20 {
        margin: 20px;
    }
    .margin-md-top-20 {
        margin-top: 20px;
    }
    .margin-md-bottom-20 {
        margin-bottom: 20px;
    }
    .margin-md-left-20 {
        margin-left: 20px;
    }
    .margin-md-right-20 {
        margin-right: 20px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-20 {
        margin: 20px;
    }
    .margin-lg-top-20 {
        margin-top: 20px;
    }
    .margin-lg-bottom-20 {
        margin-bottom: 20px;
    }
    .margin-lg-left-20 {
        margin-left: 20px;
    }
    .margin-lg-right-20 {
        margin-right: 20px;
    }
}
.margin-25 {
    margin: 25px;
}
.margin-top-25 {
    margin-top: 25px;
}
.margin-bottom-25 {
    margin-bottom: 25px;
}
.margin-left-25 {
    margin-left: 25px;
}
.margin-right-25 {
    margin-right: 25px;
}
@media (max-width: 768px) {
    .margin-xs-25 {
        margin: 25px;
    }
    .margin-xs-top-25 {
        margin-top: 25px;
    }
    .margin-xs-bottom-25 {
        margin-bottom: 25px;
    }
    .margin-xs-left-25 {
        margin-left: 25px;
    }
    .margin-xs-right-25 {
        margin-right: 25px;
    }
}
@media (min-width: 768px) {
    .margin-sm-25 {
        margin: 25px;
    }
    .margin-sm-top-25 {
        margin-top: 25px;
    }
    .margin-sm-bottom-25 {
        margin-bottom: 25px;
    }
    .margin-sm-left-25 {
        margin-left: 25px;
    }
    .margin-sm-right-25 {
        margin-right: 25px;
    }
}
@media (min-width: 992px) {
    .margin-md-25 {
        margin: 25px;
    }
    .margin-md-top-25 {
        margin-top: 25px;
    }
    .margin-md-bottom-25 {
        margin-bottom: 25px;
    }
    .margin-md-left-25 {
        margin-left: 25px;
    }
    .margin-md-right-25 {
        margin-right: 25px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-25 {
        margin: 25px;
    }
    .margin-lg-top-25 {
        margin-top: 25px;
    }
    .margin-lg-bottom-25 {
        margin-bottom: 25px;
    }
    .margin-lg-left-25 {
        margin-left: 25px;
    }
    .margin-lg-right-25 {
        margin-right: 25px;
    }
}
.margin-30 {
    margin: 30px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-left-30 {
    margin-left: 30px;
}
.margin-right-30 {
    margin-right: 30px;
}
@media (max-width: 768px) {
    .margin-xs-30 {
        margin: 30px;
    }
    .margin-xs-top-30 {
        margin-top: 30px;
    }
    .margin-xs-bottom-30 {
        margin-bottom: 30px;
    }
    .margin-xs-left-30 {
        margin-left: 30px;
    }
    .margin-xs-right-30 {
        margin-right: 30px;
    }
}
@media (min-width: 768px) {
    .margin-sm-30 {
        margin: 30px;
    }
    .margin-sm-top-30 {
        margin-top: 30px;
    }
    .margin-sm-bottom-30 {
        margin-bottom: 30px;
    }
    .margin-sm-left-30 {
        margin-left: 30px;
    }
    .margin-sm-right-30 {
        margin-right: 30px;
    }
}
@media (min-width: 992px) {
    .margin-md-30 {
        margin: 30px;
    }
    .margin-md-top-30 {
        margin-top: 30px;
    }
    .margin-md-bottom-30 {
        margin-bottom: 30px;
    }
    .margin-md-left-30 {
        margin-left: 30px;
    }
    .margin-md-right-30 {
        margin-right: 30px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-30 {
        margin: 30px;
    }
    .margin-lg-top-30 {
        margin-top: 30px;
    }
    .margin-lg-bottom-30 {
        margin-bottom: 30px;
    }
    .margin-lg-left-30 {
        margin-left: 30px;
    }
    .margin-lg-right-30 {
        margin-right: 30px;
    }
}
.margin-35 {
    margin: 35px;
}
.margin-top-35 {
    margin-top: 35px;
}
.margin-bottom-35 {
    margin-bottom: 35px;
}
.margin-left-35 {
    margin-left: 35px;
}
.margin-right-35 {
    margin-right: 35px;
}
@media (max-width: 768px) {
    .margin-xs-35 {
        margin: 35px;
    }
    .margin-xs-top-35 {
        margin-top: 35px;
    }
    .margin-xs-bottom-35 {
        margin-bottom: 35px;
    }
    .margin-xs-left-35 {
        margin-left: 35px;
    }
    .margin-xs-right-35 {
        margin-right: 35px;
    }
}
@media (min-width: 768px) {
    .margin-sm-35 {
        margin: 35px;
    }
    .margin-sm-top-35 {
        margin-top: 35px;
    }
    .margin-sm-bottom-35 {
        margin-bottom: 35px;
    }
    .margin-sm-left-35 {
        margin-left: 35px;
    }
    .margin-sm-right-35 {
        margin-right: 35px;
    }
}
@media (min-width: 992px) {
    .margin-md-35 {
        margin: 35px;
    }
    .margin-md-top-35 {
        margin-top: 35px;
    }
    .margin-md-bottom-35 {
        margin-bottom: 35px;
    }
    .margin-md-left-35 {
        margin-left: 35px;
    }
    .margin-md-right-35 {
        margin-right: 35px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-35 {
        margin: 35px;
    }
    .margin-lg-top-35 {
        margin-top: 35px;
    }
    .margin-lg-bottom-35 {
        margin-bottom: 35px;
    }
    .margin-lg-left-35 {
        margin-left: 35px;
    }
    .margin-lg-right-35 {
        margin-right: 35px;
    }
}
.margin-40 {
    margin: 40px;
}
.margin-top-40 {
    margin-top: 40px;
}
.margin-bottom-40 {
    margin-bottom: 40px;
}
.margin-left-40 {
    margin-left: 40px;
}
.margin-right-40 {
    margin-right: 40px;
}
@media (max-width: 768px) {
    .margin-xs-40 {
        margin: 40px;
    }
    .margin-xs-top-40 {
        margin-top: 40px;
    }
    .margin-xs-bottom-40 {
        margin-bottom: 40px;
    }
    .margin-xs-left-40 {
        margin-left: 40px;
    }
    .margin-xs-right-40 {
        margin-right: 40px;
    }
}
@media (min-width: 768px) {
    .margin-sm-40 {
        margin: 40px;
    }
    .margin-sm-top-40 {
        margin-top: 40px;
    }
    .margin-sm-bottom-40 {
        margin-bottom: 40px;
    }
    .margin-sm-left-40 {
        margin-left: 40px;
    }
    .margin-sm-right-40 {
        margin-right: 40px;
    }
}
@media (min-width: 992px) {
    .margin-md-40 {
        margin: 40px;
    }
    .margin-md-top-40 {
        margin-top: 40px;
    }
    .margin-md-bottom-40 {
        margin-bottom: 40px;
    }
    .margin-md-left-40 {
        margin-left: 40px;
    }
    .margin-md-right-40 {
        margin-right: 40px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-40 {
        margin: 40px;
    }
    .margin-lg-top-40 {
        margin-top: 40px;
    }
    .margin-lg-bottom-40 {
        margin-bottom: 40px;
    }
    .margin-lg-left-40 {
        margin-left: 40px;
    }
    .margin-lg-right-40 {
        margin-right: 40px;
    }
}
.margin-45 {
    margin: 45px;
}
.margin-top-45 {
    margin-top: 45px;
}
.margin-bottom-45 {
    margin-bottom: 45px;
}
.margin-left-45 {
    margin-left: 45px;
}
.margin-right-45 {
    margin-right: 45px;
}
@media (max-width: 768px) {
    .margin-xs-45 {
        margin: 45px;
    }
    .margin-xs-top-45 {
        margin-top: 45px;
    }
    .margin-xs-bottom-45 {
        margin-bottom: 45px;
    }
    .margin-xs-left-45 {
        margin-left: 45px;
    }
    .margin-xs-right-45 {
        margin-right: 45px;
    }
}
@media (min-width: 768px) {
    .margin-sm-45 {
        margin: 45px;
    }
    .margin-sm-top-45 {
        margin-top: 45px;
    }
    .margin-sm-bottom-45 {
        margin-bottom: 45px;
    }
    .margin-sm-left-45 {
        margin-left: 45px;
    }
    .margin-sm-right-45 {
        margin-right: 45px;
    }
}
@media (min-width: 992px) {
    .margin-md-45 {
        margin: 45px;
    }
    .margin-md-top-45 {
        margin-top: 45px;
    }
    .margin-md-bottom-45 {
        margin-bottom: 45px;
    }
    .margin-md-left-45 {
        margin-left: 45px;
    }
    .margin-md-right-45 {
        margin-right: 45px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-45 {
        margin: 45px;
    }
    .margin-lg-top-45 {
        margin-top: 45px;
    }
    .margin-lg-bottom-45 {
        margin-bottom: 45px;
    }
    .margin-lg-left-45 {
        margin-left: 45px;
    }
    .margin-lg-right-45 {
        margin-right: 45px;
    }
}
.margin-50 {
    margin: 50px;
}
.margin-top-50 {
    margin-top: 50px;
}
.margin-bottom-50 {
    margin-bottom: 50px;
}
.margin-left-50 {
    margin-left: 50px;
}
.margin-right-50 {
    margin-right: 50px;
}
@media (max-width: 768px) {
    .margin-xs-50 {
        margin: 50px;
    }
    .margin-xs-top-50 {
        margin-top: 50px;
    }
    .margin-xs-bottom-50 {
        margin-bottom: 50px;
    }
    .margin-xs-left-50 {
        margin-left: 50px;
    }
    .margin-xs-right-50 {
        margin-right: 50px;
    }
}
@media (min-width: 768px) {
    .margin-sm-50 {
        margin: 50px;
    }
    .margin-sm-top-50 {
        margin-top: 50px;
    }
    .margin-sm-bottom-50 {
        margin-bottom: 50px;
    }
    .margin-sm-left-50 {
        margin-left: 50px;
    }
    .margin-sm-right-50 {
        margin-right: 50px;
    }
}
@media (min-width: 992px) {
    .margin-md-50 {
        margin: 50px;
    }
    .margin-md-top-50 {
        margin-top: 50px;
    }
    .margin-md-bottom-50 {
        margin-bottom: 50px;
    }
    .margin-md-left-50 {
        margin-left: 50px;
    }
    .margin-md-right-50 {
        margin-right: 50px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-50 {
        margin: 50px;
    }
    .margin-lg-top-50 {
        margin-top: 50px;
    }
    .margin-lg-bottom-50 {
        margin-bottom: 50px;
    }
    .margin-lg-left-50 {
        margin-left: 50px;
    }
    .margin-lg-right-50 {
        margin-right: 50px;
    }
}
.margin-55 {
    margin: 55px;
}
.margin-top-55 {
    margin-top: 55px;
}
.margin-bottom-55 {
    margin-bottom: 55px;
}
.margin-left-55 {
    margin-left: 55px;
}
.margin-right-55 {
    margin-right: 55px;
}
@media (max-width: 768px) {
    .margin-xs-55 {
        margin: 55px;
    }
    .margin-xs-top-55 {
        margin-top: 55px;
    }
    .margin-xs-bottom-55 {
        margin-bottom: 55px;
    }
    .margin-xs-left-55 {
        margin-left: 55px;
    }
    .margin-xs-right-55 {
        margin-right: 55px;
    }
}
@media (min-width: 768px) {
    .margin-sm-55 {
        margin: 55px;
    }
    .margin-sm-top-55 {
        margin-top: 55px;
    }
    .margin-sm-bottom-55 {
        margin-bottom: 55px;
    }
    .margin-sm-left-55 {
        margin-left: 55px;
    }
    .margin-sm-right-55 {
        margin-right: 55px;
    }
}
@media (min-width: 992px) {
    .margin-md-55 {
        margin: 55px;
    }
    .margin-md-top-55 {
        margin-top: 55px;
    }
    .margin-md-bottom-55 {
        margin-bottom: 55px;
    }
    .margin-md-left-55 {
        margin-left: 55px;
    }
    .margin-md-right-55 {
        margin-right: 55px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-55 {
        margin: 55px;
    }
    .margin-lg-top-55 {
        margin-top: 55px;
    }
    .margin-lg-bottom-55 {
        margin-bottom: 55px;
    }
    .margin-lg-left-55 {
        margin-left: 55px;
    }
    .margin-lg-right-55 {
        margin-right: 55px;
    }
}
.margin-60 {
    margin: 60px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-bottom-60 {
    margin-bottom: 60px;
}
.margin-left-60 {
    margin-left: 60px;
}
.margin-right-60 {
    margin-right: 60px;
}
@media (max-width: 768px) {
    .margin-xs-60 {
        margin: 60px;
    }
    .margin-xs-top-60 {
        margin-top: 60px;
    }
    .margin-xs-bottom-60 {
        margin-bottom: 60px;
    }
    .margin-xs-left-60 {
        margin-left: 60px;
    }
    .margin-xs-right-60 {
        margin-right: 60px;
    }
}
@media (min-width: 768px) {
    .margin-sm-60 {
        margin: 60px;
    }
    .margin-sm-top-60 {
        margin-top: 60px;
    }
    .margin-sm-bottom-60 {
        margin-bottom: 60px;
    }
    .margin-sm-left-60 {
        margin-left: 60px;
    }
    .margin-sm-right-60 {
        margin-right: 60px;
    }
}
@media (min-width: 992px) {
    .margin-md-60 {
        margin: 60px;
    }
    .margin-md-top-60 {
        margin-top: 60px;
    }
    .margin-md-bottom-60 {
        margin-bottom: 60px;
    }
    .margin-md-left-60 {
        margin-left: 60px;
    }
    .margin-md-right-60 {
        margin-right: 60px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-60 {
        margin: 60px;
    }
    .margin-lg-top-60 {
        margin-top: 60px;
    }
    .margin-lg-bottom-60 {
        margin-bottom: 60px;
    }
    .margin-lg-left-60 {
        margin-left: 60px;
    }
    .margin-lg-right-60 {
        margin-right: 60px;
    }
}
.margin-65 {
    margin: 65px;
}
.margin-top-65 {
    margin-top: 65px;
}
.margin-bottom-65 {
    margin-bottom: 65px;
}
.margin-left-65 {
    margin-left: 65px;
}
.margin-right-65 {
    margin-right: 65px;
}
@media (max-width: 768px) {
    .margin-xs-65 {
        margin: 65px;
    }
    .margin-xs-top-65 {
        margin-top: 65px;
    }
    .margin-xs-bottom-65 {
        margin-bottom: 65px;
    }
    .margin-xs-left-65 {
        margin-left: 65px;
    }
    .margin-xs-right-65 {
        margin-right: 65px;
    }
}
@media (min-width: 768px) {
    .margin-sm-65 {
        margin: 65px;
    }
    .margin-sm-top-65 {
        margin-top: 65px;
    }
    .margin-sm-bottom-65 {
        margin-bottom: 65px;
    }
    .margin-sm-left-65 {
        margin-left: 65px;
    }
    .margin-sm-right-65 {
        margin-right: 65px;
    }
}
@media (min-width: 992px) {
    .margin-md-65 {
        margin: 65px;
    }
    .margin-md-top-65 {
        margin-top: 65px;
    }
    .margin-md-bottom-65 {
        margin-bottom: 65px;
    }
    .margin-md-left-65 {
        margin-left: 65px;
    }
    .margin-md-right-65 {
        margin-right: 65px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-65 {
        margin: 65px;
    }
    .margin-lg-top-65 {
        margin-top: 65px;
    }
    .margin-lg-bottom-65 {
        margin-bottom: 65px;
    }
    .margin-lg-left-65 {
        margin-left: 65px;
    }
    .margin-lg-right-65 {
        margin-right: 65px;
    }
}
.margin-70 {
    margin: 70px;
}
.margin-top-70 {
    margin-top: 70px;
}
.margin-bottom-70 {
    margin-bottom: 70px;
}
.margin-left-70 {
    margin-left: 70px;
}
.margin-right-70 {
    margin-right: 70px;
}
@media (max-width: 768px) {
    .margin-xs-70 {
        margin: 70px;
    }
    .margin-xs-top-70 {
        margin-top: 70px;
    }
    .margin-xs-bottom-70 {
        margin-bottom: 70px;
    }
    .margin-xs-left-70 {
        margin-left: 70px;
    }
    .margin-xs-right-70 {
        margin-right: 70px;
    }
}
@media (min-width: 768px) {
    .margin-sm-70 {
        margin: 70px;
    }
    .margin-sm-top-70 {
        margin-top: 70px;
    }
    .margin-sm-bottom-70 {
        margin-bottom: 70px;
    }
    .margin-sm-left-70 {
        margin-left: 70px;
    }
    .margin-sm-right-70 {
        margin-right: 70px;
    }
}
@media (min-width: 992px) {
    .margin-md-70 {
        margin: 70px;
    }
    .margin-md-top-70 {
        margin-top: 70px;
    }
    .margin-md-bottom-70 {
        margin-bottom: 70px;
    }
    .margin-md-left-70 {
        margin-left: 70px;
    }
    .margin-md-right-70 {
        margin-right: 70px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-70 {
        margin: 70px;
    }
    .margin-lg-top-70 {
        margin-top: 70px;
    }
    .margin-lg-bottom-70 {
        margin-bottom: 70px;
    }
    .margin-lg-left-70 {
        margin-left: 70px;
    }
    .margin-lg-right-70 {
        margin-right: 70px;
    }
}
.margin-75 {
    margin: 75px;
}
.margin-top-75 {
    margin-top: 75px;
}
.margin-bottom-75 {
    margin-bottom: 75px;
}
.margin-left-75 {
    margin-left: 75px;
}
.margin-right-75 {
    margin-right: 75px;
}
@media (max-width: 768px) {
    .margin-xs-75 {
        margin: 75px;
    }
    .margin-xs-top-75 {
        margin-top: 75px;
    }
    .margin-xs-bottom-75 {
        margin-bottom: 75px;
    }
    .margin-xs-left-75 {
        margin-left: 75px;
    }
    .margin-xs-right-75 {
        margin-right: 75px;
    }
}
@media (min-width: 768px) {
    .margin-sm-75 {
        margin: 75px;
    }
    .margin-sm-top-75 {
        margin-top: 75px;
    }
    .margin-sm-bottom-75 {
        margin-bottom: 75px;
    }
    .margin-sm-left-75 {
        margin-left: 75px;
    }
    .margin-sm-right-75 {
        margin-right: 75px;
    }
}
@media (min-width: 992px) {
    .margin-md-75 {
        margin: 75px;
    }
    .margin-md-top-75 {
        margin-top: 75px;
    }
    .margin-md-bottom-75 {
        margin-bottom: 75px;
    }
    .margin-md-left-75 {
        margin-left: 75px;
    }
    .margin-md-right-75 {
        margin-right: 75px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-75 {
        margin: 75px;
    }
    .margin-lg-top-75 {
        margin-top: 75px;
    }
    .margin-lg-bottom-75 {
        margin-bottom: 75px;
    }
    .margin-lg-left-75 {
        margin-left: 75px;
    }
    .margin-lg-right-75 {
        margin-right: 75px;
    }
}
.margin-80 {
    margin: 80px;
}
.margin-top-80 {
    margin-top: 80px;
}
.margin-bottom-80 {
    margin-bottom: 80px;
}
.margin-left-80 {
    margin-left: 80px;
}
.margin-right-80 {
    margin-right: 80px;
}
@media (max-width: 768px) {
    .margin-xs-80 {
        margin: 80px;
    }
    .margin-xs-top-80 {
        margin-top: 80px;
    }
    .margin-xs-bottom-80 {
        margin-bottom: 80px;
    }
    .margin-xs-left-80 {
        margin-left: 80px;
    }
    .margin-xs-right-80 {
        margin-right: 80px;
    }
}
@media (min-width: 768px) {
    .margin-sm-80 {
        margin: 80px;
    }
    .margin-sm-top-80 {
        margin-top: 80px;
    }
    .margin-sm-bottom-80 {
        margin-bottom: 80px;
    }
    .margin-sm-left-80 {
        margin-left: 80px;
    }
    .margin-sm-right-80 {
        margin-right: 80px;
    }
}
@media (min-width: 992px) {
    .margin-md-80 {
        margin: 80px;
    }
    .margin-md-top-80 {
        margin-top: 80px;
    }
    .margin-md-bottom-80 {
        margin-bottom: 80px;
    }
    .margin-md-left-80 {
        margin-left: 80px;
    }
    .margin-md-right-80 {
        margin-right: 80px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-80 {
        margin: 80px;
    }
    .margin-lg-top-80 {
        margin-top: 80px;
    }
    .margin-lg-bottom-80 {
        margin-bottom: 80px;
    }
    .margin-lg-left-80 {
        margin-left: 80px;
    }
    .margin-lg-right-80 {
        margin-right: 80px;
    }
}
.margin-85 {
    margin: 85px;
}
.margin-top-85 {
    margin-top: 85px;
}
.margin-bottom-85 {
    margin-bottom: 85px;
}
.margin-left-85 {
    margin-left: 85px;
}
.margin-right-85 {
    margin-right: 85px;
}
@media (max-width: 768px) {
    .margin-xs-85 {
        margin: 85px;
    }
    .margin-xs-top-85 {
        margin-top: 85px;
    }
    .margin-xs-bottom-85 {
        margin-bottom: 85px;
    }
    .margin-xs-left-85 {
        margin-left: 85px;
    }
    .margin-xs-right-85 {
        margin-right: 85px;
    }
}
@media (min-width: 768px) {
    .margin-sm-85 {
        margin: 85px;
    }
    .margin-sm-top-85 {
        margin-top: 85px;
    }
    .margin-sm-bottom-85 {
        margin-bottom: 85px;
    }
    .margin-sm-left-85 {
        margin-left: 85px;
    }
    .margin-sm-right-85 {
        margin-right: 85px;
    }
}
@media (min-width: 992px) {
    .margin-md-85 {
        margin: 85px;
    }
    .margin-md-top-85 {
        margin-top: 85px;
    }
    .margin-md-bottom-85 {
        margin-bottom: 85px;
    }
    .margin-md-left-85 {
        margin-left: 85px;
    }
    .margin-md-right-85 {
        margin-right: 85px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-85 {
        margin: 85px;
    }
    .margin-lg-top-85 {
        margin-top: 85px;
    }
    .margin-lg-bottom-85 {
        margin-bottom: 85px;
    }
    .margin-lg-left-85 {
        margin-left: 85px;
    }
    .margin-lg-right-85 {
        margin-right: 85px;
    }
}
.margin-90 {
    margin: 90px;
}
.margin-top-90 {
    margin-top: 90px;
}
.margin-bottom-90 {
    margin-bottom: 90px;
}
.margin-left-90 {
    margin-left: 90px;
}
.margin-right-90 {
    margin-right: 90px;
}
@media (max-width: 768px) {
    .margin-xs-90 {
        margin: 90px;
    }
    .margin-xs-top-90 {
        margin-top: 90px;
    }
    .margin-xs-bottom-90 {
        margin-bottom: 90px;
    }
    .margin-xs-left-90 {
        margin-left: 90px;
    }
    .margin-xs-right-90 {
        margin-right: 90px;
    }
}
@media (min-width: 768px) {
    .margin-sm-90 {
        margin: 90px;
    }
    .margin-sm-top-90 {
        margin-top: 90px;
    }
    .margin-sm-bottom-90 {
        margin-bottom: 90px;
    }
    .margin-sm-left-90 {
        margin-left: 90px;
    }
    .margin-sm-right-90 {
        margin-right: 90px;
    }
}
@media (min-width: 992px) {
    .margin-md-90 {
        margin: 90px;
    }
    .margin-md-top-90 {
        margin-top: 90px;
    }
    .margin-md-bottom-90 {
        margin-bottom: 90px;
    }
    .margin-md-left-90 {
        margin-left: 90px;
    }
    .margin-md-right-90 {
        margin-right: 90px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-90 {
        margin: 90px;
    }
    .margin-lg-top-90 {
        margin-top: 90px;
    }
    .margin-lg-bottom-90 {
        margin-bottom: 90px;
    }
    .margin-lg-left-90 {
        margin-left: 90px;
    }
    .margin-lg-right-90 {
        margin-right: 90px;
    }
}
.margin-95 {
    margin: 95px;
}
.margin-top-95 {
    margin-top: 95px;
}
.margin-bottom-95 {
    margin-bottom: 95px;
}
.margin-left-95 {
    margin-left: 95px;
}
.margin-right-95 {
    margin-right: 95px;
}
@media (max-width: 768px) {
    .margin-xs-95 {
        margin: 95px;
    }
    .margin-xs-top-95 {
        margin-top: 95px;
    }
    .margin-xs-bottom-95 {
        margin-bottom: 95px;
    }
    .margin-xs-left-95 {
        margin-left: 95px;
    }
    .margin-xs-right-95 {
        margin-right: 95px;
    }
}
@media (min-width: 768px) {
    .margin-sm-95 {
        margin: 95px;
    }
    .margin-sm-top-95 {
        margin-top: 95px;
    }
    .margin-sm-bottom-95 {
        margin-bottom: 95px;
    }
    .margin-sm-left-95 {
        margin-left: 95px;
    }
    .margin-sm-right-95 {
        margin-right: 95px;
    }
}
@media (min-width: 992px) {
    .margin-md-95 {
        margin: 95px;
    }
    .margin-md-top-95 {
        margin-top: 95px;
    }
    .margin-md-bottom-95 {
        margin-bottom: 95px;
    }
    .margin-md-left-95 {
        margin-left: 95px;
    }
    .margin-md-right-95 {
        margin-right: 95px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-95 {
        margin: 95px;
    }
    .margin-lg-top-95 {
        margin-top: 95px;
    }
    .margin-lg-bottom-95 {
        margin-bottom: 95px;
    }
    .margin-lg-left-95 {
        margin-left: 95px;
    }
    .margin-lg-right-95 {
        margin-right: 95px;
    }
}
.margin-100 {
    margin: 100px;
}
.margin-top-100 {
    margin-top: 100px;
}
.margin-bottom-100 {
    margin-bottom: 100px;
}
.margin-left-100 {
    margin-left: 100px;
}
.margin-right-100 {
    margin-right: 100px;
}
@media (max-width: 768px) {
    .margin-xs-100 {
        margin: 100px;
    }
    .margin-xs-top-100 {
        margin-top: 100px;
    }
    .margin-xs-bottom-100 {
        margin-bottom: 100px;
    }
    .margin-xs-left-100 {
        margin-left: 100px;
    }
    .margin-xs-right-100 {
        margin-right: 100px;
    }
}
@media (min-width: 768px) {
    .margin-sm-100 {
        margin: 100px;
    }
    .margin-sm-top-100 {
        margin-top: 100px;
    }
    .margin-sm-bottom-100 {
        margin-bottom: 100px;
    }
    .margin-sm-left-100 {
        margin-left: 100px;
    }
    .margin-sm-right-100 {
        margin-right: 100px;
    }
}
@media (min-width: 992px) {
    .margin-md-100 {
        margin: 100px;
    }
    .margin-md-top-100 {
        margin-top: 100px;
    }
    .margin-md-bottom-100 {
        margin-bottom: 100px;
    }
    .margin-md-left-100 {
        margin-left: 100px;
    }
    .margin-md-right-100 {
        margin-right: 100px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-100 {
        margin: 100px;
    }
    .margin-lg-top-100 {
        margin-top: 100px;
    }
    .margin-lg-bottom-100 {
        margin-bottom: 100px;
    }
    .margin-lg-left-100 {
        margin-left: 100px;
    }
    .margin-lg-right-100 {
        margin-right: 100px;
    }
}
.margin-105 {
    margin: 105px;
}
.margin-top-105 {
    margin-top: 105px;
}
.margin-bottom-105 {
    margin-bottom: 105px;
}
.margin-left-105 {
    margin-left: 105px;
}
.margin-right-105 {
    margin-right: 105px;
}
@media (max-width: 768px) {
    .margin-xs-105 {
        margin: 105px;
    }
    .margin-xs-top-105 {
        margin-top: 105px;
    }
    .margin-xs-bottom-105 {
        margin-bottom: 105px;
    }
    .margin-xs-left-105 {
        margin-left: 105px;
    }
    .margin-xs-right-105 {
        margin-right: 105px;
    }
}
@media (min-width: 768px) {
    .margin-sm-105 {
        margin: 105px;
    }
    .margin-sm-top-105 {
        margin-top: 105px;
    }
    .margin-sm-bottom-105 {
        margin-bottom: 105px;
    }
    .margin-sm-left-105 {
        margin-left: 105px;
    }
    .margin-sm-right-105 {
        margin-right: 105px;
    }
}
@media (min-width: 992px) {
    .margin-md-105 {
        margin: 105px;
    }
    .margin-md-top-105 {
        margin-top: 105px;
    }
    .margin-md-bottom-105 {
        margin-bottom: 105px;
    }
    .margin-md-left-105 {
        margin-left: 105px;
    }
    .margin-md-right-105 {
        margin-right: 105px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-105 {
        margin: 105px;
    }
    .margin-lg-top-105 {
        margin-top: 105px;
    }
    .margin-lg-bottom-105 {
        margin-bottom: 105px;
    }
    .margin-lg-left-105 {
        margin-left: 105px;
    }
    .margin-lg-right-105 {
        margin-right: 105px;
    }
}
.margin-110 {
    margin: 110px;
}
.margin-top-110 {
    margin-top: 110px;
}
.margin-bottom-110 {
    margin-bottom: 110px;
}
.margin-left-110 {
    margin-left: 110px;
}
.margin-right-110 {
    margin-right: 110px;
}
@media (max-width: 768px) {
    .margin-xs-110 {
        margin: 110px;
    }
    .margin-xs-top-110 {
        margin-top: 110px;
    }
    .margin-xs-bottom-110 {
        margin-bottom: 110px;
    }
    .margin-xs-left-110 {
        margin-left: 110px;
    }
    .margin-xs-right-110 {
        margin-right: 110px;
    }
}
@media (min-width: 768px) {
    .margin-sm-110 {
        margin: 110px;
    }
    .margin-sm-top-110 {
        margin-top: 110px;
    }
    .margin-sm-bottom-110 {
        margin-bottom: 110px;
    }
    .margin-sm-left-110 {
        margin-left: 110px;
    }
    .margin-sm-right-110 {
        margin-right: 110px;
    }
}
@media (min-width: 992px) {
    .margin-md-110 {
        margin: 110px;
    }
    .margin-md-top-110 {
        margin-top: 110px;
    }
    .margin-md-bottom-110 {
        margin-bottom: 110px;
    }
    .margin-md-left-110 {
        margin-left: 110px;
    }
    .margin-md-right-110 {
        margin-right: 110px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-110 {
        margin: 110px;
    }
    .margin-lg-top-110 {
        margin-top: 110px;
    }
    .margin-lg-bottom-110 {
        margin-bottom: 110px;
    }
    .margin-lg-left-110 {
        margin-left: 110px;
    }
    .margin-lg-right-110 {
        margin-right: 110px;
    }
}
.margin-115 {
    margin: 115px;
}
.margin-top-115 {
    margin-top: 115px;
}
.margin-bottom-115 {
    margin-bottom: 115px;
}
.margin-left-115 {
    margin-left: 115px;
}
.margin-right-115 {
    margin-right: 115px;
}
@media (max-width: 768px) {
    .margin-xs-115 {
        margin: 115px;
    }
    .margin-xs-top-115 {
        margin-top: 115px;
    }
    .margin-xs-bottom-115 {
        margin-bottom: 115px;
    }
    .margin-xs-left-115 {
        margin-left: 115px;
    }
    .margin-xs-right-115 {
        margin-right: 115px;
    }
}
@media (min-width: 768px) {
    .margin-sm-115 {
        margin: 115px;
    }
    .margin-sm-top-115 {
        margin-top: 115px;
    }
    .margin-sm-bottom-115 {
        margin-bottom: 115px;
    }
    .margin-sm-left-115 {
        margin-left: 115px;
    }
    .margin-sm-right-115 {
        margin-right: 115px;
    }
}
@media (min-width: 992px) {
    .margin-md-115 {
        margin: 115px;
    }
    .margin-md-top-115 {
        margin-top: 115px;
    }
    .margin-md-bottom-115 {
        margin-bottom: 115px;
    }
    .margin-md-left-115 {
        margin-left: 115px;
    }
    .margin-md-right-115 {
        margin-right: 115px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-115 {
        margin: 115px;
    }
    .margin-lg-top-115 {
        margin-top: 115px;
    }
    .margin-lg-bottom-115 {
        margin-bottom: 115px;
    }
    .margin-lg-left-115 {
        margin-left: 115px;
    }
    .margin-lg-right-115 {
        margin-right: 115px;
    }
}
.margin-120 {
    margin: 120px;
}
.margin-top-120 {
    margin-top: 120px;
}
.margin-bottom-120 {
    margin-bottom: 120px;
}
.margin-left-120 {
    margin-left: 120px;
}
.margin-right-120 {
    margin-right: 120px;
}
@media (max-width: 768px) {
    .margin-xs-120 {
        margin: 120px;
    }
    .margin-xs-top-120 {
        margin-top: 120px;
    }
    .margin-xs-bottom-120 {
        margin-bottom: 120px;
    }
    .margin-xs-left-120 {
        margin-left: 120px;
    }
    .margin-xs-right-120 {
        margin-right: 120px;
    }
}
@media (min-width: 768px) {
    .margin-sm-120 {
        margin: 120px;
    }
    .margin-sm-top-120 {
        margin-top: 120px;
    }
    .margin-sm-bottom-120 {
        margin-bottom: 120px;
    }
    .margin-sm-left-120 {
        margin-left: 120px;
    }
    .margin-sm-right-120 {
        margin-right: 120px;
    }
}
@media (min-width: 992px) {
    .margin-md-120 {
        margin: 120px;
    }
    .margin-md-top-120 {
        margin-top: 120px;
    }
    .margin-md-bottom-120 {
        margin-bottom: 120px;
    }
    .margin-md-left-120 {
        margin-left: 120px;
    }
    .margin-md-right-120 {
        margin-right: 120px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-120 {
        margin: 120px;
    }
    .margin-lg-top-120 {
        margin-top: 120px;
    }
    .margin-lg-bottom-120 {
        margin-bottom: 120px;
    }
    .margin-lg-left-120 {
        margin-left: 120px;
    }
    .margin-lg-right-120 {
        margin-right: 120px;
    }
}
.margin-125 {
    margin: 125px;
}
.margin-top-125 {
    margin-top: 125px;
}
.margin-bottom-125 {
    margin-bottom: 125px;
}
.margin-left-125 {
    margin-left: 125px;
}
.margin-right-125 {
    margin-right: 125px;
}
@media (max-width: 768px) {
    .margin-xs-125 {
        margin: 125px;
    }
    .margin-xs-top-125 {
        margin-top: 125px;
    }
    .margin-xs-bottom-125 {
        margin-bottom: 125px;
    }
    .margin-xs-left-125 {
        margin-left: 125px;
    }
    .margin-xs-right-125 {
        margin-right: 125px;
    }
}
@media (min-width: 768px) {
    .margin-sm-125 {
        margin: 125px;
    }
    .margin-sm-top-125 {
        margin-top: 125px;
    }
    .margin-sm-bottom-125 {
        margin-bottom: 125px;
    }
    .margin-sm-left-125 {
        margin-left: 125px;
    }
    .margin-sm-right-125 {
        margin-right: 125px;
    }
}
@media (min-width: 992px) {
    .margin-md-125 {
        margin: 125px;
    }
    .margin-md-top-125 {
        margin-top: 125px;
    }
    .margin-md-bottom-125 {
        margin-bottom: 125px;
    }
    .margin-md-left-125 {
        margin-left: 125px;
    }
    .margin-md-right-125 {
        margin-right: 125px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-125 {
        margin: 125px;
    }
    .margin-lg-top-125 {
        margin-top: 125px;
    }
    .margin-lg-bottom-125 {
        margin-bottom: 125px;
    }
    .margin-lg-left-125 {
        margin-left: 125px;
    }
    .margin-lg-right-125 {
        margin-right: 125px;
    }
}
.margin-130 {
    margin: 130px;
}
.margin-top-130 {
    margin-top: 130px;
}
.margin-bottom-130 {
    margin-bottom: 130px;
}
.margin-left-130 {
    margin-left: 130px;
}
.margin-right-130 {
    margin-right: 130px;
}
@media (max-width: 768px) {
    .margin-xs-130 {
        margin: 130px;
    }
    .margin-xs-top-130 {
        margin-top: 130px;
    }
    .margin-xs-bottom-130 {
        margin-bottom: 130px;
    }
    .margin-xs-left-130 {
        margin-left: 130px;
    }
    .margin-xs-right-130 {
        margin-right: 130px;
    }
}
@media (min-width: 768px) {
    .margin-sm-130 {
        margin: 130px;
    }
    .margin-sm-top-130 {
        margin-top: 130px;
    }
    .margin-sm-bottom-130 {
        margin-bottom: 130px;
    }
    .margin-sm-left-130 {
        margin-left: 130px;
    }
    .margin-sm-right-130 {
        margin-right: 130px;
    }
}
@media (min-width: 992px) {
    .margin-md-130 {
        margin: 130px;
    }
    .margin-md-top-130 {
        margin-top: 130px;
    }
    .margin-md-bottom-130 {
        margin-bottom: 130px;
    }
    .margin-md-left-130 {
        margin-left: 130px;
    }
    .margin-md-right-130 {
        margin-right: 130px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-130 {
        margin: 130px;
    }
    .margin-lg-top-130 {
        margin-top: 130px;
    }
    .margin-lg-bottom-130 {
        margin-bottom: 130px;
    }
    .margin-lg-left-130 {
        margin-left: 130px;
    }
    .margin-lg-right-130 {
        margin-right: 130px;
    }
}
.margin-135 {
    margin: 135px;
}
.margin-top-135 {
    margin-top: 135px;
}
.margin-bottom-135 {
    margin-bottom: 135px;
}
.margin-left-135 {
    margin-left: 135px;
}
.margin-right-135 {
    margin-right: 135px;
}
@media (max-width: 768px) {
    .margin-xs-135 {
        margin: 135px;
    }
    .margin-xs-top-135 {
        margin-top: 135px;
    }
    .margin-xs-bottom-135 {
        margin-bottom: 135px;
    }
    .margin-xs-left-135 {
        margin-left: 135px;
    }
    .margin-xs-right-135 {
        margin-right: 135px;
    }
}
@media (min-width: 768px) {
    .margin-sm-135 {
        margin: 135px;
    }
    .margin-sm-top-135 {
        margin-top: 135px;
    }
    .margin-sm-bottom-135 {
        margin-bottom: 135px;
    }
    .margin-sm-left-135 {
        margin-left: 135px;
    }
    .margin-sm-right-135 {
        margin-right: 135px;
    }
}
@media (min-width: 992px) {
    .margin-md-135 {
        margin: 135px;
    }
    .margin-md-top-135 {
        margin-top: 135px;
    }
    .margin-md-bottom-135 {
        margin-bottom: 135px;
    }
    .margin-md-left-135 {
        margin-left: 135px;
    }
    .margin-md-right-135 {
        margin-right: 135px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-135 {
        margin: 135px;
    }
    .margin-lg-top-135 {
        margin-top: 135px;
    }
    .margin-lg-bottom-135 {
        margin-bottom: 135px;
    }
    .margin-lg-left-135 {
        margin-left: 135px;
    }
    .margin-lg-right-135 {
        margin-right: 135px;
    }
}
.margin-140 {
    margin: 140px;
}
.margin-top-140 {
    margin-top: 140px;
}
.margin-bottom-140 {
    margin-bottom: 140px;
}
.margin-left-140 {
    margin-left: 140px;
}
.margin-right-140 {
    margin-right: 140px;
}
@media (max-width: 768px) {
    .margin-xs-140 {
        margin: 140px;
    }
    .margin-xs-top-140 {
        margin-top: 140px;
    }
    .margin-xs-bottom-140 {
        margin-bottom: 140px;
    }
    .margin-xs-left-140 {
        margin-left: 140px;
    }
    .margin-xs-right-140 {
        margin-right: 140px;
    }
}
@media (min-width: 768px) {
    .margin-sm-140 {
        margin: 140px;
    }
    .margin-sm-top-140 {
        margin-top: 140px;
    }
    .margin-sm-bottom-140 {
        margin-bottom: 140px;
    }
    .margin-sm-left-140 {
        margin-left: 140px;
    }
    .margin-sm-right-140 {
        margin-right: 140px;
    }
}
@media (min-width: 992px) {
    .margin-md-140 {
        margin: 140px;
    }
    .margin-md-top-140 {
        margin-top: 140px;
    }
    .margin-md-bottom-140 {
        margin-bottom: 140px;
    }
    .margin-md-left-140 {
        margin-left: 140px;
    }
    .margin-md-right-140 {
        margin-right: 140px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-140 {
        margin: 140px;
    }
    .margin-lg-top-140 {
        margin-top: 140px;
    }
    .margin-lg-bottom-140 {
        margin-bottom: 140px;
    }
    .margin-lg-left-140 {
        margin-left: 140px;
    }
    .margin-lg-right-140 {
        margin-right: 140px;
    }
}
.margin-145 {
    margin: 145px;
}
.margin-top-145 {
    margin-top: 145px;
}
.margin-bottom-145 {
    margin-bottom: 145px;
}
.margin-left-145 {
    margin-left: 145px;
}
.margin-right-145 {
    margin-right: 145px;
}
@media (max-width: 768px) {
    .margin-xs-145 {
        margin: 145px;
    }
    .margin-xs-top-145 {
        margin-top: 145px;
    }
    .margin-xs-bottom-145 {
        margin-bottom: 145px;
    }
    .margin-xs-left-145 {
        margin-left: 145px;
    }
    .margin-xs-right-145 {
        margin-right: 145px;
    }
}
@media (min-width: 768px) {
    .margin-sm-145 {
        margin: 145px;
    }
    .margin-sm-top-145 {
        margin-top: 145px;
    }
    .margin-sm-bottom-145 {
        margin-bottom: 145px;
    }
    .margin-sm-left-145 {
        margin-left: 145px;
    }
    .margin-sm-right-145 {
        margin-right: 145px;
    }
}
@media (min-width: 992px) {
    .margin-md-145 {
        margin: 145px;
    }
    .margin-md-top-145 {
        margin-top: 145px;
    }
    .margin-md-bottom-145 {
        margin-bottom: 145px;
    }
    .margin-md-left-145 {
        margin-left: 145px;
    }
    .margin-md-right-145 {
        margin-right: 145px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-145 {
        margin: 145px;
    }
    .margin-lg-top-145 {
        margin-top: 145px;
    }
    .margin-lg-bottom-145 {
        margin-bottom: 145px;
    }
    .margin-lg-left-145 {
        margin-left: 145px;
    }
    .margin-lg-right-145 {
        margin-right: 145px;
    }
}
.margin-150 {
    margin: 150px;
}
.margin-top-150 {
    margin-top: 150px;
}
.margin-bottom-150 {
    margin-bottom: 150px;
}
.margin-left-150 {
    margin-left: 150px;
}
.margin-right-150 {
    margin-right: 150px;
}
@media (max-width: 768px) {
    .margin-xs-150 {
        margin: 150px;
    }
    .margin-xs-top-150 {
        margin-top: 150px;
    }
    .margin-xs-bottom-150 {
        margin-bottom: 150px;
    }
    .margin-xs-left-150 {
        margin-left: 150px;
    }
    .margin-xs-right-150 {
        margin-right: 150px;
    }
}
@media (min-width: 768px) {
    .margin-sm-150 {
        margin: 150px;
    }
    .margin-sm-top-150 {
        margin-top: 150px;
    }
    .margin-sm-bottom-150 {
        margin-bottom: 150px;
    }
    .margin-sm-left-150 {
        margin-left: 150px;
    }
    .margin-sm-right-150 {
        margin-right: 150px;
    }
}
@media (min-width: 992px) {
    .margin-md-150 {
        margin: 150px;
    }
    .margin-md-top-150 {
        margin-top: 150px;
    }
    .margin-md-bottom-150 {
        margin-bottom: 150px;
    }
    .margin-md-left-150 {
        margin-left: 150px;
    }
    .margin-md-right-150 {
        margin-right: 150px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-150 {
        margin: 150px;
    }
    .margin-lg-top-150 {
        margin-top: 150px;
    }
    .margin-lg-bottom-150 {
        margin-bottom: 150px;
    }
    .margin-lg-left-150 {
        margin-left: 150px;
    }
    .margin-lg-right-150 {
        margin-right: 150px;
    }
}
.margin-155 {
    margin: 155px;
}
.margin-top-155 {
    margin-top: 155px;
}
.margin-bottom-155 {
    margin-bottom: 155px;
}
.margin-left-155 {
    margin-left: 155px;
}
.margin-right-155 {
    margin-right: 155px;
}
@media (max-width: 768px) {
    .margin-xs-155 {
        margin: 155px;
    }
    .margin-xs-top-155 {
        margin-top: 155px;
    }
    .margin-xs-bottom-155 {
        margin-bottom: 155px;
    }
    .margin-xs-left-155 {
        margin-left: 155px;
    }
    .margin-xs-right-155 {
        margin-right: 155px;
    }
}
@media (min-width: 768px) {
    .margin-sm-155 {
        margin: 155px;
    }
    .margin-sm-top-155 {
        margin-top: 155px;
    }
    .margin-sm-bottom-155 {
        margin-bottom: 155px;
    }
    .margin-sm-left-155 {
        margin-left: 155px;
    }
    .margin-sm-right-155 {
        margin-right: 155px;
    }
}
@media (min-width: 992px) {
    .margin-md-155 {
        margin: 155px;
    }
    .margin-md-top-155 {
        margin-top: 155px;
    }
    .margin-md-bottom-155 {
        margin-bottom: 155px;
    }
    .margin-md-left-155 {
        margin-left: 155px;
    }
    .margin-md-right-155 {
        margin-right: 155px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-155 {
        margin: 155px;
    }
    .margin-lg-top-155 {
        margin-top: 155px;
    }
    .margin-lg-bottom-155 {
        margin-bottom: 155px;
    }
    .margin-lg-left-155 {
        margin-left: 155px;
    }
    .margin-lg-right-155 {
        margin-right: 155px;
    }
}
.margin-160 {
    margin: 160px;
}
.margin-top-160 {
    margin-top: 160px;
}
.margin-bottom-160 {
    margin-bottom: 160px;
}
.margin-left-160 {
    margin-left: 160px;
}
.margin-right-160 {
    margin-right: 160px;
}
@media (max-width: 768px) {
    .margin-xs-160 {
        margin: 160px;
    }
    .margin-xs-top-160 {
        margin-top: 160px;
    }
    .margin-xs-bottom-160 {
        margin-bottom: 160px;
    }
    .margin-xs-left-160 {
        margin-left: 160px;
    }
    .margin-xs-right-160 {
        margin-right: 160px;
    }
}
@media (min-width: 768px) {
    .margin-sm-160 {
        margin: 160px;
    }
    .margin-sm-top-160 {
        margin-top: 160px;
    }
    .margin-sm-bottom-160 {
        margin-bottom: 160px;
    }
    .margin-sm-left-160 {
        margin-left: 160px;
    }
    .margin-sm-right-160 {
        margin-right: 160px;
    }
}
@media (min-width: 992px) {
    .margin-md-160 {
        margin: 160px;
    }
    .margin-md-top-160 {
        margin-top: 160px;
    }
    .margin-md-bottom-160 {
        margin-bottom: 160px;
    }
    .margin-md-left-160 {
        margin-left: 160px;
    }
    .margin-md-right-160 {
        margin-right: 160px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-160 {
        margin: 160px;
    }
    .margin-lg-top-160 {
        margin-top: 160px;
    }
    .margin-lg-bottom-160 {
        margin-bottom: 160px;
    }
    .margin-lg-left-160 {
        margin-left: 160px;
    }
    .margin-lg-right-160 {
        margin-right: 160px;
    }
}
.margin-165 {
    margin: 165px;
}
.margin-top-165 {
    margin-top: 165px;
}
.margin-bottom-165 {
    margin-bottom: 165px;
}
.margin-left-165 {
    margin-left: 165px;
}
.margin-right-165 {
    margin-right: 165px;
}
@media (max-width: 768px) {
    .margin-xs-165 {
        margin: 165px;
    }
    .margin-xs-top-165 {
        margin-top: 165px;
    }
    .margin-xs-bottom-165 {
        margin-bottom: 165px;
    }
    .margin-xs-left-165 {
        margin-left: 165px;
    }
    .margin-xs-right-165 {
        margin-right: 165px;
    }
}
@media (min-width: 768px) {
    .margin-sm-165 {
        margin: 165px;
    }
    .margin-sm-top-165 {
        margin-top: 165px;
    }
    .margin-sm-bottom-165 {
        margin-bottom: 165px;
    }
    .margin-sm-left-165 {
        margin-left: 165px;
    }
    .margin-sm-right-165 {
        margin-right: 165px;
    }
}
@media (min-width: 992px) {
    .margin-md-165 {
        margin: 165px;
    }
    .margin-md-top-165 {
        margin-top: 165px;
    }
    .margin-md-bottom-165 {
        margin-bottom: 165px;
    }
    .margin-md-left-165 {
        margin-left: 165px;
    }
    .margin-md-right-165 {
        margin-right: 165px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-165 {
        margin: 165px;
    }
    .margin-lg-top-165 {
        margin-top: 165px;
    }
    .margin-lg-bottom-165 {
        margin-bottom: 165px;
    }
    .margin-lg-left-165 {
        margin-left: 165px;
    }
    .margin-lg-right-165 {
        margin-right: 165px;
    }
}
.margin-170 {
    margin: 170px;
}
.margin-top-170 {
    margin-top: 170px;
}
.margin-bottom-170 {
    margin-bottom: 170px;
}
.margin-left-170 {
    margin-left: 170px;
}
.margin-right-170 {
    margin-right: 170px;
}
@media (max-width: 768px) {
    .margin-xs-170 {
        margin: 170px;
    }
    .margin-xs-top-170 {
        margin-top: 170px;
    }
    .margin-xs-bottom-170 {
        margin-bottom: 170px;
    }
    .margin-xs-left-170 {
        margin-left: 170px;
    }
    .margin-xs-right-170 {
        margin-right: 170px;
    }
}
@media (min-width: 768px) {
    .margin-sm-170 {
        margin: 170px;
    }
    .margin-sm-top-170 {
        margin-top: 170px;
    }
    .margin-sm-bottom-170 {
        margin-bottom: 170px;
    }
    .margin-sm-left-170 {
        margin-left: 170px;
    }
    .margin-sm-right-170 {
        margin-right: 170px;
    }
}
@media (min-width: 992px) {
    .margin-md-170 {
        margin: 170px;
    }
    .margin-md-top-170 {
        margin-top: 170px;
    }
    .margin-md-bottom-170 {
        margin-bottom: 170px;
    }
    .margin-md-left-170 {
        margin-left: 170px;
    }
    .margin-md-right-170 {
        margin-right: 170px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-170 {
        margin: 170px;
    }
    .margin-lg-top-170 {
        margin-top: 170px;
    }
    .margin-lg-bottom-170 {
        margin-bottom: 170px;
    }
    .margin-lg-left-170 {
        margin-left: 170px;
    }
    .margin-lg-right-170 {
        margin-right: 170px;
    }
}
.margin-175 {
    margin: 175px;
}
.margin-top-175 {
    margin-top: 175px;
}
.margin-bottom-175 {
    margin-bottom: 175px;
}
.margin-left-175 {
    margin-left: 175px;
}
.margin-right-175 {
    margin-right: 175px;
}
@media (max-width: 768px) {
    .margin-xs-175 {
        margin: 175px;
    }
    .margin-xs-top-175 {
        margin-top: 175px;
    }
    .margin-xs-bottom-175 {
        margin-bottom: 175px;
    }
    .margin-xs-left-175 {
        margin-left: 175px;
    }
    .margin-xs-right-175 {
        margin-right: 175px;
    }
}
@media (min-width: 768px) {
    .margin-sm-175 {
        margin: 175px;
    }
    .margin-sm-top-175 {
        margin-top: 175px;
    }
    .margin-sm-bottom-175 {
        margin-bottom: 175px;
    }
    .margin-sm-left-175 {
        margin-left: 175px;
    }
    .margin-sm-right-175 {
        margin-right: 175px;
    }
}
@media (min-width: 992px) {
    .margin-md-175 {
        margin: 175px;
    }
    .margin-md-top-175 {
        margin-top: 175px;
    }
    .margin-md-bottom-175 {
        margin-bottom: 175px;
    }
    .margin-md-left-175 {
        margin-left: 175px;
    }
    .margin-md-right-175 {
        margin-right: 175px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-175 {
        margin: 175px;
    }
    .margin-lg-top-175 {
        margin-top: 175px;
    }
    .margin-lg-bottom-175 {
        margin-bottom: 175px;
    }
    .margin-lg-left-175 {
        margin-left: 175px;
    }
    .margin-lg-right-175 {
        margin-right: 175px;
    }
}
.margin-180 {
    margin: 180px;
}
.margin-top-180 {
    margin-top: 180px;
}
.margin-bottom-180 {
    margin-bottom: 180px;
}
.margin-left-180 {
    margin-left: 180px;
}
.margin-right-180 {
    margin-right: 180px;
}
@media (max-width: 768px) {
    .margin-xs-180 {
        margin: 180px;
    }
    .margin-xs-top-180 {
        margin-top: 180px;
    }
    .margin-xs-bottom-180 {
        margin-bottom: 180px;
    }
    .margin-xs-left-180 {
        margin-left: 180px;
    }
    .margin-xs-right-180 {
        margin-right: 180px;
    }
}
@media (min-width: 768px) {
    .margin-sm-180 {
        margin: 180px;
    }
    .margin-sm-top-180 {
        margin-top: 180px;
    }
    .margin-sm-bottom-180 {
        margin-bottom: 180px;
    }
    .margin-sm-left-180 {
        margin-left: 180px;
    }
    .margin-sm-right-180 {
        margin-right: 180px;
    }
}
@media (min-width: 992px) {
    .margin-md-180 {
        margin: 180px;
    }
    .margin-md-top-180 {
        margin-top: 180px;
    }
    .margin-md-bottom-180 {
        margin-bottom: 180px;
    }
    .margin-md-left-180 {
        margin-left: 180px;
    }
    .margin-md-right-180 {
        margin-right: 180px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-180 {
        margin: 180px;
    }
    .margin-lg-top-180 {
        margin-top: 180px;
    }
    .margin-lg-bottom-180 {
        margin-bottom: 180px;
    }
    .margin-lg-left-180 {
        margin-left: 180px;
    }
    .margin-lg-right-180 {
        margin-right: 180px;
    }
}
.margin-185 {
    margin: 185px;
}
.margin-top-185 {
    margin-top: 185px;
}
.margin-bottom-185 {
    margin-bottom: 185px;
}
.margin-left-185 {
    margin-left: 185px;
}
.margin-right-185 {
    margin-right: 185px;
}
@media (max-width: 768px) {
    .margin-xs-185 {
        margin: 185px;
    }
    .margin-xs-top-185 {
        margin-top: 185px;
    }
    .margin-xs-bottom-185 {
        margin-bottom: 185px;
    }
    .margin-xs-left-185 {
        margin-left: 185px;
    }
    .margin-xs-right-185 {
        margin-right: 185px;
    }
}
@media (min-width: 768px) {
    .margin-sm-185 {
        margin: 185px;
    }
    .margin-sm-top-185 {
        margin-top: 185px;
    }
    .margin-sm-bottom-185 {
        margin-bottom: 185px;
    }
    .margin-sm-left-185 {
        margin-left: 185px;
    }
    .margin-sm-right-185 {
        margin-right: 185px;
    }
}
@media (min-width: 992px) {
    .margin-md-185 {
        margin: 185px;
    }
    .margin-md-top-185 {
        margin-top: 185px;
    }
    .margin-md-bottom-185 {
        margin-bottom: 185px;
    }
    .margin-md-left-185 {
        margin-left: 185px;
    }
    .margin-md-right-185 {
        margin-right: 185px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-185 {
        margin: 185px;
    }
    .margin-lg-top-185 {
        margin-top: 185px;
    }
    .margin-lg-bottom-185 {
        margin-bottom: 185px;
    }
    .margin-lg-left-185 {
        margin-left: 185px;
    }
    .margin-lg-right-185 {
        margin-right: 185px;
    }
}
.margin-190 {
    margin: 190px;
}
.margin-top-190 {
    margin-top: 190px;
}
.margin-bottom-190 {
    margin-bottom: 190px;
}
.margin-left-190 {
    margin-left: 190px;
}
.margin-right-190 {
    margin-right: 190px;
}
@media (max-width: 768px) {
    .margin-xs-190 {
        margin: 190px;
    }
    .margin-xs-top-190 {
        margin-top: 190px;
    }
    .margin-xs-bottom-190 {
        margin-bottom: 190px;
    }
    .margin-xs-left-190 {
        margin-left: 190px;
    }
    .margin-xs-right-190 {
        margin-right: 190px;
    }
}
@media (min-width: 768px) {
    .margin-sm-190 {
        margin: 190px;
    }
    .margin-sm-top-190 {
        margin-top: 190px;
    }
    .margin-sm-bottom-190 {
        margin-bottom: 190px;
    }
    .margin-sm-left-190 {
        margin-left: 190px;
    }
    .margin-sm-right-190 {
        margin-right: 190px;
    }
}
@media (min-width: 992px) {
    .margin-md-190 {
        margin: 190px;
    }
    .margin-md-top-190 {
        margin-top: 190px;
    }
    .margin-md-bottom-190 {
        margin-bottom: 190px;
    }
    .margin-md-left-190 {
        margin-left: 190px;
    }
    .margin-md-right-190 {
        margin-right: 190px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-190 {
        margin: 190px;
    }
    .margin-lg-top-190 {
        margin-top: 190px;
    }
    .margin-lg-bottom-190 {
        margin-bottom: 190px;
    }
    .margin-lg-left-190 {
        margin-left: 190px;
    }
    .margin-lg-right-190 {
        margin-right: 190px;
    }
}
.margin-195 {
    margin: 195px;
}
.margin-top-195 {
    margin-top: 195px;
}
.margin-bottom-195 {
    margin-bottom: 195px;
}
.margin-left-195 {
    margin-left: 195px;
}
.margin-right-195 {
    margin-right: 195px;
}
@media (max-width: 768px) {
    .margin-xs-195 {
        margin: 195px;
    }
    .margin-xs-top-195 {
        margin-top: 195px;
    }
    .margin-xs-bottom-195 {
        margin-bottom: 195px;
    }
    .margin-xs-left-195 {
        margin-left: 195px;
    }
    .margin-xs-right-195 {
        margin-right: 195px;
    }
}
@media (min-width: 768px) {
    .margin-sm-195 {
        margin: 195px;
    }
    .margin-sm-top-195 {
        margin-top: 195px;
    }
    .margin-sm-bottom-195 {
        margin-bottom: 195px;
    }
    .margin-sm-left-195 {
        margin-left: 195px;
    }
    .margin-sm-right-195 {
        margin-right: 195px;
    }
}
@media (min-width: 992px) {
    .margin-md-195 {
        margin: 195px;
    }
    .margin-md-top-195 {
        margin-top: 195px;
    }
    .margin-md-bottom-195 {
        margin-bottom: 195px;
    }
    .margin-md-left-195 {
        margin-left: 195px;
    }
    .margin-md-right-195 {
        margin-right: 195px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-195 {
        margin: 195px;
    }
    .margin-lg-top-195 {
        margin-top: 195px;
    }
    .margin-lg-bottom-195 {
        margin-bottom: 195px;
    }
    .margin-lg-left-195 {
        margin-left: 195px;
    }
    .margin-lg-right-195 {
        margin-right: 195px;
    }
}
.margin-200 {
    margin: 200px;
}
.margin-top-200 {
    margin-top: 200px;
}
.margin-bottom-200 {
    margin-bottom: 200px;
}
.margin-left-200 {
    margin-left: 200px;
}
.margin-right-200 {
    margin-right: 200px;
}
@media (max-width: 768px) {
    .margin-xs-200 {
        margin: 200px;
    }
    .margin-xs-top-200 {
        margin-top: 200px;
    }
    .margin-xs-bottom-200 {
        margin-bottom: 200px;
    }
    .margin-xs-left-200 {
        margin-left: 200px;
    }
    .margin-xs-right-200 {
        margin-right: 200px;
    }
}
@media (min-width: 768px) {
    .margin-sm-200 {
        margin: 200px;
    }
    .margin-sm-top-200 {
        margin-top: 200px;
    }
    .margin-sm-bottom-200 {
        margin-bottom: 200px;
    }
    .margin-sm-left-200 {
        margin-left: 200px;
    }
    .margin-sm-right-200 {
        margin-right: 200px;
    }
}
@media (min-width: 992px) {
    .margin-md-200 {
        margin: 200px;
    }
    .margin-md-top-200 {
        margin-top: 200px;
    }
    .margin-md-bottom-200 {
        margin-bottom: 200px;
    }
    .margin-md-left-200 {
        margin-left: 200px;
    }
    .margin-md-right-200 {
        margin-right: 200px;
    }
}
@media (min-width: 1200px) {
    .margin-lg-200 {
        margin: 200px;
    }
    .margin-lg-top-200 {
        margin-top: 200px;
    }
    .margin-lg-bottom-200 {
        margin-bottom: 200px;
    }
    .margin-lg-left-200 {
        margin-left: 200px;
    }
    .margin-lg-right-200 {
        margin-right: 200px;
    }
}
.margin-top-5 {
    margin-top: 5px;
}
.margin-bottom-5 {
    margin-bottom: 5px;
}
.margin-top-5-ip {
    margin-top: 5px !important;
}
.margin-bottom-5-ip {
    margin-bottom: 5px !important;
}
.padding-5 {
    padding: 5px;
}
.padding-top-5 {
    padding-top: 5px;
}
.padding-bottom-5 {
    padding-bottom: 5px;
}
.padding-left-5 {
    padding-left: 5px;
}
.padding-right-5 {
    padding-right: 5px;
}
@media (max-width: 768px) {
    .padding-xs-5 {
        padding: 5px;
    }
    .padding-xs-top-5 {
        padding-top: 5px;
    }
    .padding-xs-bottom-5 {
        padding-bottom: 5px;
    }
    .padding-xs-left-5 {
        padding-left: 5px;
    }
    .padding-xs-right-5 {
        padding-right: 5px;
    }
}
@media (min-width: 768px) {
    .padding-sm-5 {
        padding: 5px;
    }
    .padding-sm-top-5 {
        padding-top: 5px;
    }
    .padding-sm-bottom-5 {
        padding-bottom: 5px;
    }
    .padding-sm-left-5 {
        padding-left: 5px;
    }
    .padding-sm-right-5 {
        padding-right: 5px;
    }
}
@media (min-width: 992px) {
    .padding-md-5 {
        padding: 5px;
    }
    .padding-md-top-5 {
        padding-top: 5px;
    }
    .padding-md-bottom-5 {
        padding-bottom: 5px;
    }
    .padding-md-left-5 {
        padding-left: 5px;
    }
    .padding-md-right-5 {
        padding-right: 5px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-5 {
        padding: 5px;
    }
    .padding-lg-top-5 {
        padding-top: 5px;
    }
    .padding-lg-bottom-5 {
        padding-bottom: 5px;
    }
    .padding-lg-left-5 {
        padding-left: 5px;
    }
    .padding-lg-right-5 {
        padding-right: 5px;
    }
}
.padding-10 {
    padding: 10px;
}
.padding-top-10 {
    padding-top: 10px;
}
.padding-bottom-10 {
    padding-bottom: 10px;
}
.padding-left-10 {
    padding-left: 10px;
}
.padding-right-10 {
    padding-right: 10px;
}
@media (max-width: 768px) {
    .padding-xs-10 {
        padding: 10px;
    }
    .padding-xs-top-10 {
        padding-top: 10px;
    }
    .padding-xs-bottom-10 {
        padding-bottom: 10px;
    }
    .padding-xs-left-10 {
        padding-left: 10px;
    }
    .padding-xs-right-10 {
        padding-right: 10px;
    }
}
@media (min-width: 768px) {
    .padding-sm-10 {
        padding: 10px;
    }
    .padding-sm-top-10 {
        padding-top: 10px;
    }
    .padding-sm-bottom-10 {
        padding-bottom: 10px;
    }
    .padding-sm-left-10 {
        padding-left: 10px;
    }
    .padding-sm-right-10 {
        padding-right: 10px;
    }
}
@media (min-width: 992px) {
    .padding-md-10 {
        padding: 10px;
    }
    .padding-md-top-10 {
        padding-top: 10px;
    }
    .padding-md-bottom-10 {
        padding-bottom: 10px;
    }
    .padding-md-left-10 {
        padding-left: 10px;
    }
    .padding-md-right-10 {
        padding-right: 10px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-10 {
        padding: 10px;
    }
    .padding-lg-top-10 {
        padding-top: 10px;
    }
    .padding-lg-bottom-10 {
        padding-bottom: 10px;
    }
    .padding-lg-left-10 {
        padding-left: 10px;
    }
    .padding-lg-right-10 {
        padding-right: 10px;
    }
}
.padding-15 {
    padding: 15px;
}
.padding-top-15 {
    padding-top: 15px;
}
.padding-bottom-15 {
    padding-bottom: 15px;
}
.padding-left-15 {
    padding-left: 15px;
}
.padding-right-15 {
    padding-right: 15px;
}
@media (max-width: 768px) {
    .padding-xs-15 {
        padding: 15px;
    }
    .padding-xs-top-15 {
        padding-top: 15px;
    }
    .padding-xs-bottom-15 {
        padding-bottom: 15px;
    }
    .padding-xs-left-15 {
        padding-left: 15px;
    }
    .padding-xs-right-15 {
        padding-right: 15px;
    }
}
@media (min-width: 768px) {
    .padding-sm-15 {
        padding: 15px;
    }
    .padding-sm-top-15 {
        padding-top: 15px;
    }
    .padding-sm-bottom-15 {
        padding-bottom: 15px;
    }
    .padding-sm-left-15 {
        padding-left: 15px;
    }
    .padding-sm-right-15 {
        padding-right: 15px;
    }
}
@media (min-width: 992px) {
    .padding-md-15 {
        padding: 15px;
    }
    .padding-md-top-15 {
        padding-top: 15px;
    }
    .padding-md-bottom-15 {
        padding-bottom: 15px;
    }
    .padding-md-left-15 {
        padding-left: 15px;
    }
    .padding-md-right-15 {
        padding-right: 15px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-15 {
        padding: 15px;
    }
    .padding-lg-top-15 {
        padding-top: 15px;
    }
    .padding-lg-bottom-15 {
        padding-bottom: 15px;
    }
    .padding-lg-left-15 {
        padding-left: 15px;
    }
    .padding-lg-right-15 {
        padding-right: 15px;
    }
}
.padding-20 {
    padding: 20px;
}
.padding-top-20 {
    padding-top: 20px;
}
.padding-bottom-20 {
    padding-bottom: 20px;
}
.padding-left-20 {
    padding-left: 20px;
}
.padding-right-20 {
    padding-right: 20px;
}
@media (max-width: 768px) {
    .padding-xs-20 {
        padding: 20px;
    }
    .padding-xs-top-20 {
        padding-top: 20px;
    }
    .padding-xs-bottom-20 {
        padding-bottom: 20px;
    }
    .padding-xs-left-20 {
        padding-left: 20px;
    }
    .padding-xs-right-20 {
        padding-right: 20px;
    }
}
@media (min-width: 768px) {
    .padding-sm-20 {
        padding: 20px;
    }
    .padding-sm-top-20 {
        padding-top: 20px;
    }
    .padding-sm-bottom-20 {
        padding-bottom: 20px;
    }
    .padding-sm-left-20 {
        padding-left: 20px;
    }
    .padding-sm-right-20 {
        padding-right: 20px;
    }
}
@media (min-width: 992px) {
    .padding-md-20 {
        padding: 20px;
    }
    .padding-md-top-20 {
        padding-top: 20px;
    }
    .padding-md-bottom-20 {
        padding-bottom: 20px;
    }
    .padding-md-left-20 {
        padding-left: 20px;
    }
    .padding-md-right-20 {
        padding-right: 20px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-20 {
        padding: 20px;
    }
    .padding-lg-top-20 {
        padding-top: 20px;
    }
    .padding-lg-bottom-20 {
        padding-bottom: 20px;
    }
    .padding-lg-left-20 {
        padding-left: 20px;
    }
    .padding-lg-right-20 {
        padding-right: 20px;
    }
}
.padding-25 {
    padding: 25px;
}
.padding-top-25 {
    padding-top: 25px;
}
.padding-bottom-25 {
    padding-bottom: 25px;
}
.padding-left-25 {
    padding-left: 25px;
}
.padding-right-25 {
    padding-right: 25px;
}
@media (max-width: 768px) {
    .padding-xs-25 {
        padding: 25px;
    }
    .padding-xs-top-25 {
        padding-top: 25px;
    }
    .padding-xs-bottom-25 {
        padding-bottom: 25px;
    }
    .padding-xs-left-25 {
        padding-left: 25px;
    }
    .padding-xs-right-25 {
        padding-right: 25px;
    }
}
@media (min-width: 768px) {
    .padding-sm-25 {
        padding: 25px;
    }
    .padding-sm-top-25 {
        padding-top: 25px;
    }
    .padding-sm-bottom-25 {
        padding-bottom: 25px;
    }
    .padding-sm-left-25 {
        padding-left: 25px;
    }
    .padding-sm-right-25 {
        padding-right: 25px;
    }
}
@media (min-width: 992px) {
    .padding-md-25 {
        padding: 25px;
    }
    .padding-md-top-25 {
        padding-top: 25px;
    }
    .padding-md-bottom-25 {
        padding-bottom: 25px;
    }
    .padding-md-left-25 {
        padding-left: 25px;
    }
    .padding-md-right-25 {
        padding-right: 25px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-25 {
        padding: 25px;
    }
    .padding-lg-top-25 {
        padding-top: 25px;
    }
    .padding-lg-bottom-25 {
        padding-bottom: 25px;
    }
    .padding-lg-left-25 {
        padding-left: 25px;
    }
    .padding-lg-right-25 {
        padding-right: 25px;
    }
}
.padding-30 {
    padding: 30px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-bottom-30 {
    padding-bottom: 30px;
}
.padding-left-30 {
    padding-left: 30px;
}
.padding-right-30 {
    padding-right: 30px;
}
@media (max-width: 768px) {
    .padding-xs-30 {
        padding: 30px;
    }
    .padding-xs-top-30 {
        padding-top: 30px;
    }
    .padding-xs-bottom-30 {
        padding-bottom: 30px;
    }
    .padding-xs-left-30 {
        padding-left: 30px;
    }
    .padding-xs-right-30 {
        padding-right: 30px;
    }
}
@media (min-width: 768px) {
    .padding-sm-30 {
        padding: 30px;
    }
    .padding-sm-top-30 {
        padding-top: 30px;
    }
    .padding-sm-bottom-30 {
        padding-bottom: 30px;
    }
    .padding-sm-left-30 {
        padding-left: 30px;
    }
    .padding-sm-right-30 {
        padding-right: 30px;
    }
}
@media (min-width: 992px) {
    .padding-md-30 {
        padding: 30px;
    }
    .padding-md-top-30 {
        padding-top: 30px;
    }
    .padding-md-bottom-30 {
        padding-bottom: 30px;
    }
    .padding-md-left-30 {
        padding-left: 30px;
    }
    .padding-md-right-30 {
        padding-right: 30px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-30 {
        padding: 30px;
    }
    .padding-lg-top-30 {
        padding-top: 30px;
    }
    .padding-lg-bottom-30 {
        padding-bottom: 30px;
    }
    .padding-lg-left-30 {
        padding-left: 30px;
    }
    .padding-lg-right-30 {
        padding-right: 30px;
    }
}
.padding-35 {
    padding: 35px;
}
.padding-top-35 {
    padding-top: 35px;
}
.padding-bottom-35 {
    padding-bottom: 35px;
}
.padding-left-35 {
    padding-left: 35px;
}
.padding-right-35 {
    padding-right: 35px;
}
@media (max-width: 768px) {
    .padding-xs-35 {
        padding: 35px;
    }
    .padding-xs-top-35 {
        padding-top: 35px;
    }
    .padding-xs-bottom-35 {
        padding-bottom: 35px;
    }
    .padding-xs-left-35 {
        padding-left: 35px;
    }
    .padding-xs-right-35 {
        padding-right: 35px;
    }
}
@media (min-width: 768px) {
    .padding-sm-35 {
        padding: 35px;
    }
    .padding-sm-top-35 {
        padding-top: 35px;
    }
    .padding-sm-bottom-35 {
        padding-bottom: 35px;
    }
    .padding-sm-left-35 {
        padding-left: 35px;
    }
    .padding-sm-right-35 {
        padding-right: 35px;
    }
}
@media (min-width: 992px) {
    .padding-md-35 {
        padding: 35px;
    }
    .padding-md-top-35 {
        padding-top: 35px;
    }
    .padding-md-bottom-35 {
        padding-bottom: 35px;
    }
    .padding-md-left-35 {
        padding-left: 35px;
    }
    .padding-md-right-35 {
        padding-right: 35px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-35 {
        padding: 35px;
    }
    .padding-lg-top-35 {
        padding-top: 35px;
    }
    .padding-lg-bottom-35 {
        padding-bottom: 35px;
    }
    .padding-lg-left-35 {
        padding-left: 35px;
    }
    .padding-lg-right-35 {
        padding-right: 35px;
    }
}
.padding-40 {
    padding: 40px;
}
.padding-top-40 {
    padding-top: 40px;
}
.padding-bottom-40 {
    padding-bottom: 40px;
}
.padding-left-40 {
    padding-left: 40px;
}
.padding-right-40 {
    padding-right: 40px;
}
@media (max-width: 768px) {
    .padding-xs-40 {
        padding: 40px;
    }
    .padding-xs-top-40 {
        padding-top: 40px;
    }
    .padding-xs-bottom-40 {
        padding-bottom: 40px;
    }
    .padding-xs-left-40 {
        padding-left: 40px;
    }
    .padding-xs-right-40 {
        padding-right: 40px;
    }
}
@media (min-width: 768px) {
    .padding-sm-40 {
        padding: 40px;
    }
    .padding-sm-top-40 {
        padding-top: 40px;
    }
    .padding-sm-bottom-40 {
        padding-bottom: 40px;
    }
    .padding-sm-left-40 {
        padding-left: 40px;
    }
    .padding-sm-right-40 {
        padding-right: 40px;
    }
}
@media (min-width: 992px) {
    .padding-md-40 {
        padding: 40px;
    }
    .padding-md-top-40 {
        padding-top: 40px;
    }
    .padding-md-bottom-40 {
        padding-bottom: 40px;
    }
    .padding-md-left-40 {
        padding-left: 40px;
    }
    .padding-md-right-40 {
        padding-right: 40px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-40 {
        padding: 40px;
    }
    .padding-lg-top-40 {
        padding-top: 40px;
    }
    .padding-lg-bottom-40 {
        padding-bottom: 40px;
    }
    .padding-lg-left-40 {
        padding-left: 40px;
    }
    .padding-lg-right-40 {
        padding-right: 40px;
    }
}
.padding-45 {
    padding: 45px;
}
.padding-top-45 {
    padding-top: 45px;
}
.padding-bottom-45 {
    padding-bottom: 45px;
}
.padding-left-45 {
    padding-left: 45px;
}
.padding-right-45 {
    padding-right: 45px;
}
@media (max-width: 768px) {
    .padding-xs-45 {
        padding: 45px;
    }
    .padding-xs-top-45 {
        padding-top: 45px;
    }
    .padding-xs-bottom-45 {
        padding-bottom: 45px;
    }
    .padding-xs-left-45 {
        padding-left: 45px;
    }
    .padding-xs-right-45 {
        padding-right: 45px;
    }
}
@media (min-width: 768px) {
    .padding-sm-45 {
        padding: 45px;
    }
    .padding-sm-top-45 {
        padding-top: 45px;
    }
    .padding-sm-bottom-45 {
        padding-bottom: 45px;
    }
    .padding-sm-left-45 {
        padding-left: 45px;
    }
    .padding-sm-right-45 {
        padding-right: 45px;
    }
}
@media (min-width: 992px) {
    .padding-md-45 {
        padding: 45px;
    }
    .padding-md-top-45 {
        padding-top: 45px;
    }
    .padding-md-bottom-45 {
        padding-bottom: 45px;
    }
    .padding-md-left-45 {
        padding-left: 45px;
    }
    .padding-md-right-45 {
        padding-right: 45px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-45 {
        padding: 45px;
    }
    .padding-lg-top-45 {
        padding-top: 45px;
    }
    .padding-lg-bottom-45 {
        padding-bottom: 45px;
    }
    .padding-lg-left-45 {
        padding-left: 45px;
    }
    .padding-lg-right-45 {
        padding-right: 45px;
    }
}
.padding-50 {
    padding: 50px;
}
.padding-top-50 {
    padding-top: 50px;
}
.padding-bottom-50 {
    padding-bottom: 50px;
}
.padding-left-50 {
    padding-left: 50px;
}
.padding-right-50 {
    padding-right: 50px;
}
@media (max-width: 768px) {
    .padding-xs-50 {
        padding: 50px;
    }
    .padding-xs-top-50 {
        padding-top: 50px;
    }
    .padding-xs-bottom-50 {
        padding-bottom: 50px;
    }
    .padding-xs-left-50 {
        padding-left: 50px;
    }
    .padding-xs-right-50 {
        padding-right: 50px;
    }
}
@media (min-width: 768px) {
    .padding-sm-50 {
        padding: 50px;
    }
    .padding-sm-top-50 {
        padding-top: 50px;
    }
    .padding-sm-bottom-50 {
        padding-bottom: 50px;
    }
    .padding-sm-left-50 {
        padding-left: 50px;
    }
    .padding-sm-right-50 {
        padding-right: 50px;
    }
}
@media (min-width: 992px) {
    .padding-md-50 {
        padding: 50px;
    }
    .padding-md-top-50 {
        padding-top: 50px;
    }
    .padding-md-bottom-50 {
        padding-bottom: 50px;
    }
    .padding-md-left-50 {
        padding-left: 50px;
    }
    .padding-md-right-50 {
        padding-right: 50px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-50 {
        padding: 50px;
    }
    .padding-lg-top-50 {
        padding-top: 50px;
    }
    .padding-lg-bottom-50 {
        padding-bottom: 50px;
    }
    .padding-lg-left-50 {
        padding-left: 50px;
    }
    .padding-lg-right-50 {
        padding-right: 50px;
    }
}
.padding-55 {
    padding: 55px;
}
.padding-top-55 {
    padding-top: 55px;
}
.padding-bottom-55 {
    padding-bottom: 55px;
}
.padding-left-55 {
    padding-left: 55px;
}
.padding-right-55 {
    padding-right: 55px;
}
@media (max-width: 768px) {
    .padding-xs-55 {
        padding: 55px;
    }
    .padding-xs-top-55 {
        padding-top: 55px;
    }
    .padding-xs-bottom-55 {
        padding-bottom: 55px;
    }
    .padding-xs-left-55 {
        padding-left: 55px;
    }
    .padding-xs-right-55 {
        padding-right: 55px;
    }
}
@media (min-width: 768px) {
    .padding-sm-55 {
        padding: 55px;
    }
    .padding-sm-top-55 {
        padding-top: 55px;
    }
    .padding-sm-bottom-55 {
        padding-bottom: 55px;
    }
    .padding-sm-left-55 {
        padding-left: 55px;
    }
    .padding-sm-right-55 {
        padding-right: 55px;
    }
}
@media (min-width: 992px) {
    .padding-md-55 {
        padding: 55px;
    }
    .padding-md-top-55 {
        padding-top: 55px;
    }
    .padding-md-bottom-55 {
        padding-bottom: 55px;
    }
    .padding-md-left-55 {
        padding-left: 55px;
    }
    .padding-md-right-55 {
        padding-right: 55px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-55 {
        padding: 55px;
    }
    .padding-lg-top-55 {
        padding-top: 55px;
    }
    .padding-lg-bottom-55 {
        padding-bottom: 55px;
    }
    .padding-lg-left-55 {
        padding-left: 55px;
    }
    .padding-lg-right-55 {
        padding-right: 55px;
    }
}
.padding-60 {
    padding: 60px;
}
.padding-top-60 {
    padding-top: 60px;
}
.padding-bottom-60 {
    padding-bottom: 60px;
}
.padding-left-60 {
    padding-left: 60px;
}
.padding-right-60 {
    padding-right: 60px;
}
@media (max-width: 768px) {
    .padding-xs-60 {
        padding: 60px;
    }
    .padding-xs-top-60 {
        padding-top: 60px;
    }
    .padding-xs-bottom-60 {
        padding-bottom: 60px;
    }
    .padding-xs-left-60 {
        padding-left: 60px;
    }
    .padding-xs-right-60 {
        padding-right: 60px;
    }
}
@media (min-width: 768px) {
    .padding-sm-60 {
        padding: 60px;
    }
    .padding-sm-top-60 {
        padding-top: 60px;
    }
    .padding-sm-bottom-60 {
        padding-bottom: 60px;
    }
    .padding-sm-left-60 {
        padding-left: 60px;
    }
    .padding-sm-right-60 {
        padding-right: 60px;
    }
}
@media (min-width: 992px) {
    .padding-md-60 {
        padding: 60px;
    }
    .padding-md-top-60 {
        padding-top: 60px;
    }
    .padding-md-bottom-60 {
        padding-bottom: 60px;
    }
    .padding-md-left-60 {
        padding-left: 60px;
    }
    .padding-md-right-60 {
        padding-right: 60px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-60 {
        padding: 60px;
    }
    .padding-lg-top-60 {
        padding-top: 60px;
    }
    .padding-lg-bottom-60 {
        padding-bottom: 60px;
    }
    .padding-lg-left-60 {
        padding-left: 60px;
    }
    .padding-lg-right-60 {
        padding-right: 60px;
    }
}
.padding-65 {
    padding: 65px;
}
.padding-top-65 {
    padding-top: 65px;
}
.padding-bottom-65 {
    padding-bottom: 65px;
}
.padding-left-65 {
    padding-left: 65px;
}
.padding-right-65 {
    padding-right: 65px;
}
@media (max-width: 768px) {
    .padding-xs-65 {
        padding: 65px;
    }
    .padding-xs-top-65 {
        padding-top: 65px;
    }
    .padding-xs-bottom-65 {
        padding-bottom: 65px;
    }
    .padding-xs-left-65 {
        padding-left: 65px;
    }
    .padding-xs-right-65 {
        padding-right: 65px;
    }
}
@media (min-width: 768px) {
    .padding-sm-65 {
        padding: 65px;
    }
    .padding-sm-top-65 {
        padding-top: 65px;
    }
    .padding-sm-bottom-65 {
        padding-bottom: 65px;
    }
    .padding-sm-left-65 {
        padding-left: 65px;
    }
    .padding-sm-right-65 {
        padding-right: 65px;
    }
}
@media (min-width: 992px) {
    .padding-md-65 {
        padding: 65px;
    }
    .padding-md-top-65 {
        padding-top: 65px;
    }
    .padding-md-bottom-65 {
        padding-bottom: 65px;
    }
    .padding-md-left-65 {
        padding-left: 65px;
    }
    .padding-md-right-65 {
        padding-right: 65px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-65 {
        padding: 65px;
    }
    .padding-lg-top-65 {
        padding-top: 65px;
    }
    .padding-lg-bottom-65 {
        padding-bottom: 65px;
    }
    .padding-lg-left-65 {
        padding-left: 65px;
    }
    .padding-lg-right-65 {
        padding-right: 65px;
    }
}
.padding-70 {
    padding: 70px;
}
.padding-top-70 {
    padding-top: 70px;
}
.padding-bottom-70 {
    padding-bottom: 70px;
}
.padding-left-70 {
    padding-left: 70px;
}
.padding-right-70 {
    padding-right: 70px;
}
@media (max-width: 768px) {
    .padding-xs-70 {
        padding: 70px;
    }
    .padding-xs-top-70 {
        padding-top: 70px;
    }
    .padding-xs-bottom-70 {
        padding-bottom: 70px;
    }
    .padding-xs-left-70 {
        padding-left: 70px;
    }
    .padding-xs-right-70 {
        padding-right: 70px;
    }
}
@media (min-width: 768px) {
    .padding-sm-70 {
        padding: 70px;
    }
    .padding-sm-top-70 {
        padding-top: 70px;
    }
    .padding-sm-bottom-70 {
        padding-bottom: 70px;
    }
    .padding-sm-left-70 {
        padding-left: 70px;
    }
    .padding-sm-right-70 {
        padding-right: 70px;
    }
}
@media (min-width: 992px) {
    .padding-md-70 {
        padding: 70px;
    }
    .padding-md-top-70 {
        padding-top: 70px;
    }
    .padding-md-bottom-70 {
        padding-bottom: 70px;
    }
    .padding-md-left-70 {
        padding-left: 70px;
    }
    .padding-md-right-70 {
        padding-right: 70px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-70 {
        padding: 70px;
    }
    .padding-lg-top-70 {
        padding-top: 70px;
    }
    .padding-lg-bottom-70 {
        padding-bottom: 70px;
    }
    .padding-lg-left-70 {
        padding-left: 70px;
    }
    .padding-lg-right-70 {
        padding-right: 70px;
    }
}
.padding-75 {
    padding: 75px;
}
.padding-top-75 {
    padding-top: 75px;
}
.padding-bottom-75 {
    padding-bottom: 75px;
}
.padding-left-75 {
    padding-left: 75px;
}
.padding-right-75 {
    padding-right: 75px;
}
@media (max-width: 768px) {
    .padding-xs-75 {
        padding: 75px;
    }
    .padding-xs-top-75 {
        padding-top: 75px;
    }
    .padding-xs-bottom-75 {
        padding-bottom: 75px;
    }
    .padding-xs-left-75 {
        padding-left: 75px;
    }
    .padding-xs-right-75 {
        padding-right: 75px;
    }
}
@media (min-width: 768px) {
    .padding-sm-75 {
        padding: 75px;
    }
    .padding-sm-top-75 {
        padding-top: 75px;
    }
    .padding-sm-bottom-75 {
        padding-bottom: 75px;
    }
    .padding-sm-left-75 {
        padding-left: 75px;
    }
    .padding-sm-right-75 {
        padding-right: 75px;
    }
}
@media (min-width: 992px) {
    .padding-md-75 {
        padding: 75px;
    }
    .padding-md-top-75 {
        padding-top: 75px;
    }
    .padding-md-bottom-75 {
        padding-bottom: 75px;
    }
    .padding-md-left-75 {
        padding-left: 75px;
    }
    .padding-md-right-75 {
        padding-right: 75px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-75 {
        padding: 75px;
    }
    .padding-lg-top-75 {
        padding-top: 75px;
    }
    .padding-lg-bottom-75 {
        padding-bottom: 75px;
    }
    .padding-lg-left-75 {
        padding-left: 75px;
    }
    .padding-lg-right-75 {
        padding-right: 75px;
    }
}
.padding-80 {
    padding: 80px;
}
.padding-top-80 {
    padding-top: 80px;
}
.padding-bottom-80 {
    padding-bottom: 80px;
}
.padding-left-80 {
    padding-left: 80px;
}
.padding-right-80 {
    padding-right: 80px;
}
@media (max-width: 768px) {
    .padding-xs-80 {
        padding: 80px;
    }
    .padding-xs-top-80 {
        padding-top: 80px;
    }
    .padding-xs-bottom-80 {
        padding-bottom: 80px;
    }
    .padding-xs-left-80 {
        padding-left: 80px;
    }
    .padding-xs-right-80 {
        padding-right: 80px;
    }
}
@media (min-width: 768px) {
    .padding-sm-80 {
        padding: 80px;
    }
    .padding-sm-top-80 {
        padding-top: 80px;
    }
    .padding-sm-bottom-80 {
        padding-bottom: 80px;
    }
    .padding-sm-left-80 {
        padding-left: 80px;
    }
    .padding-sm-right-80 {
        padding-right: 80px;
    }
}
@media (min-width: 992px) {
    .padding-md-80 {
        padding: 80px;
    }
    .padding-md-top-80 {
        padding-top: 80px;
    }
    .padding-md-bottom-80 {
        padding-bottom: 80px;
    }
    .padding-md-left-80 {
        padding-left: 80px;
    }
    .padding-md-right-80 {
        padding-right: 80px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-80 {
        padding: 80px;
    }
    .padding-lg-top-80 {
        padding-top: 80px;
    }
    .padding-lg-bottom-80 {
        padding-bottom: 80px;
    }
    .padding-lg-left-80 {
        padding-left: 80px;
    }
    .padding-lg-right-80 {
        padding-right: 80px;
    }
}
.padding-85 {
    padding: 85px;
}
.padding-top-85 {
    padding-top: 85px;
}
.padding-bottom-85 {
    padding-bottom: 85px;
}
.padding-left-85 {
    padding-left: 85px;
}
.padding-right-85 {
    padding-right: 85px;
}
@media (max-width: 768px) {
    .padding-xs-85 {
        padding: 85px;
    }
    .padding-xs-top-85 {
        padding-top: 85px;
    }
    .padding-xs-bottom-85 {
        padding-bottom: 85px;
    }
    .padding-xs-left-85 {
        padding-left: 85px;
    }
    .padding-xs-right-85 {
        padding-right: 85px;
    }
}
@media (min-width: 768px) {
    .padding-sm-85 {
        padding: 85px;
    }
    .padding-sm-top-85 {
        padding-top: 85px;
    }
    .padding-sm-bottom-85 {
        padding-bottom: 85px;
    }
    .padding-sm-left-85 {
        padding-left: 85px;
    }
    .padding-sm-right-85 {
        padding-right: 85px;
    }
}
@media (min-width: 992px) {
    .padding-md-85 {
        padding: 85px;
    }
    .padding-md-top-85 {
        padding-top: 85px;
    }
    .padding-md-bottom-85 {
        padding-bottom: 85px;
    }
    .padding-md-left-85 {
        padding-left: 85px;
    }
    .padding-md-right-85 {
        padding-right: 85px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-85 {
        padding: 85px;
    }
    .padding-lg-top-85 {
        padding-top: 85px;
    }
    .padding-lg-bottom-85 {
        padding-bottom: 85px;
    }
    .padding-lg-left-85 {
        padding-left: 85px;
    }
    .padding-lg-right-85 {
        padding-right: 85px;
    }
}
.padding-90 {
    padding: 90px;
}
.padding-top-90 {
    padding-top: 90px;
}
.padding-bottom-90 {
    padding-bottom: 90px;
}
.padding-left-90 {
    padding-left: 90px;
}
.padding-right-90 {
    padding-right: 90px;
}
@media (max-width: 768px) {
    .padding-xs-90 {
        padding: 90px;
    }
    .padding-xs-top-90 {
        padding-top: 90px;
    }
    .padding-xs-bottom-90 {
        padding-bottom: 90px;
    }
    .padding-xs-left-90 {
        padding-left: 90px;
    }
    .padding-xs-right-90 {
        padding-right: 90px;
    }
}
@media (min-width: 768px) {
    .padding-sm-90 {
        padding: 90px;
    }
    .padding-sm-top-90 {
        padding-top: 90px;
    }
    .padding-sm-bottom-90 {
        padding-bottom: 90px;
    }
    .padding-sm-left-90 {
        padding-left: 90px;
    }
    .padding-sm-right-90 {
        padding-right: 90px;
    }
}
@media (min-width: 992px) {
    .padding-md-90 {
        padding: 90px;
    }
    .padding-md-top-90 {
        padding-top: 90px;
    }
    .padding-md-bottom-90 {
        padding-bottom: 90px;
    }
    .padding-md-left-90 {
        padding-left: 90px;
    }
    .padding-md-right-90 {
        padding-right: 90px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-90 {
        padding: 90px;
    }
    .padding-lg-top-90 {
        padding-top: 90px;
    }
    .padding-lg-bottom-90 {
        padding-bottom: 90px;
    }
    .padding-lg-left-90 {
        padding-left: 90px;
    }
    .padding-lg-right-90 {
        padding-right: 90px;
    }
}
.padding-95 {
    padding: 95px;
}
.padding-top-95 {
    padding-top: 95px;
}
.padding-bottom-95 {
    padding-bottom: 95px;
}
.padding-left-95 {
    padding-left: 95px;
}
.padding-right-95 {
    padding-right: 95px;
}
@media (max-width: 768px) {
    .padding-xs-95 {
        padding: 95px;
    }
    .padding-xs-top-95 {
        padding-top: 95px;
    }
    .padding-xs-bottom-95 {
        padding-bottom: 95px;
    }
    .padding-xs-left-95 {
        padding-left: 95px;
    }
    .padding-xs-right-95 {
        padding-right: 95px;
    }
}
@media (min-width: 768px) {
    .padding-sm-95 {
        padding: 95px;
    }
    .padding-sm-top-95 {
        padding-top: 95px;
    }
    .padding-sm-bottom-95 {
        padding-bottom: 95px;
    }
    .padding-sm-left-95 {
        padding-left: 95px;
    }
    .padding-sm-right-95 {
        padding-right: 95px;
    }
}
@media (min-width: 992px) {
    .padding-md-95 {
        padding: 95px;
    }
    .padding-md-top-95 {
        padding-top: 95px;
    }
    .padding-md-bottom-95 {
        padding-bottom: 95px;
    }
    .padding-md-left-95 {
        padding-left: 95px;
    }
    .padding-md-right-95 {
        padding-right: 95px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-95 {
        padding: 95px;
    }
    .padding-lg-top-95 {
        padding-top: 95px;
    }
    .padding-lg-bottom-95 {
        padding-bottom: 95px;
    }
    .padding-lg-left-95 {
        padding-left: 95px;
    }
    .padding-lg-right-95 {
        padding-right: 95px;
    }
}
.padding-100 {
    padding: 100px;
}
.padding-top-100 {
    padding-top: 100px;
}
.padding-bottom-100 {
    padding-bottom: 100px;
}
.padding-left-100 {
    padding-left: 100px;
}
.padding-right-100 {
    padding-right: 100px;
}
@media (max-width: 768px) {
    .padding-xs-100 {
        padding: 100px;
    }
    .padding-xs-top-100 {
        padding-top: 100px;
    }
    .padding-xs-bottom-100 {
        padding-bottom: 100px;
    }
    .padding-xs-left-100 {
        padding-left: 100px;
    }
    .padding-xs-right-100 {
        padding-right: 100px;
    }
}
@media (min-width: 768px) {
    .padding-sm-100 {
        padding: 100px;
    }
    .padding-sm-top-100 {
        padding-top: 100px;
    }
    .padding-sm-bottom-100 {
        padding-bottom: 100px;
    }
    .padding-sm-left-100 {
        padding-left: 100px;
    }
    .padding-sm-right-100 {
        padding-right: 100px;
    }
}
@media (min-width: 992px) {
    .padding-md-100 {
        padding: 100px;
    }
    .padding-md-top-100 {
        padding-top: 100px;
    }
    .padding-md-bottom-100 {
        padding-bottom: 100px;
    }
    .padding-md-left-100 {
        padding-left: 100px;
    }
    .padding-md-right-100 {
        padding-right: 100px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-100 {
        padding: 100px;
    }
    .padding-lg-top-100 {
        padding-top: 100px;
    }
    .padding-lg-bottom-100 {
        padding-bottom: 100px;
    }
    .padding-lg-left-100 {
        padding-left: 100px;
    }
    .padding-lg-right-100 {
        padding-right: 100px;
    }
}
.padding-105 {
    padding: 105px;
}
.padding-top-105 {
    padding-top: 105px;
}
.padding-bottom-105 {
    padding-bottom: 105px;
}
.padding-left-105 {
    padding-left: 105px;
}
.padding-right-105 {
    padding-right: 105px;
}
@media (max-width: 768px) {
    .padding-xs-105 {
        padding: 105px;
    }
    .padding-xs-top-105 {
        padding-top: 105px;
    }
    .padding-xs-bottom-105 {
        padding-bottom: 105px;
    }
    .padding-xs-left-105 {
        padding-left: 105px;
    }
    .padding-xs-right-105 {
        padding-right: 105px;
    }
}
@media (min-width: 768px) {
    .padding-sm-105 {
        padding: 105px;
    }
    .padding-sm-top-105 {
        padding-top: 105px;
    }
    .padding-sm-bottom-105 {
        padding-bottom: 105px;
    }
    .padding-sm-left-105 {
        padding-left: 105px;
    }
    .padding-sm-right-105 {
        padding-right: 105px;
    }
}
@media (min-width: 992px) {
    .padding-md-105 {
        padding: 105px;
    }
    .padding-md-top-105 {
        padding-top: 105px;
    }
    .padding-md-bottom-105 {
        padding-bottom: 105px;
    }
    .padding-md-left-105 {
        padding-left: 105px;
    }
    .padding-md-right-105 {
        padding-right: 105px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-105 {
        padding: 105px;
    }
    .padding-lg-top-105 {
        padding-top: 105px;
    }
    .padding-lg-bottom-105 {
        padding-bottom: 105px;
    }
    .padding-lg-left-105 {
        padding-left: 105px;
    }
    .padding-lg-right-105 {
        padding-right: 105px;
    }
}
.padding-110 {
    padding: 110px;
}
.padding-top-110 {
    padding-top: 110px;
}
.padding-bottom-110 {
    padding-bottom: 110px;
}
.padding-left-110 {
    padding-left: 110px;
}
.padding-right-110 {
    padding-right: 110px;
}
@media (max-width: 768px) {
    .padding-xs-110 {
        padding: 110px;
    }
    .padding-xs-top-110 {
        padding-top: 110px;
    }
    .padding-xs-bottom-110 {
        padding-bottom: 110px;
    }
    .padding-xs-left-110 {
        padding-left: 110px;
    }
    .padding-xs-right-110 {
        padding-right: 110px;
    }
}
@media (min-width: 768px) {
    .padding-sm-110 {
        padding: 110px;
    }
    .padding-sm-top-110 {
        padding-top: 110px;
    }
    .padding-sm-bottom-110 {
        padding-bottom: 110px;
    }
    .padding-sm-left-110 {
        padding-left: 110px;
    }
    .padding-sm-right-110 {
        padding-right: 110px;
    }
}
@media (min-width: 992px) {
    .padding-md-110 {
        padding: 110px;
    }
    .padding-md-top-110 {
        padding-top: 110px;
    }
    .padding-md-bottom-110 {
        padding-bottom: 110px;
    }
    .padding-md-left-110 {
        padding-left: 110px;
    }
    .padding-md-right-110 {
        padding-right: 110px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-110 {
        padding: 110px;
    }
    .padding-lg-top-110 {
        padding-top: 110px;
    }
    .padding-lg-bottom-110 {
        padding-bottom: 110px;
    }
    .padding-lg-left-110 {
        padding-left: 110px;
    }
    .padding-lg-right-110 {
        padding-right: 110px;
    }
}
.padding-115 {
    padding: 115px;
}
.padding-top-115 {
    padding-top: 115px;
}
.padding-bottom-115 {
    padding-bottom: 115px;
}
.padding-left-115 {
    padding-left: 115px;
}
.padding-right-115 {
    padding-right: 115px;
}
@media (max-width: 768px) {
    .padding-xs-115 {
        padding: 115px;
    }
    .padding-xs-top-115 {
        padding-top: 115px;
    }
    .padding-xs-bottom-115 {
        padding-bottom: 115px;
    }
    .padding-xs-left-115 {
        padding-left: 115px;
    }
    .padding-xs-right-115 {
        padding-right: 115px;
    }
}
@media (min-width: 768px) {
    .padding-sm-115 {
        padding: 115px;
    }
    .padding-sm-top-115 {
        padding-top: 115px;
    }
    .padding-sm-bottom-115 {
        padding-bottom: 115px;
    }
    .padding-sm-left-115 {
        padding-left: 115px;
    }
    .padding-sm-right-115 {
        padding-right: 115px;
    }
}
@media (min-width: 992px) {
    .padding-md-115 {
        padding: 115px;
    }
    .padding-md-top-115 {
        padding-top: 115px;
    }
    .padding-md-bottom-115 {
        padding-bottom: 115px;
    }
    .padding-md-left-115 {
        padding-left: 115px;
    }
    .padding-md-right-115 {
        padding-right: 115px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-115 {
        padding: 115px;
    }
    .padding-lg-top-115 {
        padding-top: 115px;
    }
    .padding-lg-bottom-115 {
        padding-bottom: 115px;
    }
    .padding-lg-left-115 {
        padding-left: 115px;
    }
    .padding-lg-right-115 {
        padding-right: 115px;
    }
}
.padding-120 {
    padding: 120px;
}
.padding-top-120 {
    padding-top: 120px;
}
.padding-bottom-120 {
    padding-bottom: 120px;
}
.padding-left-120 {
    padding-left: 120px;
}
.padding-right-120 {
    padding-right: 120px;
}
@media (max-width: 768px) {
    .padding-xs-120 {
        padding: 120px;
    }
    .padding-xs-top-120 {
        padding-top: 120px;
    }
    .padding-xs-bottom-120 {
        padding-bottom: 120px;
    }
    .padding-xs-left-120 {
        padding-left: 120px;
    }
    .padding-xs-right-120 {
        padding-right: 120px;
    }
}
@media (min-width: 768px) {
    .padding-sm-120 {
        padding: 120px;
    }
    .padding-sm-top-120 {
        padding-top: 120px;
    }
    .padding-sm-bottom-120 {
        padding-bottom: 120px;
    }
    .padding-sm-left-120 {
        padding-left: 120px;
    }
    .padding-sm-right-120 {
        padding-right: 120px;
    }
}
@media (min-width: 992px) {
    .padding-md-120 {
        padding: 120px;
    }
    .padding-md-top-120 {
        padding-top: 120px;
    }
    .padding-md-bottom-120 {
        padding-bottom: 120px;
    }
    .padding-md-left-120 {
        padding-left: 120px;
    }
    .padding-md-right-120 {
        padding-right: 120px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-120 {
        padding: 120px;
    }
    .padding-lg-top-120 {
        padding-top: 120px;
    }
    .padding-lg-bottom-120 {
        padding-bottom: 120px;
    }
    .padding-lg-left-120 {
        padding-left: 120px;
    }
    .padding-lg-right-120 {
        padding-right: 120px;
    }
}
.padding-125 {
    padding: 125px;
}
.padding-top-125 {
    padding-top: 125px;
}
.padding-bottom-125 {
    padding-bottom: 125px;
}
.padding-left-125 {
    padding-left: 125px;
}
.padding-right-125 {
    padding-right: 125px;
}
@media (max-width: 768px) {
    .padding-xs-125 {
        padding: 125px;
    }
    .padding-xs-top-125 {
        padding-top: 125px;
    }
    .padding-xs-bottom-125 {
        padding-bottom: 125px;
    }
    .padding-xs-left-125 {
        padding-left: 125px;
    }
    .padding-xs-right-125 {
        padding-right: 125px;
    }
}
@media (min-width: 768px) {
    .padding-sm-125 {
        padding: 125px;
    }
    .padding-sm-top-125 {
        padding-top: 125px;
    }
    .padding-sm-bottom-125 {
        padding-bottom: 125px;
    }
    .padding-sm-left-125 {
        padding-left: 125px;
    }
    .padding-sm-right-125 {
        padding-right: 125px;
    }
}
@media (min-width: 992px) {
    .padding-md-125 {
        padding: 125px;
    }
    .padding-md-top-125 {
        padding-top: 125px;
    }
    .padding-md-bottom-125 {
        padding-bottom: 125px;
    }
    .padding-md-left-125 {
        padding-left: 125px;
    }
    .padding-md-right-125 {
        padding-right: 125px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-125 {
        padding: 125px;
    }
    .padding-lg-top-125 {
        padding-top: 125px;
    }
    .padding-lg-bottom-125 {
        padding-bottom: 125px;
    }
    .padding-lg-left-125 {
        padding-left: 125px;
    }
    .padding-lg-right-125 {
        padding-right: 125px;
    }
}
.padding-130 {
    padding: 130px;
}
.padding-top-130 {
    padding-top: 130px;
}
.padding-bottom-130 {
    padding-bottom: 130px;
}
.padding-left-130 {
    padding-left: 130px;
}
.padding-right-130 {
    padding-right: 130px;
}
@media (max-width: 768px) {
    .padding-xs-130 {
        padding: 130px;
    }
    .padding-xs-top-130 {
        padding-top: 130px;
    }
    .padding-xs-bottom-130 {
        padding-bottom: 130px;
    }
    .padding-xs-left-130 {
        padding-left: 130px;
    }
    .padding-xs-right-130 {
        padding-right: 130px;
    }
}
@media (min-width: 768px) {
    .padding-sm-130 {
        padding: 130px;
    }
    .padding-sm-top-130 {
        padding-top: 130px;
    }
    .padding-sm-bottom-130 {
        padding-bottom: 130px;
    }
    .padding-sm-left-130 {
        padding-left: 130px;
    }
    .padding-sm-right-130 {
        padding-right: 130px;
    }
}
@media (min-width: 992px) {
    .padding-md-130 {
        padding: 130px;
    }
    .padding-md-top-130 {
        padding-top: 130px;
    }
    .padding-md-bottom-130 {
        padding-bottom: 130px;
    }
    .padding-md-left-130 {
        padding-left: 130px;
    }
    .padding-md-right-130 {
        padding-right: 130px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-130 {
        padding: 130px;
    }
    .padding-lg-top-130 {
        padding-top: 130px;
    }
    .padding-lg-bottom-130 {
        padding-bottom: 130px;
    }
    .padding-lg-left-130 {
        padding-left: 130px;
    }
    .padding-lg-right-130 {
        padding-right: 130px;
    }
}
.padding-135 {
    padding: 135px;
}
.padding-top-135 {
    padding-top: 135px;
}
.padding-bottom-135 {
    padding-bottom: 135px;
}
.padding-left-135 {
    padding-left: 135px;
}
.padding-right-135 {
    padding-right: 135px;
}
@media (max-width: 768px) {
    .padding-xs-135 {
        padding: 135px;
    }
    .padding-xs-top-135 {
        padding-top: 135px;
    }
    .padding-xs-bottom-135 {
        padding-bottom: 135px;
    }
    .padding-xs-left-135 {
        padding-left: 135px;
    }
    .padding-xs-right-135 {
        padding-right: 135px;
    }
}
@media (min-width: 768px) {
    .padding-sm-135 {
        padding: 135px;
    }
    .padding-sm-top-135 {
        padding-top: 135px;
    }
    .padding-sm-bottom-135 {
        padding-bottom: 135px;
    }
    .padding-sm-left-135 {
        padding-left: 135px;
    }
    .padding-sm-right-135 {
        padding-right: 135px;
    }
}
@media (min-width: 992px) {
    .padding-md-135 {
        padding: 135px;
    }
    .padding-md-top-135 {
        padding-top: 135px;
    }
    .padding-md-bottom-135 {
        padding-bottom: 135px;
    }
    .padding-md-left-135 {
        padding-left: 135px;
    }
    .padding-md-right-135 {
        padding-right: 135px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-135 {
        padding: 135px;
    }
    .padding-lg-top-135 {
        padding-top: 135px;
    }
    .padding-lg-bottom-135 {
        padding-bottom: 135px;
    }
    .padding-lg-left-135 {
        padding-left: 135px;
    }
    .padding-lg-right-135 {
        padding-right: 135px;
    }
}
.padding-140 {
    padding: 140px;
}
.padding-top-140 {
    padding-top: 140px;
}
.padding-bottom-140 {
    padding-bottom: 140px;
}
.padding-left-140 {
    padding-left: 140px;
}
.padding-right-140 {
    padding-right: 140px;
}
@media (max-width: 768px) {
    .padding-xs-140 {
        padding: 140px;
    }
    .padding-xs-top-140 {
        padding-top: 140px;
    }
    .padding-xs-bottom-140 {
        padding-bottom: 140px;
    }
    .padding-xs-left-140 {
        padding-left: 140px;
    }
    .padding-xs-right-140 {
        padding-right: 140px;
    }
}
@media (min-width: 768px) {
    .padding-sm-140 {
        padding: 140px;
    }
    .padding-sm-top-140 {
        padding-top: 140px;
    }
    .padding-sm-bottom-140 {
        padding-bottom: 140px;
    }
    .padding-sm-left-140 {
        padding-left: 140px;
    }
    .padding-sm-right-140 {
        padding-right: 140px;
    }
}
@media (min-width: 992px) {
    .padding-md-140 {
        padding: 140px;
    }
    .padding-md-top-140 {
        padding-top: 140px;
    }
    .padding-md-bottom-140 {
        padding-bottom: 140px;
    }
    .padding-md-left-140 {
        padding-left: 140px;
    }
    .padding-md-right-140 {
        padding-right: 140px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-140 {
        padding: 140px;
    }
    .padding-lg-top-140 {
        padding-top: 140px;
    }
    .padding-lg-bottom-140 {
        padding-bottom: 140px;
    }
    .padding-lg-left-140 {
        padding-left: 140px;
    }
    .padding-lg-right-140 {
        padding-right: 140px;
    }
}
.padding-145 {
    padding: 145px;
}
.padding-top-145 {
    padding-top: 145px;
}
.padding-bottom-145 {
    padding-bottom: 145px;
}
.padding-left-145 {
    padding-left: 145px;
}
.padding-right-145 {
    padding-right: 145px;
}
@media (max-width: 768px) {
    .padding-xs-145 {
        padding: 145px;
    }
    .padding-xs-top-145 {
        padding-top: 145px;
    }
    .padding-xs-bottom-145 {
        padding-bottom: 145px;
    }
    .padding-xs-left-145 {
        padding-left: 145px;
    }
    .padding-xs-right-145 {
        padding-right: 145px;
    }
}
@media (min-width: 768px) {
    .padding-sm-145 {
        padding: 145px;
    }
    .padding-sm-top-145 {
        padding-top: 145px;
    }
    .padding-sm-bottom-145 {
        padding-bottom: 145px;
    }
    .padding-sm-left-145 {
        padding-left: 145px;
    }
    .padding-sm-right-145 {
        padding-right: 145px;
    }
}
@media (min-width: 992px) {
    .padding-md-145 {
        padding: 145px;
    }
    .padding-md-top-145 {
        padding-top: 145px;
    }
    .padding-md-bottom-145 {
        padding-bottom: 145px;
    }
    .padding-md-left-145 {
        padding-left: 145px;
    }
    .padding-md-right-145 {
        padding-right: 145px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-145 {
        padding: 145px;
    }
    .padding-lg-top-145 {
        padding-top: 145px;
    }
    .padding-lg-bottom-145 {
        padding-bottom: 145px;
    }
    .padding-lg-left-145 {
        padding-left: 145px;
    }
    .padding-lg-right-145 {
        padding-right: 145px;
    }
}
.padding-150 {
    padding: 150px;
}
.padding-top-150 {
    padding-top: 150px;
}
.padding-bottom-150 {
    padding-bottom: 150px;
}
.padding-left-150 {
    padding-left: 150px;
}
.padding-right-150 {
    padding-right: 150px;
}
@media (max-width: 768px) {
    .padding-xs-150 {
        padding: 150px;
    }
    .padding-xs-top-150 {
        padding-top: 150px;
    }
    .padding-xs-bottom-150 {
        padding-bottom: 150px;
    }
    .padding-xs-left-150 {
        padding-left: 150px;
    }
    .padding-xs-right-150 {
        padding-right: 150px;
    }
}
@media (min-width: 768px) {
    .padding-sm-150 {
        padding: 150px;
    }
    .padding-sm-top-150 {
        padding-top: 150px;
    }
    .padding-sm-bottom-150 {
        padding-bottom: 150px;
    }
    .padding-sm-left-150 {
        padding-left: 150px;
    }
    .padding-sm-right-150 {
        padding-right: 150px;
    }
}
@media (min-width: 992px) {
    .padding-md-150 {
        padding: 150px;
    }
    .padding-md-top-150 {
        padding-top: 150px;
    }
    .padding-md-bottom-150 {
        padding-bottom: 150px;
    }
    .padding-md-left-150 {
        padding-left: 150px;
    }
    .padding-md-right-150 {
        padding-right: 150px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-150 {
        padding: 150px;
    }
    .padding-lg-top-150 {
        padding-top: 150px;
    }
    .padding-lg-bottom-150 {
        padding-bottom: 150px;
    }
    .padding-lg-left-150 {
        padding-left: 150px;
    }
    .padding-lg-right-150 {
        padding-right: 150px;
    }
}
.padding-155 {
    padding: 155px;
}
.padding-top-155 {
    padding-top: 155px;
}
.padding-bottom-155 {
    padding-bottom: 155px;
}
.padding-left-155 {
    padding-left: 155px;
}
.padding-right-155 {
    padding-right: 155px;
}
@media (max-width: 768px) {
    .padding-xs-155 {
        padding: 155px;
    }
    .padding-xs-top-155 {
        padding-top: 155px;
    }
    .padding-xs-bottom-155 {
        padding-bottom: 155px;
    }
    .padding-xs-left-155 {
        padding-left: 155px;
    }
    .padding-xs-right-155 {
        padding-right: 155px;
    }
}
@media (min-width: 768px) {
    .padding-sm-155 {
        padding: 155px;
    }
    .padding-sm-top-155 {
        padding-top: 155px;
    }
    .padding-sm-bottom-155 {
        padding-bottom: 155px;
    }
    .padding-sm-left-155 {
        padding-left: 155px;
    }
    .padding-sm-right-155 {
        padding-right: 155px;
    }
}
@media (min-width: 992px) {
    .padding-md-155 {
        padding: 155px;
    }
    .padding-md-top-155 {
        padding-top: 155px;
    }
    .padding-md-bottom-155 {
        padding-bottom: 155px;
    }
    .padding-md-left-155 {
        padding-left: 155px;
    }
    .padding-md-right-155 {
        padding-right: 155px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-155 {
        padding: 155px;
    }
    .padding-lg-top-155 {
        padding-top: 155px;
    }
    .padding-lg-bottom-155 {
        padding-bottom: 155px;
    }
    .padding-lg-left-155 {
        padding-left: 155px;
    }
    .padding-lg-right-155 {
        padding-right: 155px;
    }
}
.padding-160 {
    padding: 160px;
}
.padding-top-160 {
    padding-top: 160px;
}
.padding-bottom-160 {
    padding-bottom: 160px;
}
.padding-left-160 {
    padding-left: 160px;
}
.padding-right-160 {
    padding-right: 160px;
}
@media (max-width: 768px) {
    .padding-xs-160 {
        padding: 160px;
    }
    .padding-xs-top-160 {
        padding-top: 160px;
    }
    .padding-xs-bottom-160 {
        padding-bottom: 160px;
    }
    .padding-xs-left-160 {
        padding-left: 160px;
    }
    .padding-xs-right-160 {
        padding-right: 160px;
    }
}
@media (min-width: 768px) {
    .padding-sm-160 {
        padding: 160px;
    }
    .padding-sm-top-160 {
        padding-top: 160px;
    }
    .padding-sm-bottom-160 {
        padding-bottom: 160px;
    }
    .padding-sm-left-160 {
        padding-left: 160px;
    }
    .padding-sm-right-160 {
        padding-right: 160px;
    }
}
@media (min-width: 992px) {
    .padding-md-160 {
        padding: 160px;
    }
    .padding-md-top-160 {
        padding-top: 160px;
    }
    .padding-md-bottom-160 {
        padding-bottom: 160px;
    }
    .padding-md-left-160 {
        padding-left: 160px;
    }
    .padding-md-right-160 {
        padding-right: 160px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-160 {
        padding: 160px;
    }
    .padding-lg-top-160 {
        padding-top: 160px;
    }
    .padding-lg-bottom-160 {
        padding-bottom: 160px;
    }
    .padding-lg-left-160 {
        padding-left: 160px;
    }
    .padding-lg-right-160 {
        padding-right: 160px;
    }
}
.padding-165 {
    padding: 165px;
}
.padding-top-165 {
    padding-top: 165px;
}
.padding-bottom-165 {
    padding-bottom: 165px;
}
.padding-left-165 {
    padding-left: 165px;
}
.padding-right-165 {
    padding-right: 165px;
}
@media (max-width: 768px) {
    .padding-xs-165 {
        padding: 165px;
    }
    .padding-xs-top-165 {
        padding-top: 165px;
    }
    .padding-xs-bottom-165 {
        padding-bottom: 165px;
    }
    .padding-xs-left-165 {
        padding-left: 165px;
    }
    .padding-xs-right-165 {
        padding-right: 165px;
    }
}
@media (min-width: 768px) {
    .padding-sm-165 {
        padding: 165px;
    }
    .padding-sm-top-165 {
        padding-top: 165px;
    }
    .padding-sm-bottom-165 {
        padding-bottom: 165px;
    }
    .padding-sm-left-165 {
        padding-left: 165px;
    }
    .padding-sm-right-165 {
        padding-right: 165px;
    }
}
@media (min-width: 992px) {
    .padding-md-165 {
        padding: 165px;
    }
    .padding-md-top-165 {
        padding-top: 165px;
    }
    .padding-md-bottom-165 {
        padding-bottom: 165px;
    }
    .padding-md-left-165 {
        padding-left: 165px;
    }
    .padding-md-right-165 {
        padding-right: 165px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-165 {
        padding: 165px;
    }
    .padding-lg-top-165 {
        padding-top: 165px;
    }
    .padding-lg-bottom-165 {
        padding-bottom: 165px;
    }
    .padding-lg-left-165 {
        padding-left: 165px;
    }
    .padding-lg-right-165 {
        padding-right: 165px;
    }
}
.padding-170 {
    padding: 170px;
}
.padding-top-170 {
    padding-top: 170px;
}
.padding-bottom-170 {
    padding-bottom: 170px;
}
.padding-left-170 {
    padding-left: 170px;
}
.padding-right-170 {
    padding-right: 170px;
}
@media (max-width: 768px) {
    .padding-xs-170 {
        padding: 170px;
    }
    .padding-xs-top-170 {
        padding-top: 170px;
    }
    .padding-xs-bottom-170 {
        padding-bottom: 170px;
    }
    .padding-xs-left-170 {
        padding-left: 170px;
    }
    .padding-xs-right-170 {
        padding-right: 170px;
    }
}
@media (min-width: 768px) {
    .padding-sm-170 {
        padding: 170px;
    }
    .padding-sm-top-170 {
        padding-top: 170px;
    }
    .padding-sm-bottom-170 {
        padding-bottom: 170px;
    }
    .padding-sm-left-170 {
        padding-left: 170px;
    }
    .padding-sm-right-170 {
        padding-right: 170px;
    }
}
@media (min-width: 992px) {
    .padding-md-170 {
        padding: 170px;
    }
    .padding-md-top-170 {
        padding-top: 170px;
    }
    .padding-md-bottom-170 {
        padding-bottom: 170px;
    }
    .padding-md-left-170 {
        padding-left: 170px;
    }
    .padding-md-right-170 {
        padding-right: 170px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-170 {
        padding: 170px;
    }
    .padding-lg-top-170 {
        padding-top: 170px;
    }
    .padding-lg-bottom-170 {
        padding-bottom: 170px;
    }
    .padding-lg-left-170 {
        padding-left: 170px;
    }
    .padding-lg-right-170 {
        padding-right: 170px;
    }
}
.padding-175 {
    padding: 175px;
}
.padding-top-175 {
    padding-top: 175px;
}
.padding-bottom-175 {
    padding-bottom: 175px;
}
.padding-left-175 {
    padding-left: 175px;
}
.padding-right-175 {
    padding-right: 175px;
}
@media (max-width: 768px) {
    .padding-xs-175 {
        padding: 175px;
    }
    .padding-xs-top-175 {
        padding-top: 175px;
    }
    .padding-xs-bottom-175 {
        padding-bottom: 175px;
    }
    .padding-xs-left-175 {
        padding-left: 175px;
    }
    .padding-xs-right-175 {
        padding-right: 175px;
    }
}
@media (min-width: 768px) {
    .padding-sm-175 {
        padding: 175px;
    }
    .padding-sm-top-175 {
        padding-top: 175px;
    }
    .padding-sm-bottom-175 {
        padding-bottom: 175px;
    }
    .padding-sm-left-175 {
        padding-left: 175px;
    }
    .padding-sm-right-175 {
        padding-right: 175px;
    }
}
@media (min-width: 992px) {
    .padding-md-175 {
        padding: 175px;
    }
    .padding-md-top-175 {
        padding-top: 175px;
    }
    .padding-md-bottom-175 {
        padding-bottom: 175px;
    }
    .padding-md-left-175 {
        padding-left: 175px;
    }
    .padding-md-right-175 {
        padding-right: 175px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-175 {
        padding: 175px;
    }
    .padding-lg-top-175 {
        padding-top: 175px;
    }
    .padding-lg-bottom-175 {
        padding-bottom: 175px;
    }
    .padding-lg-left-175 {
        padding-left: 175px;
    }
    .padding-lg-right-175 {
        padding-right: 175px;
    }
}
.padding-180 {
    padding: 180px;
}
.padding-top-180 {
    padding-top: 180px;
}
.padding-bottom-180 {
    padding-bottom: 180px;
}
.padding-left-180 {
    padding-left: 180px;
}
.padding-right-180 {
    padding-right: 180px;
}
@media (max-width: 768px) {
    .padding-xs-180 {
        padding: 180px;
    }
    .padding-xs-top-180 {
        padding-top: 180px;
    }
    .padding-xs-bottom-180 {
        padding-bottom: 180px;
    }
    .padding-xs-left-180 {
        padding-left: 180px;
    }
    .padding-xs-right-180 {
        padding-right: 180px;
    }
}
@media (min-width: 768px) {
    .padding-sm-180 {
        padding: 180px;
    }
    .padding-sm-top-180 {
        padding-top: 180px;
    }
    .padding-sm-bottom-180 {
        padding-bottom: 180px;
    }
    .padding-sm-left-180 {
        padding-left: 180px;
    }
    .padding-sm-right-180 {
        padding-right: 180px;
    }
}
@media (min-width: 992px) {
    .padding-md-180 {
        padding: 180px;
    }
    .padding-md-top-180 {
        padding-top: 180px;
    }
    .padding-md-bottom-180 {
        padding-bottom: 180px;
    }
    .padding-md-left-180 {
        padding-left: 180px;
    }
    .padding-md-right-180 {
        padding-right: 180px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-180 {
        padding: 180px;
    }
    .padding-lg-top-180 {
        padding-top: 180px;
    }
    .padding-lg-bottom-180 {
        padding-bottom: 180px;
    }
    .padding-lg-left-180 {
        padding-left: 180px;
    }
    .padding-lg-right-180 {
        padding-right: 180px;
    }
}
.padding-185 {
    padding: 185px;
}
.padding-top-185 {
    padding-top: 185px;
}
.padding-bottom-185 {
    padding-bottom: 185px;
}
.padding-left-185 {
    padding-left: 185px;
}
.padding-right-185 {
    padding-right: 185px;
}
@media (max-width: 768px) {
    .padding-xs-185 {
        padding: 185px;
    }
    .padding-xs-top-185 {
        padding-top: 185px;
    }
    .padding-xs-bottom-185 {
        padding-bottom: 185px;
    }
    .padding-xs-left-185 {
        padding-left: 185px;
    }
    .padding-xs-right-185 {
        padding-right: 185px;
    }
}
@media (min-width: 768px) {
    .padding-sm-185 {
        padding: 185px;
    }
    .padding-sm-top-185 {
        padding-top: 185px;
    }
    .padding-sm-bottom-185 {
        padding-bottom: 185px;
    }
    .padding-sm-left-185 {
        padding-left: 185px;
    }
    .padding-sm-right-185 {
        padding-right: 185px;
    }
}
@media (min-width: 992px) {
    .padding-md-185 {
        padding: 185px;
    }
    .padding-md-top-185 {
        padding-top: 185px;
    }
    .padding-md-bottom-185 {
        padding-bottom: 185px;
    }
    .padding-md-left-185 {
        padding-left: 185px;
    }
    .padding-md-right-185 {
        padding-right: 185px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-185 {
        padding: 185px;
    }
    .padding-lg-top-185 {
        padding-top: 185px;
    }
    .padding-lg-bottom-185 {
        padding-bottom: 185px;
    }
    .padding-lg-left-185 {
        padding-left: 185px;
    }
    .padding-lg-right-185 {
        padding-right: 185px;
    }
}
.padding-190 {
    padding: 190px;
}
.padding-top-190 {
    padding-top: 190px;
}
.padding-bottom-190 {
    padding-bottom: 190px;
}
.padding-left-190 {
    padding-left: 190px;
}
.padding-right-190 {
    padding-right: 190px;
}
@media (max-width: 768px) {
    .padding-xs-190 {
        padding: 190px;
    }
    .padding-xs-top-190 {
        padding-top: 190px;
    }
    .padding-xs-bottom-190 {
        padding-bottom: 190px;
    }
    .padding-xs-left-190 {
        padding-left: 190px;
    }
    .padding-xs-right-190 {
        padding-right: 190px;
    }
}
@media (min-width: 768px) {
    .padding-sm-190 {
        padding: 190px;
    }
    .padding-sm-top-190 {
        padding-top: 190px;
    }
    .padding-sm-bottom-190 {
        padding-bottom: 190px;
    }
    .padding-sm-left-190 {
        padding-left: 190px;
    }
    .padding-sm-right-190 {
        padding-right: 190px;
    }
}
@media (min-width: 992px) {
    .padding-md-190 {
        padding: 190px;
    }
    .padding-md-top-190 {
        padding-top: 190px;
    }
    .padding-md-bottom-190 {
        padding-bottom: 190px;
    }
    .padding-md-left-190 {
        padding-left: 190px;
    }
    .padding-md-right-190 {
        padding-right: 190px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-190 {
        padding: 190px;
    }
    .padding-lg-top-190 {
        padding-top: 190px;
    }
    .padding-lg-bottom-190 {
        padding-bottom: 190px;
    }
    .padding-lg-left-190 {
        padding-left: 190px;
    }
    .padding-lg-right-190 {
        padding-right: 190px;
    }
}
.padding-195 {
    padding: 195px;
}
.padding-top-195 {
    padding-top: 195px;
}
.padding-bottom-195 {
    padding-bottom: 195px;
}
.padding-left-195 {
    padding-left: 195px;
}
.padding-right-195 {
    padding-right: 195px;
}
@media (max-width: 768px) {
    .padding-xs-195 {
        padding: 195px;
    }
    .padding-xs-top-195 {
        padding-top: 195px;
    }
    .padding-xs-bottom-195 {
        padding-bottom: 195px;
    }
    .padding-xs-left-195 {
        padding-left: 195px;
    }
    .padding-xs-right-195 {
        padding-right: 195px;
    }
}
@media (min-width: 768px) {
    .padding-sm-195 {
        padding: 195px;
    }
    .padding-sm-top-195 {
        padding-top: 195px;
    }
    .padding-sm-bottom-195 {
        padding-bottom: 195px;
    }
    .padding-sm-left-195 {
        padding-left: 195px;
    }
    .padding-sm-right-195 {
        padding-right: 195px;
    }
}
@media (min-width: 992px) {
    .padding-md-195 {
        padding: 195px;
    }
    .padding-md-top-195 {
        padding-top: 195px;
    }
    .padding-md-bottom-195 {
        padding-bottom: 195px;
    }
    .padding-md-left-195 {
        padding-left: 195px;
    }
    .padding-md-right-195 {
        padding-right: 195px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-195 {
        padding: 195px;
    }
    .padding-lg-top-195 {
        padding-top: 195px;
    }
    .padding-lg-bottom-195 {
        padding-bottom: 195px;
    }
    .padding-lg-left-195 {
        padding-left: 195px;
    }
    .padding-lg-right-195 {
        padding-right: 195px;
    }
}
.padding-200 {
    padding: 200px;
}
.padding-top-200 {
    padding-top: 200px;
}
.padding-bottom-200 {
    padding-bottom: 200px;
}
.padding-left-200 {
    padding-left: 200px;
}
.padding-right-200 {
    padding-right: 200px;
}
@media (max-width: 768px) {
    .padding-xs-200 {
        padding: 200px;
    }
    .padding-xs-top-200 {
        padding-top: 200px;
    }
    .padding-xs-bottom-200 {
        padding-bottom: 200px;
    }
    .padding-xs-left-200 {
        padding-left: 200px;
    }
    .padding-xs-right-200 {
        padding-right: 200px;
    }
}
@media (min-width: 768px) {
    .padding-sm-200 {
        padding: 200px;
    }
    .padding-sm-top-200 {
        padding-top: 200px;
    }
    .padding-sm-bottom-200 {
        padding-bottom: 200px;
    }
    .padding-sm-left-200 {
        padding-left: 200px;
    }
    .padding-sm-right-200 {
        padding-right: 200px;
    }
}
@media (min-width: 992px) {
    .padding-md-200 {
        padding: 200px;
    }
    .padding-md-top-200 {
        padding-top: 200px;
    }
    .padding-md-bottom-200 {
        padding-bottom: 200px;
    }
    .padding-md-left-200 {
        padding-left: 200px;
    }
    .padding-md-right-200 {
        padding-right: 200px;
    }
}
@media (min-width: 1200px) {
    .padding-lg-200 {
        padding: 200px;
    }
    .padding-lg-top-200 {
        padding-top: 200px;
    }
    .padding-lg-bottom-200 {
        padding-bottom: 200px;
    }
    .padding-lg-left-200 {
        padding-left: 200px;
    }
    .padding-lg-right-200 {
        padding-right: 200px;
    }
}
.padding-top-5 {
    padding-top: 5px;
}
.padding-bottom-5 {
    padding-bottom: 5px;
}
.padding-top-5-ip {
    padding-top: 5px !important;
}
.padding-bottom-5-ip {
    padding-bottom: 5px !important;
}
.no-lineheight {
    line-height: 0;
}
.lineheight-2 {
    line-height: 0.2em;
}
.lineheight-4 {
    line-height: 0.4em;
}
.lineheight-6 {
    line-height: 0.6em;
}
.lineheight-8 {
    line-height: 0.8em;
}
.lineheight-10 {
    line-height: 1em;
}
.lineheight-12 {
    line-height: 1.2em;
}
.lineheight-14 {
    line-height: 1.4em;
}
.lineheight-16 {
    line-height: 1.6em;
}
.lineheight-18 {
    line-height: 1.8em;
}
.lineheight-20 {
    line-height: 2em;
}
.font-base,
.normal {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.klavika,
.font-heading {
    font-family: "klavika", sans-serif;
}
.text-bold {
    font-weight: 700;
}
.text-medium,
.text-semibold {
    font-weight: 500;
}
.text-black {
    font-weight: 800;
}
.text-regular {
    font-weight: normal;
}
.text-light {
    font-weight: 300;
}
.text-size-normal {
    font-size: 13px;
}
.special-paragraph {
    line-height: 24px;
}
.text-underline {
    text-decoration: underline;
}
.text-italic {
    font-style: italic;
}
.capital {
    text-transform: capitalize;
}
.uppercase {
    text-transform: uppercase;
}
.lowercase {
    text-transform: lowercase;
}
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.text-size-12 {
    font-size: 12px;
}
.text-size-13 {
    font-size: 13px;
}
.text-size-14 {
    font-size: 14px;
}
.text-size-15 {
    font-size: 15px;
}
.text-size-16 {
    font-size: 16px;
}
.text-size-17 {
    font-size: 17px;
}
.text-size-18 {
    font-size: 18px;
}
.text-size-20 {
    font-size: 20px;
}
.text-size-22 {
    font-size: 22px;
}
.text-size-24 {
    font-size: 24px;
}
.text-size-25 {
    font-size: 25px;
}
.text-size-27 {
    font-size: 27px;
}
.text-size-30 {
    font-size: 30px;
}
.text-size-35 {
    font-size: 35px;
}
.text-size-45 {
    font-size: 45px;
}
.text-xxl {
    font-size: 42px;
    line-height: 45px;
}
.text-xl {
    font-size: 35px;
    line-height: 35px;
}
.line-height-standard {
    line-height: 1.42857143;
}
.text-small {
    font-size: 13px;
}
.h1 {
    font-size: 32px;
}
.h2 {
    font-size: 28px;
}
.h2-h3 {
    font-size: 23px;
}
.h3 {
    font-size: 20px;
}
.h4 {
    font-size: 18px;
}
.h5 {
    font-size: 16px;
}
.h6 {
    font-size: 14px;
}
.lead {
    font-size: 18px;
    font-weight: 400;
}
@media (max-width: 767px) {
    .text-xs-block {
        display: block;
    }
    .text-xs-left {
        text-align: left;
    }
    .text-xs-center {
        text-align: center;
    }
}
.txt-align-lt {
    text-align: left;
}
.txt-align-ct {
    text-align: center;
}
.txt-align-rt {
    text-align: right;
}
.disabled {
    color: #c3c3c3;
}
.line-through {
    text-decoration: line-through;
}
.txt-shadow {
    -webkit-text-shadow: 0 0 3px black 50;
    -moz-text-shadow: 0 0 3px black 50;
    text-shadow: 0 0 3px black 50;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
a.hover-bold {
    -webkit-transition: 300ms color ease 0ms;
    -moz-transition: 300ms color ease 0ms;
    -o-transition: 300ms color ease 0ms;
    transition: 300ms color ease 0ms;
}
a.hover-bold.selected,
a.hover-bold:hover {
    color: var(--PRIMARY);
}
a.hover-bold.selected span,
a.hover-bold:hover span {
    color: var(--PRIMARY);
}
a.hover-bold.selected {
    font-weight: 600;
}
.disp-block {
    display: block;
}
@media (max-width: 767px) {
    .disp-full {
        width: 100% !important;
    }
}
.disp-inline {
    display: inline-block;
}
.disp-table {
    display: table;
}
.disp-table.separate {
    border-spacing: 20px;
    border-collapse: separate;
}
.disp-table > div,
.disp-table > li,
.disp-table > a,
.disp-table > figure,
.disp-table > input,
.disp-table > button,
.disp-table > label {
    display: table-cell;
}
@media (max-width: 767px) {
    .disp-table.xs-unset-table {
        display: block;
    }
    .disp-table.xs-unset-table > div,
    .disp-table.xs-unset-table > li,
    .disp-table.xs-unset-table > a,
    .disp-table.xs-unset-table > figure,
    .disp-table.xs-unset-table > input,
    .disp-table.xs-unset-table > button,
    .disp-table.xs-unset-table > label {
        padding: 10px 0;
        display: block;
    }
    .disp-table.xs-unset-table > div:first-child,
    .disp-table.xs-unset-table > li:first-child,
    .disp-table.xs-unset-table > a:first-child,
    .disp-table.xs-unset-table > figure:first-child,
    .disp-table.xs-unset-table > input:first-child,
    .disp-table.xs-unset-table > button:first-child,
    .disp-table.xs-unset-table > label:first-child {
        padding-top: 0;
    }
    .disp-table.xs-unset-table > div:last-child,
    .disp-table.xs-unset-table > li:last-child,
    .disp-table.xs-unset-table > a:last-child,
    .disp-table.xs-unset-table > figure:last-child,
    .disp-table.xs-unset-table > input:last-child,
    .disp-table.xs-unset-table > button:last-child,
    .disp-table.xs-unset-table > label:last-child {
        padding-bottom: 0;
    }
}
.disp-table-row {
    width: 100%;
    height: 100%;
    display: table;
}
.disp-table-row.separate {
    border-spacing: 20px;
    border-collapse: separate;
}
.disp-table-row > div,
.disp-table-row > li,
.disp-table-row > a,
.disp-table-row > figure,
.disp-table-row > input,
.disp-table-row > button,
.disp-table-row > label {
    display: table-row;
}
.disp-table-row > div > div,
.disp-table-row > li > div,
.disp-table-row > a > div,
.disp-table-row > figure > div,
.disp-table-row > input > div,
.disp-table-row > button > div,
.disp-table-row > label > div,
.disp-table-row > div > li,
.disp-table-row > li > li,
.disp-table-row > a > li,
.disp-table-row > figure > li,
.disp-table-row > input > li,
.disp-table-row > button > li,
.disp-table-row > label > li,
.disp-table-row > div > a,
.disp-table-row > li > a,
.disp-table-row > a > a,
.disp-table-row > figure > a,
.disp-table-row > input > a,
.disp-table-row > button > a,
.disp-table-row > label > a,
.disp-table-row > div > figure,
.disp-table-row > li > figure,
.disp-table-row > a > figure,
.disp-table-row > figure > figure,
.disp-table-row > input > figure,
.disp-table-row > button > figure,
.disp-table-row > label > figure {
    display: table-cell;
}
@media (max-width: 767px) {
    .disp-table-row.xs-unset-table-row {
        display: block;
    }
    .disp-table-row.xs-unset-table-row > div,
    .disp-table-row.xs-unset-table-row > li,
    .disp-table-row.xs-unset-table-row > a,
    .disp-table-row.xs-unset-table-row > figure,
    .disp-table-row.xs-unset-table-row > input,
    .disp-table-row.xs-unset-table-row > button,
    .disp-table-row.xs-unset-table-row > label {
        display: block;
    }
    .disp-table-row.xs-unset-table-row > div > div,
    .disp-table-row.xs-unset-table-row > li > div,
    .disp-table-row.xs-unset-table-row > a > div,
    .disp-table-row.xs-unset-table-row > figure > div,
    .disp-table-row.xs-unset-table-row > input > div,
    .disp-table-row.xs-unset-table-row > button > div,
    .disp-table-row.xs-unset-table-row > label > div,
    .disp-table-row.xs-unset-table-row > div > li,
    .disp-table-row.xs-unset-table-row > li > li,
    .disp-table-row.xs-unset-table-row > a > li,
    .disp-table-row.xs-unset-table-row > figure > li,
    .disp-table-row.xs-unset-table-row > input > li,
    .disp-table-row.xs-unset-table-row > button > li,
    .disp-table-row.xs-unset-table-row > label > li,
    .disp-table-row.xs-unset-table-row > div > a,
    .disp-table-row.xs-unset-table-row > li > a,
    .disp-table-row.xs-unset-table-row > a > a,
    .disp-table-row.xs-unset-table-row > figure > a,
    .disp-table-row.xs-unset-table-row > input > a,
    .disp-table-row.xs-unset-table-row > button > a,
    .disp-table-row.xs-unset-table-row > label > a,
    .disp-table-row.xs-unset-table-row > div > figure,
    .disp-table-row.xs-unset-table-row > li > figure,
    .disp-table-row.xs-unset-table-row > a > figure,
    .disp-table-row.xs-unset-table-row > figure > figure,
    .disp-table-row.xs-unset-table-row > input > figure,
    .disp-table-row.xs-unset-table-row > button > figure,
    .disp-table-row.xs-unset-table-row > label > figure,
    .disp-table-row.xs-unset-table-row > div > input,
    .disp-table-row.xs-unset-table-row > li > input,
    .disp-table-row.xs-unset-table-row > a > input,
    .disp-table-row.xs-unset-table-row > figure > input,
    .disp-table-row.xs-unset-table-row > input > input,
    .disp-table-row.xs-unset-table-row > button > input,
    .disp-table-row.xs-unset-table-row > label > input,
    .disp-table-row.xs-unset-table-row > div > button,
    .disp-table-row.xs-unset-table-row > li > button,
    .disp-table-row.xs-unset-table-row > a > button,
    .disp-table-row.xs-unset-table-row > figure > button,
    .disp-table-row.xs-unset-table-row > input > button,
    .disp-table-row.xs-unset-table-row > button > button,
    .disp-table-row.xs-unset-table-row > label > button,
    .disp-table-row.xs-unset-table-row > div > label,
    .disp-table-row.xs-unset-table-row > li > label,
    .disp-table-row.xs-unset-table-row > a > label,
    .disp-table-row.xs-unset-table-row > figure > label,
    .disp-table-row.xs-unset-table-row > input > label,
    .disp-table-row.xs-unset-table-row > button > label,
    .disp-table-row.xs-unset-table-row > label > label {
        padding: 10px 0;
        display: block;
    }
    .disp-table-row.xs-unset-table-row > div > div:first-child,
    .disp-table-row.xs-unset-table-row > li > div:first-child,
    .disp-table-row.xs-unset-table-row > a > div:first-child,
    .disp-table-row.xs-unset-table-row > figure > div:first-child,
    .disp-table-row.xs-unset-table-row > input > div:first-child,
    .disp-table-row.xs-unset-table-row > button > div:first-child,
    .disp-table-row.xs-unset-table-row > label > div:first-child,
    .disp-table-row.xs-unset-table-row > div > li:first-child,
    .disp-table-row.xs-unset-table-row > li > li:first-child,
    .disp-table-row.xs-unset-table-row > a > li:first-child,
    .disp-table-row.xs-unset-table-row > figure > li:first-child,
    .disp-table-row.xs-unset-table-row > input > li:first-child,
    .disp-table-row.xs-unset-table-row > button > li:first-child,
    .disp-table-row.xs-unset-table-row > label > li:first-child,
    .disp-table-row.xs-unset-table-row > div > a:first-child,
    .disp-table-row.xs-unset-table-row > li > a:first-child,
    .disp-table-row.xs-unset-table-row > a > a:first-child,
    .disp-table-row.xs-unset-table-row > figure > a:first-child,
    .disp-table-row.xs-unset-table-row > input > a:first-child,
    .disp-table-row.xs-unset-table-row > button > a:first-child,
    .disp-table-row.xs-unset-table-row > label > a:first-child,
    .disp-table-row.xs-unset-table-row > div > figure:first-child,
    .disp-table-row.xs-unset-table-row > li > figure:first-child,
    .disp-table-row.xs-unset-table-row > a > figure:first-child,
    .disp-table-row.xs-unset-table-row > figure > figure:first-child,
    .disp-table-row.xs-unset-table-row > input > figure:first-child,
    .disp-table-row.xs-unset-table-row > button > figure:first-child,
    .disp-table-row.xs-unset-table-row > label > figure:first-child,
    .disp-table-row.xs-unset-table-row > div > input:first-child,
    .disp-table-row.xs-unset-table-row > li > input:first-child,
    .disp-table-row.xs-unset-table-row > a > input:first-child,
    .disp-table-row.xs-unset-table-row > figure > input:first-child,
    .disp-table-row.xs-unset-table-row > input > input:first-child,
    .disp-table-row.xs-unset-table-row > button > input:first-child,
    .disp-table-row.xs-unset-table-row > label > input:first-child,
    .disp-table-row.xs-unset-table-row > div > button:first-child,
    .disp-table-row.xs-unset-table-row > li > button:first-child,
    .disp-table-row.xs-unset-table-row > a > button:first-child,
    .disp-table-row.xs-unset-table-row > figure > button:first-child,
    .disp-table-row.xs-unset-table-row > input > button:first-child,
    .disp-table-row.xs-unset-table-row > button > button:first-child,
    .disp-table-row.xs-unset-table-row > label > button:first-child,
    .disp-table-row.xs-unset-table-row > div > label:first-child,
    .disp-table-row.xs-unset-table-row > li > label:first-child,
    .disp-table-row.xs-unset-table-row > a > label:first-child,
    .disp-table-row.xs-unset-table-row > figure > label:first-child,
    .disp-table-row.xs-unset-table-row > input > label:first-child,
    .disp-table-row.xs-unset-table-row > button > label:first-child,
    .disp-table-row.xs-unset-table-row > label > label:first-child {
        padding-top: 0;
    }
    .disp-table-row.xs-unset-table-row > div > div:last-child,
    .disp-table-row.xs-unset-table-row > li > div:last-child,
    .disp-table-row.xs-unset-table-row > a > div:last-child,
    .disp-table-row.xs-unset-table-row > figure > div:last-child,
    .disp-table-row.xs-unset-table-row > input > div:last-child,
    .disp-table-row.xs-unset-table-row > button > div:last-child,
    .disp-table-row.xs-unset-table-row > label > div:last-child,
    .disp-table-row.xs-unset-table-row > div > li:last-child,
    .disp-table-row.xs-unset-table-row > li > li:last-child,
    .disp-table-row.xs-unset-table-row > a > li:last-child,
    .disp-table-row.xs-unset-table-row > figure > li:last-child,
    .disp-table-row.xs-unset-table-row > input > li:last-child,
    .disp-table-row.xs-unset-table-row > button > li:last-child,
    .disp-table-row.xs-unset-table-row > label > li:last-child,
    .disp-table-row.xs-unset-table-row > div > a:last-child,
    .disp-table-row.xs-unset-table-row > li > a:last-child,
    .disp-table-row.xs-unset-table-row > a > a:last-child,
    .disp-table-row.xs-unset-table-row > figure > a:last-child,
    .disp-table-row.xs-unset-table-row > input > a:last-child,
    .disp-table-row.xs-unset-table-row > button > a:last-child,
    .disp-table-row.xs-unset-table-row > label > a:last-child,
    .disp-table-row.xs-unset-table-row > div > figure:last-child,
    .disp-table-row.xs-unset-table-row > li > figure:last-child,
    .disp-table-row.xs-unset-table-row > a > figure:last-child,
    .disp-table-row.xs-unset-table-row > figure > figure:last-child,
    .disp-table-row.xs-unset-table-row > input > figure:last-child,
    .disp-table-row.xs-unset-table-row > button > figure:last-child,
    .disp-table-row.xs-unset-table-row > label > figure:last-child,
    .disp-table-row.xs-unset-table-row > div > input:last-child,
    .disp-table-row.xs-unset-table-row > li > input:last-child,
    .disp-table-row.xs-unset-table-row > a > input:last-child,
    .disp-table-row.xs-unset-table-row > figure > input:last-child,
    .disp-table-row.xs-unset-table-row > input > input:last-child,
    .disp-table-row.xs-unset-table-row > button > input:last-child,
    .disp-table-row.xs-unset-table-row > label > input:last-child,
    .disp-table-row.xs-unset-table-row > div > button:last-child,
    .disp-table-row.xs-unset-table-row > li > button:last-child,
    .disp-table-row.xs-unset-table-row > a > button:last-child,
    .disp-table-row.xs-unset-table-row > figure > button:last-child,
    .disp-table-row.xs-unset-table-row > input > button:last-child,
    .disp-table-row.xs-unset-table-row > button > button:last-child,
    .disp-table-row.xs-unset-table-row > label > button:last-child,
    .disp-table-row.xs-unset-table-row > div > label:last-child,
    .disp-table-row.xs-unset-table-row > li > label:last-child,
    .disp-table-row.xs-unset-table-row > a > label:last-child,
    .disp-table-row.xs-unset-table-row > figure > label:last-child,
    .disp-table-row.xs-unset-table-row > input > label:last-child,
    .disp-table-row.xs-unset-table-row > button > label:last-child,
    .disp-table-row.xs-unset-table-row > label > label:last-child {
        padding-bottom: 0;
    }
}
#footer {
    padding: 10px;
    border-top: 1px solid #c3c3c3;
    background-color: #f6f6f6;
}
@media (max-width: 767px) {
    #footer .container {
        text-align: center;
    }
}
@media (min-width: 768px) {
    #footer {
        padding: 20px;
    }
    #main-container {
        padding-bottom: 70px;
    }
    #footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 70px;
    }
}
@media (max-width: 767px) {
    #footer {
        padding-top: 0;
        padding-bottom: 15px;
    }
    .mobile-footer-menu {
        height: 70px;
        border-top: 1px solid #c3c3c3;
    }
    .mobile-footer-menu ul {
        height: 100%;
    }
    .mobile-footer-menu ul li a {
        line-height: 25px;
    }
}
#header {
    padding: 15px 0;
    background: #f6f6f6;
    border-bottom: 1px solid #c3c3c3;
}
@media (max-width: 767px) {
    #header {
        margin-bottom: 15px;
    }
    #header #user-menu {
        display: none;
    }
    .navbar-toggle {
        top: 5px;
        left: 15px;
        padding: 2px 0 !important;
    }
    #wrapper {
        padding-top: 80px;
    }
}
@media (max-width: 991px) {
    #wrapper {
        padding-top: 96px;
    }
    #header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    #header > .container {
        position: relative;
        padding-left: 50px;
    }
    .navbar-toggle {
        position: absolute;
        display: block;
        margin: 0;
        padding: 4px 0;
    }
    .navbar-toggle .icon-bar {
        width: 19px;
        background-color: #717171;
        height: 2px;
    }
    .navbar-toggle .icon-bar + .icon-bar {
        margin-top: 5px;
    }
}
@media (min-width: 768px) {
    #header {
        background: #f6f6f6;
        padding: 25px;
        border-bottom: 1px solid #c3c3c3;
    }
    .dashboard #header .container {
        position: relative;
    }
    .navbar-toggle {
        top: 5px;
        left: 0;
    }
}
@media (min-width: 992px) {
    .navbar-toggle {
        top: 5px;
        left: 0;
    }
}
@media (max-width: 767px) {
    #wrapper {
        padding-top: 64px;
    }
}
.browserupgrade {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    background-color: #ef351d;
    color: #ffffff;
    font-weight: bold;
    z-index: 999999;
}
.browserupgrade a {
    color: #3f3f3f;
}
@media (max-width: 991px) {
    #wrapper {
        background-color: #ffffff;
    }
}
@media (min-width: 768px) {
    html,
    body {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    #main-col {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media (min-width: 768px) {
    #wrapper {
        min-height: 100%;
        position: relative;
        z-index: 2;
        overflow: hidden;
    }
}
@media (min-width: 992px) {
    #main-col {
        border-left: 1px solid #c3c3c3;
    }
    #main-col.full-width {
        border-left: none;
    }
}
#sidebar-left .nav a {
    padding-left: 50px;
}
#sidebar-left .nav a:hover,
#sidebar-left .nav a.active {
    color: var(--PRIMARY);
}
#sidebar-nav li + li {
    margin-top: 0;
}
#sidebar-nav li > ul {
    display: none;
}
#sidebar-nav li > a,
#sidebar-nav li > ul {
    margin-bottom: 10px;
}
#sidebar-nav > li.active > ul,
#sidebar-nav > li.open > ul {
    display: block;
    background-color: #f6f6f6;
}
#sidebar-nav > li a.active {
    border-right: 3px solid var(--PRIMARY);
}
@media (max-width: 991px) {
    #menu {
        border-right: 1px solid #c3c3c3;
    }
    #sidebar-left {
        padding-left: 0;
        padding-right: 0;
    }
    #sidebar-left .nav a {
        padding-left: 60px;
    }
    #sidebar-left .nav a .icon {
        left: 15px;
    }
    #main-container #sidebar-left {
        display: none;
    }
}
@media (min-width: 992px) {
    #sidebar-nav {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #sidebar-left {
        border-right: 1px solid #c3c3c3;
        padding-right: 0;
        margin-right: -1px;
        margin-bottom: -3000em;
        padding-bottom: 3000em;
    }
    #menu #sidebar-left {
        display: none;
    }
}
.btn {
    padding: 8px 12px;
    position: relative;
    border-width: 1px;
    text-shadow: none;
    font-family: "klavika", sans-serif;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition:
        300ms color ease 0ms,
        300ms border ease 0ms,
        300ms background ease 0ms;
    -moz-transition:
        300ms color ease 0ms,
        300ms border ease 0ms,
        300ms background ease 0ms;
    -o-transition:
        300ms color ease 0ms,
        300ms border ease 0ms,
        300ms background ease 0ms;
    transition:
        300ms color ease 0ms,
        300ms border ease 0ms,
        300ms background ease 0ms;
}
.btn:active,
.btn.active {
    background-image: none;
}
.btn-white {
    color: #ff6600;
    background-color: #ffffff;
    border-color: transparent;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white:active,
.btn-white.active,
.open > .dropdown-toggle.btn-white {
    color: #ff6600;
    background-color: #e6e6e6;
    border-color: rgba(0, 0, 0, 0);
}
.btn-white:active,
.btn-white.active,
.open > .dropdown-toggle.btn-white {
    background-image: none;
}
.btn-white.disabled,
.btn-white[disabled],
fieldset[disabled] .btn-white,
.btn-white.disabled:hover,
.btn-white[disabled]:hover,
fieldset[disabled] .btn-white:hover,
.btn-white.disabled:focus,
.btn-white[disabled]:focus,
fieldset[disabled] .btn-white:focus,
.btn-white.disabled.focus,
.btn-white[disabled].focus,
fieldset[disabled] .btn-white.focus,
.btn-white.disabled:active,
.btn-white[disabled]:active,
fieldset[disabled] .btn-white:active,
.btn-white.disabled.active,
.btn-white[disabled].active,
fieldset[disabled] .btn-white.active {
    background-color: #ffffff;
    border-color: transparent;
}
.btn-white .badge {
    color: #ffffff;
    background-color: #ff6600;
}
.btn-white.btn-ghost {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}
.btn-white.btn-ghost:hover,
.btn-white.btn-ghost:focus,
.btn-white.btn-ghost:active,
.btn-white.btn-ghost.active,
.open .dropdown-toggle.btn-white.btn-ghost {
    color: #ff6600;
    background-color: #ffffff;
    border-color: #ffffff;
}
.btn-white.btn-ghost:hover.btn-psuedo,
.btn-white.btn-ghost:focus.btn-psuedo,
.btn-white.btn-ghost:active.btn-psuedo,
.btn-white.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-white.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}
.btn-white:hover,
.btn-white:active,
.btn-white:focus {
    background-color: #ffffff;
    color: #3f3f3f;
}
.btn-transparent {
    color: #645e5e;
    background-color: transparent;
    border-color: transparent;
}
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent.focus,
.btn-transparent:active,
.btn-transparent.active,
.open > .dropdown-toggle.btn-transparent {
    color: #645e5e;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
}
.btn-transparent:active,
.btn-transparent.active,
.open > .dropdown-toggle.btn-transparent {
    background-image: none;
}
.btn-transparent.disabled,
.btn-transparent[disabled],
fieldset[disabled] .btn-transparent,
.btn-transparent.disabled:hover,
.btn-transparent[disabled]:hover,
fieldset[disabled] .btn-transparent:hover,
.btn-transparent.disabled:focus,
.btn-transparent[disabled]:focus,
fieldset[disabled] .btn-transparent:focus,
.btn-transparent.disabled.focus,
.btn-transparent[disabled].focus,
fieldset[disabled] .btn-transparent.focus,
.btn-transparent.disabled:active,
.btn-transparent[disabled]:active,
fieldset[disabled] .btn-transparent:active,
.btn-transparent.disabled.active,
.btn-transparent[disabled].active,
fieldset[disabled] .btn-transparent.active {
    background-color: transparent;
    border-color: transparent;
}
.btn-transparent .badge {
    color: transparent;
    background-color: #645e5e;
}
.btn-transparent.btn-ghost {
    background-color: transparent;
    color: transparent;
    border-color: transparent;
}
.btn-transparent.btn-ghost:hover,
.btn-transparent.btn-ghost:focus,
.btn-transparent.btn-ghost:active,
.btn-transparent.btn-ghost.active,
.open .dropdown-toggle.btn-transparent.btn-ghost {
    color: #645e5e;
    background-color: transparent;
    border-color: transparent;
}
.btn-transparent.btn-ghost:hover.btn-psuedo,
.btn-transparent.btn-ghost:focus.btn-psuedo,
.btn-transparent.btn-ghost:active.btn-psuedo,
.btn-transparent.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-transparent.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: transparent;
    border-color: transparent;
}
.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus,
.btn-transparent.active {
    color: #3f3f3f;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn-transparent-mid {
    color: #858484;
    background-color: transparent;
    border-color: transparent;
}
.btn-transparent-mid:hover,
.btn-transparent-mid:focus,
.btn-transparent-mid.focus,
.btn-transparent-mid:active,
.btn-transparent-mid.active,
.open > .dropdown-toggle.btn-transparent-mid {
    color: #858484;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
}
.btn-transparent-mid:active,
.btn-transparent-mid.active,
.open > .dropdown-toggle.btn-transparent-mid {
    background-image: none;
}
.btn-transparent-mid.disabled,
.btn-transparent-mid[disabled],
fieldset[disabled] .btn-transparent-mid,
.btn-transparent-mid.disabled:hover,
.btn-transparent-mid[disabled]:hover,
fieldset[disabled] .btn-transparent-mid:hover,
.btn-transparent-mid.disabled:focus,
.btn-transparent-mid[disabled]:focus,
fieldset[disabled] .btn-transparent-mid:focus,
.btn-transparent-mid.disabled.focus,
.btn-transparent-mid[disabled].focus,
fieldset[disabled] .btn-transparent-mid.focus,
.btn-transparent-mid.disabled:active,
.btn-transparent-mid[disabled]:active,
fieldset[disabled] .btn-transparent-mid:active,
.btn-transparent-mid.disabled.active,
.btn-transparent-mid[disabled].active,
fieldset[disabled] .btn-transparent-mid.active {
    background-color: transparent;
    border-color: transparent;
}
.btn-transparent-mid .badge {
    color: transparent;
    background-color: #858484;
}
.btn-transparent-mid.btn-ghost {
    background-color: transparent;
    color: transparent;
    border-color: transparent;
}
.btn-transparent-mid.btn-ghost:hover,
.btn-transparent-mid.btn-ghost:focus,
.btn-transparent-mid.btn-ghost:active,
.btn-transparent-mid.btn-ghost.active,
.open .dropdown-toggle.btn-transparent-mid.btn-ghost {
    color: #858484;
    background-color: transparent;
    border-color: transparent;
}
.btn-transparent-mid.btn-ghost:hover.btn-psuedo,
.btn-transparent-mid.btn-ghost:focus.btn-psuedo,
.btn-transparent-mid.btn-ghost:active.btn-psuedo,
.btn-transparent-mid.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-transparent-mid.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: transparent;
    border-color: transparent;
}
.btn-transparent-mid:hover,
.btn-transparent-mid:active,
.btn-transparent-mid:focus,
.btn-transparent-mid.active {
    color: var(--PRIMARY);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.btn-gray-light {
    color: white;
    background-color: #c3c3c3;
    border-color: transparent;
}
.btn-gray-light:hover,
.btn-gray-light:focus,
.btn-gray-light.focus,
.btn-gray-light:active,
.btn-gray-light.active,
.open > .dropdown-toggle.btn-gray-light {
    color: white;
    background-color: #aaaaaa;
    border-color: rgba(0, 0, 0, 0);
}
.btn-gray-light:active,
.btn-gray-light.active,
.open > .dropdown-toggle.btn-gray-light {
    background-image: none;
}
.btn-gray-light.disabled,
.btn-gray-light[disabled],
fieldset[disabled] .btn-gray-light,
.btn-gray-light.disabled:hover,
.btn-gray-light[disabled]:hover,
fieldset[disabled] .btn-gray-light:hover,
.btn-gray-light.disabled:focus,
.btn-gray-light[disabled]:focus,
fieldset[disabled] .btn-gray-light:focus,
.btn-gray-light.disabled.focus,
.btn-gray-light[disabled].focus,
fieldset[disabled] .btn-gray-light.focus,
.btn-gray-light.disabled:active,
.btn-gray-light[disabled]:active,
fieldset[disabled] .btn-gray-light:active,
.btn-gray-light.disabled.active,
.btn-gray-light[disabled].active,
fieldset[disabled] .btn-gray-light.active {
    background-color: #c3c3c3;
    border-color: transparent;
}
.btn-gray-light .badge {
    color: #c3c3c3;
    background-color: white;
}
.btn-gray-light.btn-ghost {
    background-color: transparent;
    color: #c3c3c3;
    border-color: #c3c3c3;
}
.btn-gray-light.btn-ghost:hover,
.btn-gray-light.btn-ghost:focus,
.btn-gray-light.btn-ghost:active,
.btn-gray-light.btn-ghost.active,
.open .dropdown-toggle.btn-gray-light.btn-ghost {
    color: white;
    background-color: #c3c3c3;
    border-color: #c3c3c3;
}
.btn-gray-light.btn-ghost:hover.btn-psuedo,
.btn-gray-light.btn-ghost:focus.btn-psuedo,
.btn-gray-light.btn-ghost:active.btn-psuedo,
.btn-gray-light.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-gray-light.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #c3c3c3;
    border-color: #c3c3c3;
}
.btn-gray-light:hover,
.btn-gray-light:active,
.btn-gray-light:focus {
    background-color: #d9d9d9;
    color: #ffffff;
}
.btn-gray {
    color: #d9d9d9;
    background-color: #717171;
    border-color: transparent;
}
.btn-gray:hover,
.btn-gray:focus,
.btn-gray.focus,
.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
    color: #d9d9d9;
    background-color: #585858;
    border-color: rgba(0, 0, 0, 0);
}
.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
    background-image: none;
}
.btn-gray.disabled,
.btn-gray[disabled],
fieldset[disabled] .btn-gray,
.btn-gray.disabled:hover,
.btn-gray[disabled]:hover,
fieldset[disabled] .btn-gray:hover,
.btn-gray.disabled:focus,
.btn-gray[disabled]:focus,
fieldset[disabled] .btn-gray:focus,
.btn-gray.disabled.focus,
.btn-gray[disabled].focus,
fieldset[disabled] .btn-gray.focus,
.btn-gray.disabled:active,
.btn-gray[disabled]:active,
fieldset[disabled] .btn-gray:active,
.btn-gray.disabled.active,
.btn-gray[disabled].active,
fieldset[disabled] .btn-gray.active {
    background-color: #717171;
    border-color: transparent;
}
.btn-gray .badge {
    color: #717171;
    background-color: #d9d9d9;
}
.btn-gray.btn-ghost {
    background-color: transparent;
    color: #717171;
    border-color: #717171;
}
.btn-gray.btn-ghost:hover,
.btn-gray.btn-ghost:focus,
.btn-gray.btn-ghost:active,
.btn-gray.btn-ghost.active,
.open .dropdown-toggle.btn-gray.btn-ghost {
    color: #d9d9d9;
    background-color: #717171;
    border-color: #717171;
}
.btn-gray.btn-ghost:hover.btn-psuedo,
.btn-gray.btn-ghost:focus.btn-psuedo,
.btn-gray.btn-ghost:active.btn-psuedo,
.btn-gray.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-gray.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #717171;
    border-color: #717171;
}
.btn-gray:hover,
.btn-gray:active,
.btn-gray:focus {
    background-color: #d9d9d9;
    color: #ffffff;
}
.btn-gray-lightest {
    color: #858484;
    background-color: #f0f0f0;
    border-color: transparent;
}
.btn-gray-lightest:hover,
.btn-gray-lightest:focus,
.btn-gray-lightest.focus,
.btn-gray-lightest:active,
.btn-gray-lightest.active,
.open > .dropdown-toggle.btn-gray-lightest {
    color: #858484;
    background-color: #d6d6d6;
    border-color: rgba(0, 0, 0, 0);
}
.btn-gray-lightest:active,
.btn-gray-lightest.active,
.open > .dropdown-toggle.btn-gray-lightest {
    background-image: none;
}
.btn-gray-lightest.disabled,
.btn-gray-lightest[disabled],
fieldset[disabled] .btn-gray-lightest,
.btn-gray-lightest.disabled:hover,
.btn-gray-lightest[disabled]:hover,
fieldset[disabled] .btn-gray-lightest:hover,
.btn-gray-lightest.disabled:focus,
.btn-gray-lightest[disabled]:focus,
fieldset[disabled] .btn-gray-lightest:focus,
.btn-gray-lightest.disabled.focus,
.btn-gray-lightest[disabled].focus,
fieldset[disabled] .btn-gray-lightest.focus,
.btn-gray-lightest.disabled:active,
.btn-gray-lightest[disabled]:active,
fieldset[disabled] .btn-gray-lightest:active,
.btn-gray-lightest.disabled.active,
.btn-gray-lightest[disabled].active,
fieldset[disabled] .btn-gray-lightest.active {
    background-color: #f0f0f0;
    border-color: transparent;
}
.btn-gray-lightest .badge {
    color: #f0f0f0;
    background-color: #858484;
}
.btn-gray-lightest.btn-ghost {
    background-color: transparent;
    color: #f0f0f0;
    border-color: #f0f0f0;
}
.btn-gray-lightest.btn-ghost:hover,
.btn-gray-lightest.btn-ghost:focus,
.btn-gray-lightest.btn-ghost:active,
.btn-gray-lightest.btn-ghost.active,
.open .dropdown-toggle.btn-gray-lightest.btn-ghost {
    color: #858484;
    background-color: #f0f0f0;
    border-color: #f0f0f0;
}
.btn-gray-lightest.btn-ghost:hover.btn-psuedo,
.btn-gray-lightest.btn-ghost:focus.btn-psuedo,
.btn-gray-lightest.btn-ghost:active.btn-psuedo,
.btn-gray-lightest.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-gray-lightest.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #f0f0f0;
    border-color: #f0f0f0;
}
.btn-gray-lightest:hover,
.btn-gray-lightest:active,
.btn-gray-lightest:focus {
    background-color: var(--PRIMARY);
    color: #ffffff;
}
.btn-orange {
    color: white;
    background-color: var(--PRIMARY);
    border-color: transparent;
}
.btn-orange:hover,
.btn-orange:focus,
.btn-orange.focus,
.btn-orange:active,
.btn-orange.active,
.open > .dropdown-toggle.btn-orange {
    color: white;
    background-color: var(--PRIMARY-HOVER);
    border-color: rgba(0, 0, 0, 0);
}
.btn-orange:active,
.btn-orange.active,
.open > .dropdown-toggle.btn-orange {
    background-image: none;
}
.btn-orange.disabled,
.btn-orange[disabled],
fieldset[disabled] .btn-orange,
.btn-orange.disabled:hover,
.btn-orange[disabled]:hover,
fieldset[disabled] .btn-orange:hover,
.btn-orange.disabled:focus,
.btn-orange[disabled]:focus,
fieldset[disabled] .btn-orange:focus,
.btn-orange.disabled.focus,
.btn-orange[disabled].focus,
fieldset[disabled] .btn-orange.focus,
.btn-orange.disabled:active,
.btn-orange[disabled]:active,
fieldset[disabled] .btn-orange:active,
.btn-orange.disabled.active,
.btn-orange[disabled].active,
fieldset[disabled] .btn-orange.active {
    background-color: var(--PRIMARY);
    border-color: transparent;
}
.btn-orange .badge {
    color: var(--PRIMARY);
    background-color: white;
}
.btn-orange.btn-ghost {
    background-color: transparent;
    color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.btn-orange.btn-ghost:hover,
.btn-orange.btn-ghost:focus,
.btn-orange.btn-ghost:active,
.btn-orange.btn-ghost.active,
.open .dropdown-toggle.btn-orange.btn-ghost {
    color: white;
    background-color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.btn-orange.btn-ghost:hover.btn-psuedo,
.btn-orange.btn-ghost:focus.btn-psuedo,
.btn-orange.btn-ghost:active.btn-psuedo,
.btn-orange.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-orange.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.btn-green {
    color: white;
    background-color: #21b3a2;
    border-color: transparent;
}
.btn-green:hover,
.btn-green:focus,
.btn-green.focus,
.btn-green:active,
.btn-green.active,
.open > .dropdown-toggle.btn-green {
    color: white;
    background-color: #19887b;
    border-color: rgba(0, 0, 0, 0);
}
.btn-green:active,
.btn-green.active,
.open > .dropdown-toggle.btn-green {
    background-image: none;
}
.btn-green.disabled,
.btn-green[disabled],
fieldset[disabled] .btn-green,
.btn-green.disabled:hover,
.btn-green[disabled]:hover,
fieldset[disabled] .btn-green:hover,
.btn-green.disabled:focus,
.btn-green[disabled]:focus,
fieldset[disabled] .btn-green:focus,
.btn-green.disabled.focus,
.btn-green[disabled].focus,
fieldset[disabled] .btn-green.focus,
.btn-green.disabled:active,
.btn-green[disabled]:active,
fieldset[disabled] .btn-green:active,
.btn-green.disabled.active,
.btn-green[disabled].active,
fieldset[disabled] .btn-green.active {
    background-color: #21b3a2;
    border-color: transparent;
}
.btn-green .badge {
    color: #21b3a2;
    background-color: white;
}
.btn-green.btn-ghost {
    background-color: transparent;
    color: #21b3a2;
    border-color: #21b3a2;
}
.btn-green.btn-ghost:hover,
.btn-green.btn-ghost:focus,
.btn-green.btn-ghost:active,
.btn-green.btn-ghost.active,
.open .dropdown-toggle.btn-green.btn-ghost {
    color: white;
    background-color: #21b3a2;
    border-color: #21b3a2;
}
.btn-green.btn-ghost:hover.btn-psuedo,
.btn-green.btn-ghost:focus.btn-psuedo,
.btn-green.btn-ghost:active.btn-psuedo,
.btn-green.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-green.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #21b3a2;
    border-color: #21b3a2;
}
.btn-gray {
    color: #717171;
    background-color: #f6f6f6;
    border-color: transparent;
}
.btn-gray:hover,
.btn-gray:focus,
.btn-gray.focus,
.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
    color: #717171;
    background-color: #dddddd;
    border-color: rgba(0, 0, 0, 0);
}
.btn-gray:active,
.btn-gray.active,
.open > .dropdown-toggle.btn-gray {
    background-image: none;
}
.btn-gray.disabled,
.btn-gray[disabled],
fieldset[disabled] .btn-gray,
.btn-gray.disabled:hover,
.btn-gray[disabled]:hover,
fieldset[disabled] .btn-gray:hover,
.btn-gray.disabled:focus,
.btn-gray[disabled]:focus,
fieldset[disabled] .btn-gray:focus,
.btn-gray.disabled.focus,
.btn-gray[disabled].focus,
fieldset[disabled] .btn-gray.focus,
.btn-gray.disabled:active,
.btn-gray[disabled]:active,
fieldset[disabled] .btn-gray:active,
.btn-gray.disabled.active,
.btn-gray[disabled].active,
fieldset[disabled] .btn-gray.active {
    background-color: #f6f6f6;
    border-color: transparent;
}
.btn-gray .badge {
    color: #f6f6f6;
    background-color: #717171;
}
.btn-gray.btn-ghost {
    background-color: transparent;
    color: #f6f6f6;
    border-color: #f6f6f6;
}
.btn-gray.btn-ghost:hover,
.btn-gray.btn-ghost:focus,
.btn-gray.btn-ghost:active,
.btn-gray.btn-ghost.active,
.open .dropdown-toggle.btn-gray.btn-ghost {
    color: #717171;
    background-color: #f6f6f6;
    border-color: #f6f6f6;
}
.btn-gray.btn-ghost:hover.btn-psuedo,
.btn-gray.btn-ghost:focus.btn-psuedo,
.btn-gray.btn-ghost:active.btn-psuedo,
.btn-gray.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-gray.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #f6f6f6;
    border-color: #f6f6f6;
}
.btn-gray-mid {
    color: white;
    background-color: #858484;
    border-color: transparent;
}
.btn-gray-mid:hover,
.btn-gray-mid:focus,
.btn-gray-mid.focus,
.btn-gray-mid:active,
.btn-gray-mid.active,
.open > .dropdown-toggle.btn-gray-mid {
    color: white;
    background-color: #6b6b6b;
    border-color: rgba(0, 0, 0, 0);
}
.btn-gray-mid:active,
.btn-gray-mid.active,
.open > .dropdown-toggle.btn-gray-mid {
    background-image: none;
}
.btn-gray-mid.disabled,
.btn-gray-mid[disabled],
fieldset[disabled] .btn-gray-mid,
.btn-gray-mid.disabled:hover,
.btn-gray-mid[disabled]:hover,
fieldset[disabled] .btn-gray-mid:hover,
.btn-gray-mid.disabled:focus,
.btn-gray-mid[disabled]:focus,
fieldset[disabled] .btn-gray-mid:focus,
.btn-gray-mid.disabled.focus,
.btn-gray-mid[disabled].focus,
fieldset[disabled] .btn-gray-mid.focus,
.btn-gray-mid.disabled:active,
.btn-gray-mid[disabled]:active,
fieldset[disabled] .btn-gray-mid:active,
.btn-gray-mid.disabled.active,
.btn-gray-mid[disabled].active,
fieldset[disabled] .btn-gray-mid.active {
    background-color: #858484;
    border-color: transparent;
}
.btn-gray-mid .badge {
    color: #858484;
    background-color: white;
}
.btn-gray-mid.btn-ghost {
    background-color: transparent;
    color: #858484;
    border-color: #858484;
}
.btn-gray-mid.btn-ghost:hover,
.btn-gray-mid.btn-ghost:focus,
.btn-gray-mid.btn-ghost:active,
.btn-gray-mid.btn-ghost.active,
.open .dropdown-toggle.btn-gray-mid.btn-ghost {
    color: white;
    background-color: #858484;
    border-color: #858484;
}
.btn-gray-mid.btn-ghost:hover.btn-psuedo,
.btn-gray-mid.btn-ghost:focus.btn-psuedo,
.btn-gray-mid.btn-ghost:active.btn-psuedo,
.btn-gray-mid.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-gray-mid.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #858484;
    border-color: #858484;
}
.btn-gray-dark {
    color: #717171;
    background-color: #c3c3c3;
    border-color: transparent;
}
.btn-gray-dark:hover,
.btn-gray-dark:focus,
.btn-gray-dark.focus,
.btn-gray-dark:active,
.btn-gray-dark.active,
.open > .dropdown-toggle.btn-gray-dark {
    color: #717171;
    background-color: #aaaaaa;
    border-color: rgba(0, 0, 0, 0);
}
.btn-gray-dark:active,
.btn-gray-dark.active,
.open > .dropdown-toggle.btn-gray-dark {
    background-image: none;
}
.btn-gray-dark.disabled,
.btn-gray-dark[disabled],
fieldset[disabled] .btn-gray-dark,
.btn-gray-dark.disabled:hover,
.btn-gray-dark[disabled]:hover,
fieldset[disabled] .btn-gray-dark:hover,
.btn-gray-dark.disabled:focus,
.btn-gray-dark[disabled]:focus,
fieldset[disabled] .btn-gray-dark:focus,
.btn-gray-dark.disabled.focus,
.btn-gray-dark[disabled].focus,
fieldset[disabled] .btn-gray-dark.focus,
.btn-gray-dark.disabled:active,
.btn-gray-dark[disabled]:active,
fieldset[disabled] .btn-gray-dark:active,
.btn-gray-dark.disabled.active,
.btn-gray-dark[disabled].active,
fieldset[disabled] .btn-gray-dark.active {
    background-color: #c3c3c3;
    border-color: transparent;
}
.btn-gray-dark .badge {
    color: #c3c3c3;
    background-color: #717171;
}
.btn-gray-dark.btn-ghost {
    background-color: transparent;
    color: #c3c3c3;
    border-color: #c3c3c3;
}
.btn-gray-dark.btn-ghost:hover,
.btn-gray-dark.btn-ghost:focus,
.btn-gray-dark.btn-ghost:active,
.btn-gray-dark.btn-ghost.active,
.open .dropdown-toggle.btn-gray-dark.btn-ghost {
    color: #717171;
    background-color: #c3c3c3;
    border-color: #c3c3c3;
}
.btn-gray-dark.btn-ghost:hover.btn-psuedo,
.btn-gray-dark.btn-ghost:focus.btn-psuedo,
.btn-gray-dark.btn-ghost:active.btn-psuedo,
.btn-gray-dark.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-gray-dark.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #c3c3c3;
    border-color: #c3c3c3;
}
.btn-gray-dark.btn-ghost {
    color: #717171;
}
.btn-gray-dark.disabled,
.btn-gray-dark[disabled] {
    opacity: 0.35;
}
.btn-gray-darker {
    color: #ffffff;
    background-color: #3f3f3f;
    border-color: transparent;
}
.btn-gray-darker:hover,
.btn-gray-darker:focus,
.btn-gray-darker.focus,
.btn-gray-darker:active,
.btn-gray-darker.active,
.open > .dropdown-toggle.btn-gray-darker {
    color: #ffffff;
    background-color: #262626;
    border-color: rgba(0, 0, 0, 0);
}
.btn-gray-darker:active,
.btn-gray-darker.active,
.open > .dropdown-toggle.btn-gray-darker {
    background-image: none;
}
.btn-gray-darker.disabled,
.btn-gray-darker[disabled],
fieldset[disabled] .btn-gray-darker,
.btn-gray-darker.disabled:hover,
.btn-gray-darker[disabled]:hover,
fieldset[disabled] .btn-gray-darker:hover,
.btn-gray-darker.disabled:focus,
.btn-gray-darker[disabled]:focus,
fieldset[disabled] .btn-gray-darker:focus,
.btn-gray-darker.disabled.focus,
.btn-gray-darker[disabled].focus,
fieldset[disabled] .btn-gray-darker.focus,
.btn-gray-darker.disabled:active,
.btn-gray-darker[disabled]:active,
fieldset[disabled] .btn-gray-darker:active,
.btn-gray-darker.disabled.active,
.btn-gray-darker[disabled].active,
fieldset[disabled] .btn-gray-darker.active {
    background-color: #3f3f3f;
    border-color: transparent;
}
.btn-gray-darker .badge {
    color: #3f3f3f;
    background-color: #ffffff;
}
.btn-gray-darker.btn-ghost {
    background-color: transparent;
    color: #3f3f3f;
    border-color: #3f3f3f;
}
.btn-gray-darker.btn-ghost:hover,
.btn-gray-darker.btn-ghost:focus,
.btn-gray-darker.btn-ghost:active,
.btn-gray-darker.btn-ghost.active,
.open .dropdown-toggle.btn-gray-darker.btn-ghost {
    color: #ffffff;
    background-color: #3f3f3f;
    border-color: #3f3f3f;
}
.btn-gray-darker.btn-ghost:hover.btn-psuedo,
.btn-gray-darker.btn-ghost:focus.btn-psuedo,
.btn-gray-darker.btn-ghost:active.btn-psuedo,
.btn-gray-darker.btn-ghost.active.btn-psuedo,
.open .dropdown-toggle.btn-gray-darker.btn-ghost.btn-psuedo {
    cursor: default;
    background-color: transparent;
    color: #3f3f3f;
    border-color: #3f3f3f;
}
.btn-gray-darker.btn-ghost {
    color: #3f3f3f;
}
.btn-primary.btn-square.btn-ghost:hover {
    border-color: #df8b50;
}
.btn-header-full {
    position: absolute;
    top: -1px;
    bottom: -1px;
    right: -1px;
    width: 95px;
    min-height: 64px;
    border: none;
    -webkit-border-radius: 0 3px 0 0;
    -moz-border-radius: 0 3px 0 0;
    -o-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.btn-header-full span {
    display: none;
}
.btn-header-full:before {
    content: "#";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    font-size: 30px;
    color: white;
    height: 30px;
    margin: -15px 0 0;
    line-height: 30px;
    text-align: center;
    display: block;
}
.btn-header-full.add-candidate:before {
    content: "\e906";
    font-family: "glyphicons-new";
    font-size: 28px;
}
.btn-header-full.add-candidate:after {
    content: "\e912";
    position: absolute;
    font-family: "glyphicons-new";
    font-size: 20px;
    top: 50%;
    right: 50%;
    width: 20px;
    height: 20px;
    margin: -15px -28px 0 0;
    line-height: 20px;
    display: block;
}
.btn-header-full.added-candidate:before {
    content: "\e906";
    font-family: "glyphicons-new";
    font-size: 28px;
}
.btn-header-full.added-candidate:after {
    content: "\e914";
    position: absolute;
    font-family: "glyphicons-new";
    font-size: 8px;
    color: white;
    top: 50%;
    right: 50%;
    width: 20px;
    height: 20px;
    margin: -15px -28px 0 0;
    line-height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: #21b3a2;
    display: block;
}
.btn-ghost {
    background-color: transparent;
    -webkit-transition: ease 0.15s all;
    -o-transition: ease 0.15s all;
    transition: ease 0.15s all;
}
.btn-ghost.btn-fat {
    border-width: 2px;
}
.btn-rounded {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-width: 2px;
}
.btn-wider {
    padding-left: 25px;
    padding-right: 25px;
}
.btn-md {
    padding: 5px 20px;
    font-size: 15px;
}
.btn-tall {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 15px;
}
.btn-taller {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
}
.btn-lg,
.btn-group-lg > .btn {
    padding: 11px 16px;
}
.btn-square {
    position: relative;
    width: 40px;
    height: 40px;
}
.btn-square.btn-ghost:hover {
    background-color: transparent;
}
.btn-round {
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    -o-border-radius: 36px;
    border-radius: 36px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
@media (max-width: 767px) {
    .btn-xs-block {
        display: block;
        width: 100%;
    }
}
.btn-height {
    line-height: 40px;
}
.btn-fixed-lg {
    font-size: 18px;
    font-weight: normal;
    height: 50px;
    line-height: 46px;
}
.btn-fixed-lg-15 {
    font-size: 16px;
    font-weight: medium;
    height: 50px;
    line-height: 50px;
}
.btn-fixed-lg-16 {
    font-size: 16px;
    font-weight: medium;
    height: 50px;
    line-height: 46px;
}
.btn-fixed-lg-20 {
    font-size: 20px;
    font-weight: normal;
    height: 50px;
    line-height: 50px;
}
.btn-square-lg {
    font-size: 20px;
    font-weight: normal;
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.btn-width-80 {
    width: 80px;
    text-align: center;
}
.btn-group .btn .caret {
    margin-left: 10px;
}
.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    border-color: #d9d9d9;
}
.btn-block + .btn-block {
    margin-top: 0;
}
.input-group .icon {
    opacity: 0;
}
.input-group:hover .icon {
    opacity: 1;
}
.input-group .form-control {
    border-right-color: transparent;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.input-group .input-group-btn .btn {
    position: relative;
    min-width: 40px;
    min-height: 40px;
    border-left-color: transparent;
}
.btn-remove {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
}
.unclickable {
    pointer-events: none;
}
.toggle-bold-gray .dropdown-toggle {
    color: #c3c3c3;
    border: 2px solid #c3c3c3;
}
[data-search-tasks-edit]:hover,
[data-search-tasks-edit].active {
    color: #3f3f3f;
}
@media (max-width: 767px) {
    .btn-header-full {
        top: 10px;
        right: 10px;
        width: 60px;
        height: 60px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -o-border-radius: 4px;
        border-radius: 4px;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
    .btn-header-full.add-candidate:before {
        position: relative;
        left: -5px;
        font-size: 25px;
    }
    .btn-header-full.add-candidate:after {
        font-size: 18px;
        width: 18px;
        height: 18px;
        margin: -17px -20px 0 0;
    }
}
.page-header {
    margin: 6px 0;
    padding: 0;
    border: none;
    font-size: 23px;
}
input[type="checkbox"],
input[type="radio"] {
    margin: 10px 0 0;
}
.form-control {
    height: 40px;
    padding: 9px 12px;
    border-color: #d9d9d9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.form-control::-moz-placeholder {
    color: #888;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #888;
}
.form-control::-webkit-input-placeholder {
    color: #888;
}
.form-control::-webkit-input-placeholder {
    color: #888;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #888;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #888;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.form-control:-ms-input-placeholder {
    color: #888;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.form-control:active,
.form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.form-control.no-border {
    border-color: transparent;
}
.form-control.border-fat {
    border-width: 2px;
}
.form-control::-moz-placeholder {
    font-size: 14px;
}
.form-control:-ms-input-placeholder {
    font-size: 14px;
}
.form-control::-webkit-input-placeholder {
    font-size: 14px;
}
.form-control.input-lg {
    font-size: 15px;
    height: 50px;
    padding: 0 20px;
}
.form-control.input-lg.custom {
    font-size: 14px !important;
}
.form-control.input-lg.font-lg {
    font-size: 18px !important;
}
.input-faded {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: transparent;
}
.input-faded::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}
.input-faded:-ms-input-placeholder {
    color: #ffffff;
}
.input-faded::-webkit-input-placeholder {
    color: #ffffff;
}
.input-faded::-webkit-input-placeholder {
    color: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.input-faded:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.input-faded::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.input-faded:-ms-input-placeholder {
    color: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.input-faded:active,
.input-faded:focus,
.input-faded.active,
.input-faded.has-error,
.input-faded.has-success {
    background-color: rgba(255, 255, 255, 0.3);
}
.input-transparent {
    background: transparent;
}
.input-box {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: white;
}
@media (max-width: 767px) {
    .input-box.xs-border {
        border: 1px solid #c3c3c3;
    }
}
.input-lg {
    height: 50px;
    padding: 12px 16px;
}
.input-lg::-moz-placeholder,
.input-lg:-ms-input-placeholder,
.input-lg::-webkit-input-placeholder {
    font-family: "klavika", sans-serif !important;
    font-size: 18px;
}
.input-lg.search:focus {
    font-weight: 600;
    color: #3f3f3f;
}
.input-lg.what,
.input-lg.where {
    font-family: "klavika", sans-serif;
    font-size: 15px;
    color: #c3c3c3;
}
.input-lg.what {
}
.input-lg.where {
}
.form-group {
    margin-bottom: 10px;
}
.form-group .help-block {
    display: none;
}
.form-group .help-block.filled {
    display: block;
    margin-bottom: 0;
    font-family: "klavika", sans-serif;
    font-weight: 500;
}
.form-group .form-group-inline {
    margin-left: 0;
    margin-right: 0;
}
.form-horizontal .control-label {
    padding-top: 10px;
    text-align: left;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #ffffff;
}
.input-group-btn .btn {
    background-color: #ffffff;
    border-top-color: #d9d9d9;
    border-right-color: #d9d9d9;
    border-bottom-color: #d9d9d9;
}
.input-group-btn .btn:active,
.input-group-btn .btn:focus,
.input-group-btn .btn:hover,
.input-group-btn .btn.active {
    border-top-color: #d9d9d9;
    border-right-color: #d9d9d9;
    border-bottom-color: #d9d9d9;
}
.input-group-btn .btn .icon {
    opacity: 1;
}
.form-group.has-error,
.form-group.has-success {
    position: relative;
    overflow: hidden;
}
.form-group.has-error:after,
.form-group.has-success:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 11px;
    display: inline-block;
    text-indent: -9999em;
    overflow: hidden;
    background: url("../images/sprites.png") no-repeat;
}
.form-group.has-error:after a,
.form-group.has-success:after a {
    -webkit-border-radius: 0.36630037em;
    -moz-border-radius: 0.36630037em;
    -o-border-radius: 0.36630037em;
    border-radius: 0.36630037em;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .form-group.has-error:after,
    .form-group.has-success:after {
        background: url("../images/sprites2x.png") no-repeat;
        background-size: 620px 370px;
    }
}
.form-group.has-error.checkbox:after,
.form-group.has-success.checkbox:after {
    display: none;
}
.form-group.has-error {
    border-color: #ef351d;
}
.form-group.has-error .form-control {
    border-width: 2px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.form-group.has-error + .filled {
    margin-top: 5px;
    color: #ef351d;
}
.form-group.has-error:after {
    width: 18px;
    height: 18px;
    background-position: -574px -257px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .form-group.has-error:after {
        width: 18px;
        height: 18px;
        background-position: -435px -224px;
    }
}
.form-group.has-success .form-control {
    border-color: #d9d9d9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.form-group.has-success .control-label,
.form-group.has-success.checkbox label {
    color: #c3c3c3;
}
.form-group.has-success:after {
    width: 18px;
    height: 18px;
    background-position: -620px -257px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .form-group.has-success:after {
        width: 18px;
        height: 18px;
        background-position: -473px -224px;
        width: 19px;
    }
}
.form-group.no-label.no-label-lg.has-error:after,
.form-group.no-label.no-label-lg.has-success:after {
    top: 16px;
}
@media (max-width: 991px) {
    .form-group.has-error:after,
    .form-group.has-success:after {
        top: 46px;
    }
    .form-group.no-label.has-error:after,
    .form-group.no-label.has-success:after {
        top: 10px;
    }
    .narrow-spacing .form-group.no-label.has-error:after,
    .narrow-spacing .form-group.no-label.has-success:after {
        right: 10px;
    }
}
.label-lg {
    height: 50px;
    line-height: 53px;
}
.placeholder-light::-moz-placeholder {
    color: #c3c3c3;
    opacity: 1;
}
.placeholder-light:-ms-input-placeholder {
    color: #c3c3c3;
}
.placeholder-light::-webkit-input-placeholder {
    color: #c3c3c3;
}
.placeholder-light::-webkit-input-placeholder {
    color: #c3c3c3;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.placeholder-light:-moz-placeholder {
    /* Firefox 18- */
    color: #c3c3c3;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.placeholder-light::-moz-placeholder {
    /* Firefox 19+ */
    color: #c3c3c3;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.placeholder-light:-ms-input-placeholder {
    color: #c3c3c3;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.placeholder-dark::-moz-placeholder {
    color: #3f3f3f;
    opacity: 1;
}
.placeholder-dark:-ms-input-placeholder {
    color: #3f3f3f;
}
.placeholder-dark::-webkit-input-placeholder {
    color: #3f3f3f;
}
.placeholder-dark::-webkit-input-placeholder {
    color: #3f3f3f;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.placeholder-dark:-moz-placeholder {
    /* Firefox 18- */
    color: #3f3f3f;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.placeholder-dark::-moz-placeholder {
    /* Firefox 19+ */
    color: #3f3f3f;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
.placeholder-dark:-ms-input-placeholder {
    color: #3f3f3f;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
}
p.data-suggest-what:before,
p.data-suggest-where:before {
    position: absolute;
    top: 14px;
    font-family: "klavika", sans-serif;
    font-size: 15px;
    color: #c3c3c3;
    pointer-events: none;
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transition: 300ms opacity ease 0ms;
    -moz-transition: 300ms opacity ease 0ms;
    -o-transition: 300ms opacity ease 0ms;
    transition: 300ms opacity ease 0ms;
}
p.data-suggest-what .invalid-message,
p.data-suggest-where .invalid-message,
p.data-suggest-what .help-block,
p.data-suggest-where .help-block {
    display: none;
}
p.data-suggest-what:before {
    left: 89px;
}
p.data-suggest-what.has-error:after,
p.data-suggest-what.has-success:after {
    left: 0;
    right: 0;
}
p.data-suggest-where:before {
    left: 97px;
}
p.data-suggest-where.has-error:after,
p.data-suggest-where.has-success:after {
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
}
p.focus:before {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
p.has-error:after,
p.has-success:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 2px solid #ef351d;
    pointer-events: none;
}
p.has-success:before,
p.filled:before {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
p.has-success:after,
p.filled:after {
    border: none;
}
@media (max-width: 991px) {
    p.data-suggest-what:before {
        left: 99px;
    }
    p.data-suggest-where:before {
        left: 107px;
    }
}
@media (max-width: 767px) {
    p.input-box.focus {
        position: fixed !important;
        z-index: 99998;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        border: none;
    }
    p.input-box.focus label {
        height: 60px;
        line-height: 63px;
    }
    p.input-box.focus input[type="text"] {
        height: 60px;
    }
    p.input-box.focus:before {
        top: 20px;
        left: 90px;
    }
    p.input-box.focus:after {
        content: "";
        position: fixed;
        top: 60px;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--PRIMARY);
    }
    p.input-box.focus .btn-blur {
        display: block !important;
    }
    p.input-box.focus [data-geo] {
        display: none;
    }
    p.input-box.data-suggest-what:before {
        left: 80px;
    }
    p.input-box.data-suggest-where:before {
        left: 88px;
    }
    p.input-box .btn-blur {
        height: 60px;
        line-height: 28px;
        -webkit-transition: 300ms color ease 0ms;
        -moz-transition: 300ms color ease 0ms;
        -o-transition: 300ms color ease 0ms;
        transition: 300ms color ease 0ms;
        display: none !important;
    }
    p.input-box .btn-blur .glyphicons {
        position: relative;
        top: 1px;
        -webkit-transition: 300ms color ease 0ms;
        -moz-transition: 300ms color ease 0ms;
        -o-transition: 300ms color ease 0ms;
        transition: 300ms color ease 0ms;
    }
    p.input-box .btn-blur:hover {
        text-decoration: none;
        color: #3f3f3f;
    }
    p.input-box .btn-blur:hover .glyphicons {
        color: var(--PRIMARY);
    }
}
.table-layout {
    margin: 0 0 20px 0;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.table-layout .row {
    margin: 0 15px;
}
.table-layout .row > div {
    line-height: 35px;
    padding: 10px 0;
}
.table-layout .row + .row div {
    border-top: 1px solid #d9d9d9;
}
.table.collapse-vertical td {
    border-left: none;
    border-right: none;
}
tr.selected h1,
tr.selected h2,
tr.selected h3,
tr.selected h4,
tr.selected h5,
tr.selected h6,
tr.selected p,
tr.selected a,
tr.selected label,
tr.selected a {
    opacity: 0.35;
}
.nav > li > a {
    padding: 14px 15px;
}
.nav-pills > li > a {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.nav {
    font-family: "klavika", sans-serif;
    font-weight: bold;
    font-size: 15px;
}
.nav a {
    color: #717171;
}
.nav-pills > li > a:hover,
.nav-pills > li > a:focus .nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav-pills > li > a.active,
.nav-pills > li > a.active:hover,
.nav-pills > li > a.active:focus {
    color: var(--PRIMARY);
    background-color: #f6f6f6;
}
.breadcrumb {
    padding: 6px 10px;
}
.breadcrumb a,
.breadcrumb .active {
    font-size: 12px;
}
.breadcrumb a,
.breadcrumb > li > span,
.breadcrumb > li + li:before {
    color: #d9d9d9;
}
.breadcrumb > li + li {
    position: relative;
    padding-left: 12px;
    margin-left: 5px;
}
.breadcrumb > li + li:before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    display: inline-block;
    text-indent: -9999em;
    overflow: hidden;
    background: url("../images/sprites.png") no-repeat;
    width: 3px;
    height: 6px;
    background-position: -637px -86px;
}
.breadcrumb > li + li:before a {
    -webkit-border-radius: 0.36630037em;
    -moz-border-radius: 0.36630037em;
    -o-border-radius: 0.36630037em;
    border-radius: 0.36630037em;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.breadcrumb li.active {
    color: #717171;
    font-weight: 700;
}
.panel,
.panel-group {
    border: 1px solid #d9d9d9;
    -webkit-box-shadow: 0px 2px 1px 0px rgba(196, 196, 196, 0.25);
    -moz-box-shadow: 0px 2px 1px 0px rgba(196, 196, 196, 0.25);
    -o-box-shadow: 0px 2px 1px 0px rgba(196, 196, 196, 0.25);
    box-shadow: 0px 2px 1px 0px rgba(196, 196, 196, 0.25);
}
.panel .form-group:last-child {
    margin-bottom: 0;
}
.panel-heading {
    border-bottom: 1px solid #d9d9d9;
}
.panel-heading-spaced {
    margin: 0 15px;
    padding: 15px 0;
}
.panel-body {
    padding: 20px;
}
.panel-row {
    line-height: 30px;
}
.panel-row + .panel-row {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #d9d9d9;
}
.panel-row.transparent,
.panel-row.horizontal {
    border-top: none;
}
.panel-row.horizontal {
    padding: 0 15px;
}
.panel-row.horizontal + .panel-row.horizontal {
    margin-top: 0;
}
.panel-footer {
    padding: 15px;
}
.panel-footer.panel-white {
    background-color: #ffffff;
}
@media (max-width: 767px) {
    .panel-row.xs-borderless {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
    .panel-row-border-xs {
        padding-top: 10px;
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
        border-top: 1px solid #d9d9d9;
    }
    .panel-row-border-xs div[class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (min-width: 768px) {
    .panel-row.horizontal {
        padding: 15px;
    }
    .panel-row.horizontal:first-child {
        border-right: 1px solid #d9d9d9;
    }
}
.alert {
    border-width: 2px;
    margin-bottom: 10px;
    padding: 10px 15px;
    font-weight: bold;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.alert-green {
    color: #21b3a2;
    border-color: #21b3a2;
    padding: 4px 10px;
    margin: 0;
    font-family: "klavika", sans-serif;
}
.alert-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: none;
    z-index: 999;
    font-size: 13px;
    font-family: "klavika", sans-serif;
}
.alert-fixed.alert-danger {
    background-color: rgba(239, 42, 32, 0.83);
    color: #ffffff;
}
.alert-fixed.alert-warning {
    background-color: rgba(250, 235, 204, 0.83);
}
.alert-fixed.alert-success {
    background-color: rgba(214, 233, 198, 0.83);
}
.alert-fixed.alert-info {
    background-color: rgba(188, 232, 241, 0.83);
}
.alert-fixed .close {
    opacity: 0.5;
    right: 0;
}
.alert-fixed .close:focus,
.alert-fixed .close:hover {
    opacity: 0.8;
}
label.viewed {
    position: absolute;
    bottom: -1px;
    right: -1px;
    font-size: 15px;
    color: white;
    height: 30px;
    margin: 0;
    padding: 0 10px;
    line-height: 30px;
    -webkit-border-radius: 5px 0 3px;
    -moz-border-radius: 5px 0 3px;
    -o-border-radius: 5px 0 3px;
    border-radius: 5px 0 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: #c3c3c3;
}
label.specifications {
    position: relative;
    margin: 0;
    padding: 50%;
    border: 8px solid rgba(217, 217, 217, 0.5);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    text-align: center;
}
label.specifications span {
    position: absolute;
    left: 0;
    right: 0;
    line-height: 0;
}
label.specifications.small {
    font-size: 15px;
}
label.specifications.medium {
    font-size: 21px;
}
@media (max-width: 767px) {
    label.viewed {
        left: 0;
        -webkit-border-radius: 0 0 3px 3px;
        -moz-border-radius: 0 0 3px 3px;
        -o-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
}
.modal-sm {
    max-width: 370px;
}
.modal-header {
    position: relative;
    margin: 0 15px;
    padding: 15px 0;
}
.modal-header-tall .modal-title {
    line-height: 40px;
}
.modal-header-borderless {
    border-bottom: none;
    padding-bottom: 0;
}
.modal-content {
    border-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.modal-content .form-group:after {
    right: 10px;
}
.modal-content .form-control {
    font-size: 14px;
}
.modal-content .form-control::-moz-placeholder {
    font-size: 14px;
    color: #c3c3c3;
    font-family: "klavika", sans-serif;
    font-weight: 500;
}
.modal-content .form-control:-ms-input-placeholder {
    font-size: 14px;
    color: #c3c3c3;
    font-family: "klavika", sans-serif;
    font-weight: 500;
}
.modal-content .form-control::-webkit-input-placeholder {
    font-size: 14px;
    color: #c3c3c3;
    font-family: "klavika", sans-serif;
    font-weight: 500;
}
.modal-backdrop {
    background-color: var(--PRIMARY);
}
@media (min-width: 768px) {
    .modal-sm {
        width: 400px;
    }
    .modal-body {
        max-height: unset;
        overflow-y: scroll;
    }
}
.modal-new .modal-dialog {
    width: 100%;
    max-width: 750px;
}
.modal-new .modal-header {
    margin: 0 30px;
    padding: 10px 0;
}
.modal-new .modal-body {
    max-height: unset;
    padding: 15px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .modal-new {
        padding: 40px 15px;
    }
    .modal-new .modal-dialog {
        margin: 0;
    }
    .modal-new .modal-header {
        margin: 0 20px;
    }
    .modal-new .modal-body {
        padding: 5px;
    }
}
.dropdown-menu {
    margin-top: 10px;
    position: absolute;
}
.dropdown-menu:before,
.dropdown-menu:after {
    right: 50px;
}
.pill {
    padding: 2px;
    width: 80px;
    border-width: 2px;
    border-style: solid;
    border-color: #645e5e;
    line-height: 20px;
    font-size: 15px;
    font-family: "klavika", sans-serif;
    font-weight: 700;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.pill.pill-lg {
    padding: 5px 15px;
}
.pill-primary {
    color: var(--PRIMARY);
    border-color: var(--PRIMARY);
}
.pill-gray {
    color: #717171;
    border-color: #717171;
}
.pagination {
    font-family: "klavika", sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}
.pagination li:first-child a,
.pagination li:last-child a {
    font-size: 10px;
    line-height: 20px;
    color: var(--PRIMARY);
}
.pagination-limit-container .help-block {
    margin: 0;
}
.pagination-limit {
    position: relative;
    width: 150px;
    font-family: "klavika", sans-serif;
}
.pagination-limit label {
    position: absolute;
    left: 0;
    line-height: 40px;
}
.pagination-limit.limit-lg {
    padding: 0;
    width: 100%;
}
.pagination-limit.limit-md {
    width: 225px;
}
@media (max-width: 767px) {
    .pagination-limit-container {
        width: 100%;
    }
    .pagination {
        float: none !important;
        display: table;
        width: 100%;
        margin-bottom: 10px;
    }
    .pagination li {
        display: table-cell;
        text-align: center;
        min-height: 30px;
        padding: 4px 0;
    }
    .pagination li a {
        float: none;
    }
    .pagination-limit {
        padding-left: 0;
        width: 100%;
    }
}
.switch-label {
    cursor: pointer;
    line-height: 30px;
}
input[type="checkbox"].ios-switch {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
input[type="checkbox"].ios-switch + div {
    vertical-align: middle;
    width: 60px;
    height: 30px;
    border-radius: 999px;
    background-color: #c3c3c3;
    -webkit-transition-duration: 0.4s;
    -webkit-transition-property: background-color, box-shadow;
    -moz-transition-duration: 0.4s;
    -moz-transition-property: background-color, box-shadow;
    -ms-transition-duration: 0.4s;
    -ms-transition-property: background-color, box-shadow;
    transition-duration: 0.4s;
    transition-property: background-color, box-shadow;
    box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
input[type="checkbox"].ios-switch:checked + div {
    background-position: 0 0;
    background-color: #3b89ec;
    box-shadow: inset 0 0 0 10px #3b89ff;
}
input[type="checkbox"].ios-switch:checked + div {
    background-color: #21b3a2;
    box-shadow: inset 0 0 0 10px #21b3a2;
}
input[type="checkbox"].ios-switch + div > div {
    float: left;
    width: 26px;
    height: 26px;
    border-radius: inherit;
    background: #ffffff;
    -webkit-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
    -webkit-transition-duration: 0.4s;
    -webkit-transition-property: transform, background-color, box-shadow;
    -moz-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
    -moz-transition-duration: 0.4s;
    -moz-transition-property: transform, background-color;
    -ms-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
    -ms-transition-duration: 0.4s;
    -ms-transition-property: transform, background-color;
    transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
    transition-duration: 0.4s;
    transition-property: transform, background-color;
    pointer-events: none;
    margin-top: 2px;
    margin-left: 2px;
    cursor: pointer;
}
input[type="checkbox"].ios-switch:checked + div > div {
    -webkit-transform: translate3d(30px, 0, 0);
    -moz-transform: translate3d(30px, 0, 0);
    -ms-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
    background-color: #ffffff;
}
.price-box {
    font-weight: 700;
}
.price-box.stacked .prefix {
    line-height: 20px;
    display: block;
}
.price-box .prefix {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    line-height: 40px;
}
.price-box .price {
    font-family: "klavika", sans-serif;
}
.price-large {
    font-size: 26px;
    line-height: 40px;
}
.price-xl {
    font-size: 30px;
    line-height: 40px;
}
.slider-switch {
    display: block;
    width: 100%;
    position: relative;
    padding: 0 2px;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #ffffff;
    -webkit-box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
.slider-switch:before,
.slider-switch:after {
    content: " ";
    display: table;
}
.slider-switch:after {
    clear: both;
}
.slider-switch:before,
.slider-switch:after {
    content: " ";
    display: table;
}
.slider-switch:after {
    clear: both;
}
.slider-switch input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.slider-switch input:checked + .slider-description,
.slider-switch .slider-label:hover .slider-description {
    color: #3f3f3f;
}
.slider-switch input:checked + .slider-description.white {
    color: white;
}
.slider-switch .slider-label {
    position: relative;
    z-index: 2;
    float: left;
    display: block;
    width: 50%;
    padding-top: 16px;
    padding-bottom: 16px;
    margin: 0;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
}
.slider-switch > a {
    display: block;
    position: relative;
    width: 50%;
    z-index: 2;
    float: left;
}
.slider-switch > a .slider-label {
    width: 100%;
    z-index: 1;
}
.slider-switch .slider-description {
    color: #c3c3c3;
}
.slider-switch .slider-slide {
    position: absolute;
    top: 2px;
    left: 2px;
    display: inline-block;
    width: 50%;
    height: 46px;
    background: #d9d9d9;
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transition: ease 0.3s all;
    -o-transition: ease 0.3s all;
    transition: ease 0.3s all;
}
.slider-switch .slider-slide.displace {
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
    margin-left: -4px;
    background: var(--PRIMARY);
}
.slider-switch .popover {
    color: #3f3f3f;
}
.slider-switch .help-block {
    display: none;
}
@media (max-width: 767px) {
    .slider-switch .slider-label {
        width: 100%;
    }
    .slider-switch > a {
        width: 100%;
    }
    .slider-switch .slider-slide {
        width: 99%;
        height: 48px;
    }
    .slider-switch .slider-slide.displace {
        -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%);
        margin-left: 0;
    }
}
@media (min-width: 1200px) {
    .slider-description a[data-toggle="popover"] {
        margin-left: 10px;
    }
}
.qty-slider {
    padding: 10px 5px 25px;
    margin-left: 11px;
    height: 50px;
}
.qty-slider .noUi-horizontal {
    height: 8px;
    border: none;
}
.qty-slider .noUi-background {
    background-color: #d4d4d4;
}
.qty-slider .noUi-origin {
    z-index: 2;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    margin: -2px;
    padding: 2px;
}
.qty-slider .noUi-connect {
    z-index: 2;
    background-color: var(--PRIMARY);
    border: 2px solid #d4d4d4;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.qty-slider .noUi-handle {
    width: 20px;
    height: 20px;
    top: -8px;
    background-color: var(--PRIMARY);
    border: none;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
}
.qty-slider .noUi-handle:before,
.qty-slider .noUi-handle:after {
    display: none;
}
.qty-slider .qty-slider-input {
    position: absolute;
    opacity: 0;
}
.qty-slider .noUi-base {
    z-index: 2;
    background-color: var(--PRIMARY);
    cursor: pointer;
}
.qty-slider .noUi-pips {
    padding: 0;
    margin-top: -12px;
}
.qty-slider .noUi-marker {
    width: 20px;
    height: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    margin-left: -16px;
    background-color: #d4d4d4;
    -webkit-box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.15);
    -o-box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.qty-slider .noUi-marker.selected {
    background-color: var(--PRIMARY);
    border: 3px solid #d4d4d4;
}
.qty-slider .noUi-value {
    margin-left: -15px;
    padding-top: 25px;
    width: 20px;
    font-size: 16px;
    color: #858484;
    font-family: "klavika", sans-serif;
    font-weight: 500;
}
.qty-slider [disabled].noUi-connect .noUi-base {
    background-color: #645e5e;
}
.qty-slider [disabled].noUi-connect .noUi-marker.selected {
    background-color: #645e5e;
}
.qty-slider [disabled].noUi-connect .noUi-base,
.qty-slider [disabled].noUi-connect .noUi-handle,
.qty-slider [disabled].noUi-connect .noUi-marker {
    cursor: not-allowed;
}
.qty-slider [disabled].noUi-connect .noUi-handle {
    background-color: #645e5e;
}
.qty-slider.vertical {
    margin: 13px 0 40px 6px;
    padding: 0;
}
.qty-slider.vertical.one {
    height: 59px;
}
.qty-slider.vertical.one .qty-slider-slider,
.qty-slider.vertical.one .noUi-pips {
    height: 59px;
}
.qty-slider.vertical.two {
    height: 101px;
}
.qty-slider.vertical.two .qty-slider-slider,
.qty-slider.vertical.two .noUi-pips {
    height: 101px;
}
.qty-slider.vertical.three {
    height: 143px;
}
.qty-slider.vertical.three .qty-slider-slider,
.qty-slider.vertical.three .noUi-pips {
    height: 143px;
}
.qty-slider.vertical.four {
    height: 185px;
}
.qty-slider.vertical.four .qty-slider-slider,
.qty-slider.vertical.four .noUi-pips {
    height: 185px;
}
.qty-slider.vertical.five {
    height: 227px;
}
.qty-slider.vertical.five .qty-slider-slider,
.qty-slider.vertical.five .noUi-pips {
    height: 227px;
}
.qty-slider.vertical.six {
    height: 269px;
}
.qty-slider.vertical.six .qty-slider-slider,
.qty-slider.vertical.six .noUi-pips {
    height: 269px;
}
.qty-slider.vertical.seven {
    height: 311px;
}
.qty-slider.vertical.seven .qty-slider-slider,
.qty-slider.vertical.seven .noUi-pips {
    height: 311px;
}
.qty-slider.vertical.eight {
    height: 353px;
}
.qty-slider.vertical.eight .qty-slider-slider,
.qty-slider.vertical.eight .noUi-pips {
    height: 353px;
}
.qty-slider.vertical .qty-slider-slider {
    width: 5px;
}
.qty-slider.vertical .noUi-background {
    background: #f6f6f6;
}
.qty-slider.vertical .noUi-marker {
    z-index: 2;
    width: 17px;
    height: 17px;
    margin-left: -11px;
    border: 4px solid #d4d4d4;
    pointer-events: none;
    background: white;
}
.qty-slider.vertical .noUi-marker.selected {
    border: 4px solid var(--PRIMARY);
    background: white;
}
@media (max-width: 767px) {
    .qty-slider.vertical .noUi-marker {
        margin-top: -4px;
        margin-left: -14px;
        width: 23px;
        height: 23px;
    }
}
.qty-slider.vertical .noUi-handle {
    top: -13px !important;
    left: -6px !important;
    width: 17px;
    height: 17px;
    border: 4px solid var(--PRIMARY);
    background: white;
}
@media (max-width: 767px) {
    .qty-slider.vertical .noUi-handle {
        top: -16px !important;
        left: -9px !important;
        width: 23px;
        height: 23px;
    }
}
.qty-slider.vertical .noUi-value-vertical {
    margin-top: -26px;
    margin-left: 20px;
}
.qty-slider.vertical .noUi-origin {
    margin: 0;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.qty-slider.vertical .noUi-connect {
    border: none;
}
.qty-slider.vertical .noUi-value {
    font-weight: normal;
    width: 190px;
    text-align: left;
}
.qty-slider.vertical .noUi-value span {
    color: #3f3f3f;
}
.date-slider.noUi-target {
    border: none;
    background-color: #f6f6f6;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.date-slider .noUi-background {
    background-color: #f6f6f6;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.date-slider .noUi-origin {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.date-slider .noUi-connect {
    background-color: #717171;
    border: none;
}
.date-slider .noUi-handle {
    width: 20px;
    height: 32px;
    top: -8px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.date-slider .noUi-handle:before,
.date-slider .noUi-handle:after {
    display: none;
}
#dst-slider .noUi-target {
    border: none;
    background-color: #f6f6f6;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
#dst-slider .noUi-horizontal {
    height: 5px;
}
#dst-slider .noUi-background {
    background-color: #f6f6f6;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
#dst-slider .noUi-origin {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
#dst-slider .noUi-connect {
    border: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: var(--PRIMARY);
}
#dst-slider .noUi-handle {
    top: -6px;
    width: 17px;
    height: 17px;
    border: 4px solid var(--PRIMARY);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    background: white;
}
#dst-slider .noUi-handle:before,
#dst-slider .noUi-handle:after {
    display: none;
}
#dst-slider > span {
    font-family: "klavika", sans-serif;
    font-size: 15px;
    font-weight: 500;
    width: 68px;
    height: 40px;
    margin: 10px 0 0;
    line-height: 39px;
    text-align: center;
    border: 1px solid #d4d4d4;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    display: block;
}
#dst-slider > span.start {
    color: #d4d4d4;
    float: left;
}
#dst-slider > span.end {
    color: #717171;
    float: right;
}
.badge-wide {
    padding: 3px 12px;
}
.badge-large {
    padding: 0 13px;
    font-size: 14px;
    line-height: 25px;
    font-family: "klavika", sans-serif;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.badge-primary {
    background-color: var(--PRIMARY);
}
.badge-danger {
    background-color: #ef351d;
}
@media (max-width: 767px) {
    .badge-large {
        display: block;
    }
}
.tabify {
    border-top: none;
    padding: 0;
}
.tabify label {
    position: relative;
    display: block;
    padding: 20px 0 60px;
    margin: 0;
    font-family: "klavika", sans-serif;
    font-size: 18px;
    line-height: 20px;
    color: #3f3f3f;
    cursor: pointer;
    -webkit-transition: ease 0.15s all;
    -o-transition: ease 0.15s all;
    transition: ease 0.15s all;
}
.tabify label .subtitle {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #858484;
}
.tabify input {
    position: absolute;
    opacity: 0;
}
.tabify input:checked + .radio-impersonator {
    border-bottom-color: var(--PRIMARY);
}
.tabify input:checked + .radio-impersonator:before {
    background-color: var(--PRIMARY);
}
.tabify input:checked:disabled + .radio-impersonator {
    border-bottom-color: #645e5e;
}
.tabify input:checked:disabled + .radio-impersonator:before {
    background-color: #645e5e;
}
.tabify .radio-impersonator {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 3px solid transparent;
    -webkit-transition: ease 0.15s all;
    -o-transition: ease 0.15s all;
    transition: ease 0.15s all;
}
.tabify .radio-impersonator:before {
    content: "";
    display: block;
    position: absolute;
    top: -40px;
    left: 50%;
    margin-left: -7px;
    width: 15px;
    height: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #d9d9d9;
    -webkit-transition: ease 0.15s all;
    -o-transition: ease 0.15s all;
    transition: ease 0.15s all;
}
.tabify ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tabify ul:before,
.tabify ul:after {
    content: " ";
    display: table;
}
.tabify ul:after {
    clear: both;
}
.tabify ul:before,
.tabify ul:after {
    content: " ";
    display: table;
}
.tabify ul:after {
    clear: both;
}
.tabify ul li {
    float: left;
    width: 25%;
    text-align: center;
}
.tabify ul li:before,
.tabify ul li:after {
    content: " ";
    display: table;
}
.tabify ul li:after {
    clear: both;
}
.tabify ul li:before,
.tabify ul li:after {
    content: " ";
    display: table;
}
.tabify ul li:after {
    clear: both;
}
.tabify ul li + li {
    border-left: 1px solid #d9d9d9;
}
.tabify .help-block {
    display: none;
}
@media (max-width: 767px) {
    .tabify label {
        padding: 10px 0 10px 60px;
        text-align: left;
        cursor: pointer;
    }
    .tabify .radio-impersonator {
        border-bottom: none;
        border-left: 3px solid transparent;
        left: 0;
        top: 0;
        width: 1px;
        height: 100%;
    }
    .tabify .radio-impersonator:before {
        left: 20px;
        top: 50%;
        margin-top: -7px;
        margin-left: auto;
    }
    .tabify input:checked + .radio-impersonator {
        border-left-color: var(--PRIMARY);
    }
    .tabify input:checked:disabled + .radio-impersonator {
        border-left-color: #645e5e;
    }
    .tabify ul li {
        width: 100%;
        border-top: 1px solid #d9d9d9;
    }
    .tabify ul li + li {
        border-left: none;
    }
}
/* Google Chrome Throbber [CSS] */
.loading {
    position: relative;
}
.loading:before {
    content: "";
    position: absolute;
    right: 40px;
    top: 24px;
    display: block !important;
    width: 13px;
    height: 13px;
    margin: -10px;
    padding: 0;
    border: 2px solid;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    color: var(--PRIMARY);
    background-color: transparent;
    -webkit-animation: loading 0.9s linear infinite;
    animation: loading 0.9s linear infinite;
    z-index: 2;
}
.loading.has-error:after,
.loading.has-success:after {
    background: none;
}
.loading .form-control {
    background-color: #f6f6f6;
}
@-webkit-keyframes loading {
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loading {
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.panel-group {
    border: 1px solid #d9d9d9;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.panel-group .panel {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
}
.panel-group .panel + .panel {
    margin-top: 0;
}
.panel-group .panel .panel-body {
    background-color: #f6f6f6;
}
.panel-group .panel .panel-heading {
    padding: 0;
}
.panel-group .panel .panel-heading .panel-title a {
    position: relative;
    display: block;
    padding: 15px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
}
.panel-group .panel .panel-heading .panel-title a .caret {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-width: 5px;
    border-top-color: var(--PRIMARY);
    -webkit-transition: ease 0.3s all;
    -o-transition: ease 0.3s all;
    transition: ease 0.3s all;
}
.panel-group .panel .panel-heading.active .caret {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.bootstrap-select {
    width: 220px \0;
    /*IE9 and below*/
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding-right: 25px;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
    border-color: #ef351d;
}
.bootstrap-select.fit-width {
    width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    ) {
    width: 220px;
}
.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.bs-container {
    position: absolute;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
    z-index: 1060;
}
.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%;
    box-sizing: border-box;
    margin-top: 2px;
    border-color: #d9d9d9;
}
.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;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.bootstrap-select.btn-group .dropdown-menu li + li {
    border-top: 1px solid #d9d9d9;
}
.bootstrap-select.btn-group .dropdown-menu li:not(.selected) span.check-mark {
    background: none;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.bootstrap-select.btn-group .dropdown-menu li.selected a,
.bootstrap-select.btn-group .dropdown-menu li a:hover {
    background: none;
    font-weight: bold;
}
.bootstrap-select.btn-group .dropdown-menu li.selected a:focus {
    outline: none;
}
.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 {
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.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 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: 0.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: 0.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 a span.text {
    margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
    z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: "";
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #d9d9d9;
    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 #d9d9d9;
    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 {
    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%;
    float: none;
}
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;
}
.bootstrap-select.custom {
    position: absolute;
    z-index: 2;
    font-family: "klavika", sans-serif;
    width: auto;
    height: auto;
    border: 2px solid #c3c3c3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: white;
}
.bootstrap-select.custom .dropdown-toggle {
    font-size: 15px;
    color: #858484;
    font-weight: normal;
    padding-left: 20px;
    border-color: transparent;
    background: transparent;
}
.bootstrap-select.custom .dropdown-toggle:before,
.bootstrap-select.custom .dropdown-toggle:after {
    display: none !important;
}
.bootstrap-select.custom .dropdown-toggle .caret {
    width: 10px;
    height: 10px;
    margin: -5px 7px 0;
    text-align: center;
    line-height: 10px;
    border: none;
}
.bootstrap-select.custom .dropdown-toggle .caret:before {
    content: "\e903";
    font-family: "glyphicons-new";
    font-size: 10px;
    color: #858484;
}
.bootstrap-select.custom .dropdown-menu {
    position: relative;
    width: 100%;
    margin: 0;
    border: none;
}
.bootstrap-select.custom .dropdown-menu li {
    margin: 0 20px;
    border: none !important;
}
.bootstrap-select.custom .dropdown-menu li a {
    font-size: 15px;
    color: #858484;
    font-weight: normal;
}
.bootstrap-select.custom .dropdown-menu li a span {
    white-space: normal;
}
.bootstrap-select.custom .dropdown-menu li a span.count {
    color: #3f3f3f;
}
.bootstrap-select.custom .dropdown-menu li.selected a {
    color: var(--PRIMARY);
}
.bootstrap-select.custom .dropdown-menu li:first-child {
    padding-top: 0;
}
.bootstrap-select.custom .dropdown-menu li:first-child .check-mark {
    margin-top: 3px;
}
.bootstrap-select.custom.tall .dropdown-toggle {
    height: 46px;
}
.bootstrap-select.custom.no-check a {
    padding-left: 0 !important;
}
.bootstrap-select.custom.no-check .dropdown-menu li a span {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.bootstrap-select.custom.no-check .check-mark {
    display: none;
}
.icheckbox_square,
.iradio_square {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(../images/qubein-checkboxes.png) no-repeat;
    border: none;
    cursor: pointer;
}
.icheck-group label {
    position: relative;
    padding-left: 32px;
    line-height: 22px;
}
.icheck-group .iradio_square,
.icheck-group .icheckbox_square {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.icheckbox_square {
    background-position: 0 0;
}
.icheckbox_square.hover {
    background-position: -24px 0;
}
.icheckbox_square.checked {
    background-position: -48px 0;
}
.icheckbox_square.disabled {
    background-position: -72px 0;
    cursor: default;
}
.icheckbox_square.checked.disabled {
    background-position: -96px 0;
}
.iradio_square {
    background-position: -120px 0;
}
.iradio_square.hover {
    background-position: -144px 0;
}
.iradio_square.checked {
    background-position: -168px 0;
}
.iradio_square.disabled {
    background-position: -192px 0;
    cursor: default;
}
.iradio_square.checked.disabled {
    background-position: -216px 0;
}
/* Bullets */
ul.bullets {
    margin-top: 11px !important;
    margin-bottom: 36px !important;
    margin-left: 6px !important;
    border-left: 5px solid #f6f6f6;
}
ul.bullets li {
    position: relative;
    left: -11px;
    padding-top: 15px;
    border: none !important;
}
ul.bullets li label {
    margin: 0;
}
ul.bullets li .icheckbox_square {
    position: relative;
    top: -2px;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    background-position: -259px 0;
}
ul.bullets li .icheckbox_square.hover,
ul.bullets li .icheckbox_square.checked {
    background-position: -240px 0;
}
ul.bullets li .icheckbox_square.disabled {
    background-position: -278px 0;
}
ul.bullets li:first-child {
    top: -11px;
    padding: 0;
}
ul.bullets li:nth-child(2) {
    padding-top: 4px;
}
ul.bullets li:last-child {
    bottom: -11px;
    padding-top: 4px;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4),
    (-webkit-min-device-pixel-ratio: 1.25),
    (min-resolution: 120dpi),
    (min-resolution: 1.25dppx) {
    .icheckbox_square,
    .iradio_square {
        background-image: url(../images/qubein-checkboxes@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}
.note-editor {
    position: relative;
    overflow: hidden;
    border: 1px solid #a9a9a9;
}
.note-editor .note-dropzone {
    position: absolute;
    z-index: 100;
    display: none;
    color: #87cefa;
    background-color: white;
    opacity: 0.95;
    pointer-event: none;
}
.note-editor .note-dropzone .note-dropzone-message {
    display: table-cell;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}
.note-editor .note-dropzone.hover {
    color: #098ddf;
}
.note-editor.dragover .note-dropzone {
    display: table;
}
.note-editor.codeview .note-editing-area .note-editable {
    display: none;
}
.note-editor.codeview .note-editing-area .note-codable {
    display: block;
}
.note-editor.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
}
.note-editor.fullscreen .note-editable {
    background-color: white;
}
.note-editor.fullscreen .note-resizebar {
    display: none;
}
.note-editor .note-editing-area {
    position: relative;
    overflow: hidden;
}
.note-editor .note-editing-area .note-editable {
    padding: 10px;
    overflow: auto;
    color: #000;
    background-color: #fff;
    outline: 0;
}
.note-editor
    .note-editing-area
    .note-editable[contenteditable="true"]:empty:not(:focus):before {
    content: attr(data-placeholder);
}
.note-editor .note-editing-area .note-editable[contenteditable="false"] {
    background-color: #e5e5e5;
}
.note-editor .note-editing-area .note-codable {
    display: none;
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    font-family: Menlo, Monaco, monospace, sans-serif;
    font-size: 14px;
    color: #ccc;
    background-color: #222;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
}
.note-editor .note-statusbar {
    background-color: #f5f5f5;
}
.note-editor .note-statusbar .note-resizebar {
    width: 100%;
    height: 8px;
    padding-top: 1px;
    cursor: ns-resize;
}
.note-editor .note-statusbar .note-resizebar .note-icon-bar {
    width: 20px;
    margin: 1px auto;
    border-top: 1px solid #a9a9a9;
}
.note-air-editor {
    outline: 0;
}
.note-popover .popover {
    max-width: none;
}
.note-popover .popover .popover-content a {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.note-popover .popover .arrow {
    left: 20px;
}
.note-popover .popover .popover-content,
.panel-heading.note-toolbar {
    padding: 0 0 5px 5px;
    margin: 0;
}
.note-popover .popover .popover-content > .btn-group,
.panel-heading.note-toolbar > .btn-group {
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 0;
}
.note-popover .popover .popover-content .btn-group .note-table,
.panel-heading.note-toolbar .btn-group .note-table {
    min-width: 0;
    padding: 5px;
}
.note-popover
    .popover
    .popover-content
    .btn-group
    .note-table
    .note-dimension-picker,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker {
    font-size: 18px;
}
.note-popover
    .popover
    .popover-content
    .btn-group
    .note-table
    .note-dimension-picker
    .note-dimension-picker-mousecatcher,
.panel-heading.note-toolbar
    .btn-group
    .note-table
    .note-dimension-picker
    .note-dimension-picker-mousecatcher {
    position: absolute !important;
    z-index: 3;
    width: 10em;
    height: 10em;
    cursor: pointer;
}
.note-popover
    .popover
    .popover-content
    .btn-group
    .note-table
    .note-dimension-picker
    .note-dimension-picker-unhighlighted,
.panel-heading.note-toolbar
    .btn-group
    .note-table
    .note-dimension-picker
    .note-dimension-picker-unhighlighted {
    position: relative !important;
    z-index: 1;
    width: 5em;
    height: 5em;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC")
        repeat;
}
.note-popover
    .popover
    .popover-content
    .btn-group
    .note-table
    .note-dimension-picker
    .note-dimension-picker-highlighted,
.panel-heading.note-toolbar
    .btn-group
    .note-table
    .note-dimension-picker
    .note-dimension-picker-highlighted {
    position: absolute !important;
    z-index: 2;
    width: 1em;
    height: 1em;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC")
        repeat;
}
.note-popover .popover .popover-content .note-style h1,
.panel-heading.note-toolbar .note-style h1,
.note-popover .popover .popover-content .note-style h2,
.panel-heading.note-toolbar .note-style h2,
.note-popover .popover .popover-content .note-style h3,
.panel-heading.note-toolbar .note-style h3,
.note-popover .popover .popover-content .note-style h4,
.panel-heading.note-toolbar .note-style h4,
.note-popover .popover .popover-content .note-style h5,
.panel-heading.note-toolbar .note-style h5,
.note-popover .popover .popover-content .note-style h6,
.panel-heading.note-toolbar .note-style h6,
.note-popover .popover .popover-content .note-style blockquote,
.panel-heading.note-toolbar .note-style blockquote {
    margin: 0;
}
.note-popover .popover .popover-content .note-color .dropdown-toggle,
.panel-heading.note-toolbar .note-color .dropdown-toggle {
    width: 20px;
    padding-left: 5px;
}
.note-popover .popover .popover-content .note-color .dropdown-menu,
.panel-heading.note-toolbar .note-color .dropdown-menu {
    min-width: 340px;
}
.note-popover .popover .popover-content .note-color .dropdown-menu .btn-group,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group {
    margin: 0;
}
.note-popover
    .popover
    .popover-content
    .note-color
    .dropdown-menu
    .btn-group:first-child,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group:first-child {
    margin: 0 5px;
}
.note-popover
    .popover
    .popover-content
    .note-color
    .dropdown-menu
    .btn-group
    .note-palette-title,
.panel-heading.note-toolbar
    .note-color
    .dropdown-menu
    .btn-group
    .note-palette-title {
    margin: 2px 7px;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.note-popover
    .popover
    .popover-content
    .note-color
    .dropdown-menu
    .btn-group
    .note-color-reset,
.panel-heading.note-toolbar
    .note-color
    .dropdown-menu
    .btn-group
    .note-color-reset {
    padding: 0 3px;
    margin: 3px;
    font-size: 11px;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.note-popover
    .popover
    .popover-content
    .note-color
    .dropdown-menu
    .btn-group
    .note-color-row,
.panel-heading.note-toolbar
    .note-color
    .dropdown-menu
    .btn-group
    .note-color-row {
    height: 20px;
}
.note-popover
    .popover
    .popover-content
    .note-color
    .dropdown-menu
    .btn-group
    .note-color-reset:hover,
.panel-heading.note-toolbar
    .note-color
    .dropdown-menu
    .btn-group
    .note-color-reset:hover {
    background: #eee;
}
.note-popover .popover .popover-content .note-para .dropdown-menu,
.panel-heading.note-toolbar .note-para .dropdown-menu {
    min-width: 216px;
    padding: 5px;
}
.note-popover
    .popover
    .popover-content
    .note-para
    .dropdown-menu
    > div:first-child,
.panel-heading.note-toolbar .note-para .dropdown-menu > div:first-child {
    margin-right: 5px;
}
.note-popover .popover .popover-content .dropdown-menu,
.panel-heading.note-toolbar .dropdown-menu {
    min-width: 90px;
}
.note-popover .popover .popover-content .dropdown-menu.right,
.panel-heading.note-toolbar .dropdown-menu.right {
    right: 0;
    left: auto;
}
.note-popover .popover .popover-content .dropdown-menu.right::before,
.panel-heading.note-toolbar .dropdown-menu.right::before {
    right: 9px;
    left: auto !important;
}
.note-popover .popover .popover-content .dropdown-menu.right::after,
.panel-heading.note-toolbar .dropdown-menu.right::after {
    right: 10px;
    left: auto !important;
}
.note-popover .popover .popover-content .dropdown-menu.note-check li a i,
.panel-heading.note-toolbar .dropdown-menu.note-check li a i {
    color: var(--PRIMARY);
    visibility: hidden;
}
.note-popover
    .popover
    .popover-content
    .dropdown-menu.note-check
    li
    a.checked
    i,
.panel-heading.note-toolbar .dropdown-menu.note-check li a.checked i {
    visibility: visible;
}
.note-popover .popover .popover-content .note-fontsize-10,
.panel-heading.note-toolbar .note-fontsize-10 {
    font-size: 10px;
}
.note-popover .popover .popover-content .note-color-palette,
.panel-heading.note-toolbar .note-color-palette {
    line-height: 1;
}
.note-popover .popover .popover-content .note-color-palette div .note-color-btn,
.panel-heading.note-toolbar .note-color-palette div .note-color-btn {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    border: 1px solid #fff;
}
.note-popover
    .popover
    .popover-content
    .note-color-palette
    div
    .note-color-btn:hover,
.panel-heading.note-toolbar .note-color-palette div .note-color-btn:hover {
    border: 1px solid #000;
}
.note-dialog > div {
    display: none;
}
.note-dialog .form-group {
    margin-right: 0;
    margin-left: 0;
}
.note-dialog .note-modal-form {
    margin: 0;
}
.note-dialog .note-image-dialog .note-dropzone {
    min-height: 100px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 4;
    color: lightgray;
    text-align: center;
    border: 4px dashed lightgray;
}
.note-dialog .note-help-dialog {
    font-size: 12px;
    color: #ccc;
    background: transparent;
    background-color: #222 !important;
    border: 0;
    -webkit-opacity: 0.9;
    -khtml-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 0.9;
    -ms-filter: alpha(opacity=90);
    filter: alpha(opacity=90);
}
.note-dialog .note-help-dialog .modal-content {
    background: transparent;
    border: 1px solid white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.note-dialog .note-help-dialog a {
    font-size: 12px;
    color: white;
}
.note-dialog .note-help-dialog .title {
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    border-bottom: white 1px solid;
}
.note-dialog .note-help-dialog .modal-close {
    font-size: 14px;
    color: #dd0;
    cursor: pointer;
}
.note-dialog .note-help-dialog .text-center {
    margin: 10px 0 0;
}
.note-dialog .note-help-dialog .note-shortcut {
    padding-top: 8px;
    padding-bottom: 8px;
}
.note-dialog .note-help-dialog .note-shortcut-row {
    margin-right: -5px;
    margin-left: -5px;
}
.note-dialog .note-help-dialog .note-shortcut-col {
    padding-right: 5px;
    padding-left: 5px;
}
.note-dialog .note-help-dialog .note-shortcut-title {
    font-size: 13px;
    font-weight: bold;
    color: #dd0;
}
.note-dialog .note-help-dialog .note-shortcut-key {
    font-family: "Courier New";
    color: #dd0;
    text-align: right;
}
.note-handle .note-control-selection {
    position: absolute;
    display: none;
    border: 1px solid black;
}
.note-handle .note-control-selection > div {
    position: absolute;
}
.note-handle .note-control-selection .note-control-selection-bg {
    width: 100%;
    height: 100%;
    background-color: black;
    -webkit-opacity: 0.3;
    -khtml-opacity: 0.3;
    -moz-opacity: 0.3;
    opacity: 0.3;
    -ms-filter: alpha(opacity=30);
    filter: alpha(opacity=30);
}
.note-handle .note-control-selection .note-control-handle {
    width: 7px;
    height: 7px;
    border: 1px solid black;
}
.note-handle .note-control-selection .note-control-holder {
    width: 7px;
    height: 7px;
    border: 1px solid black;
}
.note-handle .note-control-selection .note-control-sizing {
    width: 7px;
    height: 7px;
    background-color: white;
    border: 1px solid black;
}
.note-handle .note-control-selection .note-control-nw {
    top: -5px;
    left: -5px;
    border-right: 0;
    border-bottom: 0;
}
.note-handle .note-control-selection .note-control-ne {
    top: -5px;
    right: -5px;
    border-bottom: 0;
    border-left: none;
}
.note-handle .note-control-selection .note-control-sw {
    bottom: -5px;
    left: -5px;
    border-top: 0;
    border-right: 0;
}
.note-handle .note-control-selection .note-control-se {
    right: -5px;
    bottom: -5px;
    cursor: se-resize;
}
.note-handle .note-control-selection .note-control-se.note-control-holder {
    cursor: default;
    border-top: 0;
    border-left: none;
}
.note-handle .note-control-selection .note-control-selection-info {
    right: 0;
    bottom: 0;
    padding: 5px;
    margin: 5px;
    font-size: 12px;
    color: white;
    background-color: black;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
    -ms-filter: alpha(opacity=70);
    filter: alpha(opacity=70);
}
.error .note-editor .note-editing-area .note-editable {
    border: 2px solid #ef351d;
}
.btn-file {
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}
.btn-file > input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 23px;
    height: 100%;
    width: 100%;
    direction: ltr;
    cursor: pointer;
}
.fileinput {
    margin-bottom: 9px;
    display: inline-block;
}
.fileinput .form-control {
    padding-top: 7px;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 0px;
    vertical-align: middle;
    cursor: text;
}
.fileinput .thumbnail {
    overflow: hidden;
    display: inline-block;
    margin-bottom: 5px;
    vertical-align: middle;
    text-align: center;
}
.fileinput .thumbnail > img {
    max-height: 100%;
}
.fileinput .btn {
    vertical-align: middle;
}
.fileinput-exists .fileinput-new,
.fileinput-new .fileinput-exists {
    display: none;
}
.fileinput-inline .fileinput-controls {
    display: inline;
}
.fileinput-filename {
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
}
.form-control .fileinput-filename {
    vertical-align: bottom;
}
.fileinput.input-group {
    display: table;
}
.fileinput.input-group > * {
    position: relative;
    z-index: 2;
}
.fileinput.input-group > .btn-file {
    z-index: 1;
}
.fileinput-new.input-group .btn-file,
.fileinput-new .input-group .btn-file {
    border-radius: 0 3px 3px 0;
}
.fileinput-new.input-group .btn-file.btn-xs,
.fileinput-new .input-group .btn-file.btn-xs,
.fileinput-new.input-group .btn-file.btn-sm,
.fileinput-new .input-group .btn-file.btn-sm {
    border-radius: 0 3px 3px 0;
}
.fileinput-new.input-group .btn-file.btn-lg,
.fileinput-new .input-group .btn-file.btn-lg {
    border-radius: 0 4px 4px 0;
}
.form-group.has-warning .fileinput .fileinput-preview {
    color: #8a6d3b;
}
.form-group.has-warning .fileinput .thumbnail {
    border-color: #faebcc;
}
.form-group.has-error .fileinput .fileinput-preview {
    color: #ef351d;
}
.form-group.has-error .fileinput .thumbnail {
    border-color: #ef351d;
}
.form-group.has-success .fileinput .fileinput-preview {
    color: #3c763d;
}
.form-group.has-success .fileinput .thumbnail {
    border-color: #d6e9c6;
}
.input-group-addon:not(:first-child) {
    border-left: 0;
}
span.number {
    font-size: 12px;
    font-weight: 600;
    color: white;
    width: 20px;
    height: 20px;
    line-height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    text-align: center;
    background: #c3c3c3;
    display: inline-block;
}
[data-show-item] {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 1000ms max-height ease 0ms;
    -moz-transition: 1000ms max-height ease 0ms;
    -o-transition: 1000ms max-height ease 0ms;
    transition: 1000ms max-height ease 0ms;
}
[data-show-item].open {
    max-height: 3000px;
}
.cookiebar {
    font-size: 15px;
    color: var(--PRIMARY);
    margin-bottom: 20px;
    padding: 18px;
    border: 2px solid var(--PRIMARY);
    background: rgba(239, 107, 14, 0.12);
    display: none;
}
.cookiebar a,
.cookiebar span {
    text-decoration: underline;
}
.banner {
    height: 650px;
}
.banner.low {
    height: 410px;
}
.banner figure {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}
@media (max-width: 767px) {
    .banner {
        height: 460px;
    }
}
.header-label {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    padding: 12px 20px 12px 0;
    font-size: 12px;
    line-height: 26px;
    width: 146px;
    background-color: #ffffff;
}
.header-label .icon {
    margin-top: -6px;
    margin-left: 10px;
}
.header-label .header-corner {
    position: absolute;
    top: 0;
    left: -30px;
    width: 50px;
    height: 100%;
    background-color: #ffffff;
    -webkit-border-radius: 0 0 0 10px;
    -moz-border-radius: 0 0 0 10px;
    -o-border-radius: 0 0 0 10px;
    border-radius: 0 0 0 10px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    z-index: -1;
    -webkit-transform: matrix(1, 0, 0.6, 1, 0, 0);
    -moz-transform: matrix(1, 0, 0.6, 1, 0px, 0px);
    -ms-transform: matrix(1, 0, 0.6, 1, 0, 0);
    -o-transform: matrix(1, 0, 0.6, 1, 0, 0);
    transform: matrix(1, 0, 0.6, 1, 0, 0);
}
.dashboard .header-label {
    height: 70px;
    padding: 20px 0;
    width: 90px;
    text-align: center;
    line-height: 10px;
    left: 315px;
    top: -25px;
}
.dashboard .header-label span {
    position: relative;
    z-index: 2;
}
.dashboard .header-label .label-title,
.dashboard .header-label .header-corner {
    position: absolute;
}
.dashboard .header-label .icon {
    margin: auto;
}
.dashboard .header-label .label-title {
    top: 17px;
    left: 0;
}
.dashboard .header-label .header-corner {
    top: 0;
    width: 55px;
    z-index: 1;
    left: -30px;
}
.dashboard .header-label .header-corner + .header-corner {
    left: auto;
    right: -30px;
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -o-border-radius: 0 0 10px 0;
    border-radius: 0 0 10px 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transform: matrix(1, 0, -0.6, 1, 0, 0);
    -moz-transform: matrix(1, 0, -0.6, 1, 0px, 0px);
    -ms-transform: matrix(1, 0, -0.6, 1, 0, 0);
    -o-transform: matrix(1, 0, -0.6, 1, 0, 0);
    transform: matrix(1, 0, -0.6, 1, 0, 0);
}
@media (max-width: 767px) {
    .dashboard .header-label {
        left: 50%;
        margin-left: -45px;
        top: auto;
        bottom: 0;
    }
    .dashboard .header-label .header-corner {
        top: 0;
        width: 55px;
        z-index: 1;
        left: -30px;
        -webkit-transform: matrix(1, 0, -0.6, 1, 0, 0);
        -moz-transform: matrix(1, 0, -0.6, 1, 0px, 0px);
        -ms-transform: matrix(1, 0, -0.6, 1, 0, 0);
        -o-transform: matrix(1, 0, -0.6, 1, 0, 0);
        transform: matrix(1, 0, -0.6, 1, 0, 0);
        -webkit-border-radius: 10px 0 0 0;
        -moz-border-radius: 10px 0 0 0;
        -o-border-radius: 10px 0 0 0;
        border-radius: 10px 0 0 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
    .dashboard .header-label .header-corner + .header-corner {
        -webkit-border-radius: 0 10px 0 0;
        -moz-border-radius: 0 10px 0 0;
        -o-border-radius: 0 10px 0 0;
        border-radius: 0 10px 0 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        -webkit-transform: matrix(1, 0, 0.6, 1, 0, 0);
        -moz-transform: matrix(1, 0, 0.6, 1, 0px, 0px);
        -ms-transform: matrix(1, 0, 0.6, 1, 0, 0);
        -o-transform: matrix(1, 0, 0.6, 1, 0, 0);
        transform: matrix(1, 0, 0.6, 1, 0, 0);
    }
}
@media (min-width: 768px) {
    .dashboard .header-label {
        left: 345px;
    }
}
@media (min-width: 992px) {
    .dashboard .header-label {
        left: 310px;
    }
}
.footer-label {
    position: relative;
    font-size: 13px;
    width: 146px;
    margin: 0 auto;
}
.footer-label .label-title {
    position: absolute;
    top: 14px;
    left: 20px;
}
.footer-label .icon {
    margin-top: 20px;
}
#hint-credits {
    padding-right: 20px;
    font-size: 13px;
}
.progress-thin {
    height: 3px;
    background: #d9d9d9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.progress-thin .progress-bar {
    background: #21b3a2;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
@media (max-width: 991px) {
    #hint-credits {
        padding-left: 15px;
        padding-right: 15px;
    }
}
#hint-consultant {
    padding-right: 20px;
    font-size: 13px;
}
@media (max-width: 991px) {
    #hint-consultant {
        margin-top: 70px;
    }
}
@media (max-width: 767px) {
    #user-menu {
        margin: 0 15px 15px;
        border-bottom: 1px solid #c3c3c3;
    }
    #user-menu .btn-group.open .dropdown-toggle {
        border-color: transparent;
    }
    #user-menu .btn-group.open .dropdown-menu {
        margin-top: 0;
        position: relative;
        box-shadow: none;
        display: block;
        width: 100%;
    }
}
@media (min-width: 768px) {
    #user-menu {
        float: right;
    }
}
#invoices-overview table td {
    padding: 12px 20px;
    vertical-align: middle;
}
@media (max-width: 767px) {
    #invoices-overview table td {
        display: block;
        border: none;
        float: left;
        line-height: 20px;
        padding: 0;
    }
    #invoices-overview table tr {
        position: relative;
        display: block;
        margin: 0 15px;
        padding: 15px 0;
    }
    #invoices-overview table tr:before,
    #invoices-overview table tr:after {
        content: " ";
        display: table;
    }
    #invoices-overview table tr:after {
        clear: both;
    }
    #invoices-overview table tr:before,
    #invoices-overview table tr:after {
        content: " ";
        display: table;
    }
    #invoices-overview table tr:after {
        clear: both;
    }
    #invoices-overview table tr + tr {
        border-top: 1px solid #c3c3c3;
    }
    #invoices-overview table .invoice-id,
    #invoices-overview table .invoice-total,
    #invoices-overview table .invoice-date {
        width: 75%;
    }
    #invoices-overview table .invoice-download {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 25%;
    }
    #invoices-overview table .invoice-download a {
        display: inline-block;
        margin-bottom: 0;
        font-weight: normal;
        text-align: center;
        vertical-align: middle;
        touch-action: manipulation;
        background-image: none;
        border: 1px solid transparent;
        white-space: nowrap;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        border-radius: 3px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
        user-select: none;
        padding: 8px 12px;
        border-width: 1px;
        text-shadow: none;
        font-family: "klavika", sans-serif;
        font-weight: 500;
        cursor: pointer;
        -webkit-transition:
            300ms color ease 0ms,
            300ms border ease 0ms,
            300ms background ease 0ms;
        -moz-transition:
            300ms color ease 0ms,
            300ms border ease 0ms,
            300ms background ease 0ms;
        -o-transition:
            300ms color ease 0ms,
            300ms border ease 0ms,
            300ms background ease 0ms;
        transition:
            300ms color ease 0ms,
            300ms border ease 0ms,
            300ms background ease 0ms;
        position: relative;
        width: 40px;
        height: 40px;
        color: #fff;
        background-color: var(--PRIMARY);
        background-color: transparent;
        color: var(--PRIMARY);
        border-color: var(--PRIMARY);
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto 0;
        border-width: 2px;
    }
    #invoices-overview table .invoice-download a:focus,
    #invoices-overview table .invoice-download a:active:focus,
    #invoices-overview table .invoice-download a.active:focus,
    #invoices-overview table .invoice-download a.focus,
    #invoices-overview table .invoice-download a:active.focus,
    #invoices-overview table .invoice-download a.active.focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }
    #invoices-overview table .invoice-download a:hover,
    #invoices-overview table .invoice-download a:focus,
    #invoices-overview table .invoice-download a.focus {
        color: #333;
        text-decoration: none;
    }
    #invoices-overview table .invoice-download a:active,
    #invoices-overview table .invoice-download a.active {
        outline: 0;
        background-image: none;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        -o-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }
    #invoices-overview table .invoice-download a.disabled,
    #invoices-overview table .invoice-download a[disabled],
    fieldset[disabled] #invoices-overview table .invoice-download a {
        cursor: not-allowed;
        pointer-events: none;
        opacity: 0.65;
        filter: alpha(opacity=65);
        opacity: 0.0065;
        filter: alpha(opacity=0.65);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0.65)";
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }
    #invoices-overview table .invoice-download a:active,
    #invoices-overview table .invoice-download a.active {
        background-image: none;
    }
    #invoices-overview table .invoice-download a.btn-ghost:hover {
        background-color: transparent;
    }
    #invoices-overview table .invoice-download a:hover,
    #invoices-overview table .invoice-download a:focus,
    #invoices-overview table .invoice-download a.focus,
    #invoices-overview table .invoice-download a:active,
    #invoices-overview table .invoice-download a.active,
    .open > .dropdown-toggle#invoices-overview table .invoice-download a {
        color: #fff;
        background-color: var(--PRIMARY-HOVER);
        border-color: #b5510b;
    }
    #invoices-overview table .invoice-download a:active,
    #invoices-overview table .invoice-download a.active,
    .open > .dropdown-toggle#invoices-overview table .invoice-download a {
        background-image: none;
    }
    #invoices-overview table .invoice-download a.disabled,
    #invoices-overview table .invoice-download a[disabled],
    fieldset[disabled] #invoices-overview table .invoice-download a,
    #invoices-overview table .invoice-download a.disabled:hover,
    #invoices-overview table .invoice-download a[disabled]:hover,
    fieldset[disabled] #invoices-overview table .invoice-download a:hover,
    #invoices-overview table .invoice-download a.disabled:focus,
    #invoices-overview table .invoice-download a[disabled]:focus,
    fieldset[disabled] #invoices-overview table .invoice-download a:focus,
    #invoices-overview table .invoice-download a.disabled.focus,
    #invoices-overview table .invoice-download a[disabled].focus,
    fieldset[disabled] #invoices-overview table .invoice-download a.focus,
    #invoices-overview table .invoice-download a.disabled:active,
    #invoices-overview table .invoice-download a[disabled]:active,
    fieldset[disabled] #invoices-overview table .invoice-download a:active,
    #invoices-overview table .invoice-download a.disabled.active,
    #invoices-overview table .invoice-download a[disabled].active,
    fieldset[disabled] #invoices-overview table .invoice-download a.active {
        background-color: var(--PRIMARY);
        border-color: var(--PRIMARY);
    }
    #invoices-overview table .invoice-download a .badge {
        color: var(--PRIMARY);
        background-color: #fff;
    }
    #invoices-overview table .invoice-download a.btn-ghost {
        background-color: transparent;
        color: var(--PRIMARY);
        border-color: var(--PRIMARY);
    }
    #invoices-overview table .invoice-download a.btn-ghost:hover,
    #invoices-overview table .invoice-download a.btn-ghost:focus,
    #invoices-overview table .invoice-download a.btn-ghost:active,
    #invoices-overview table .invoice-download a.btn-ghost.active,
    .open
        .dropdown-toggle#invoices-overview
        table
        .invoice-download
        a.btn-ghost {
        color: #fff;
        background-color: var(--PRIMARY);
        border-color: var(--PRIMARY);
    }
    #invoices-overview table .invoice-download a.btn-ghost:hover.btn-psuedo,
    #invoices-overview table .invoice-download a.btn-ghost:focus.btn-psuedo,
    #invoices-overview table .invoice-download a.btn-ghost:active.btn-psuedo,
    #invoices-overview table .invoice-download a.btn-ghost.active.btn-psuedo,
    .open
        .dropdown-toggle#invoices-overview
        table
        .invoice-download
        a.btn-ghost.btn-psuedo {
        cursor: default;
        background-color: transparent;
        color: var(--PRIMARY);
        border-color: var(--PRIMARY);
    }
    #invoices-overview table .invoice-download a:hover,
    #invoices-overview table .invoice-download a:focus,
    #invoices-overview table .invoice-download a:active,
    #invoices-overview table .invoice-download a.active,
    .open .dropdown-toggle#invoices-overview table .invoice-download a {
        color: #fff;
        background-color: var(--PRIMARY);
        border-color: var(--PRIMARY);
    }
    #invoices-overview table .invoice-download a:hover.btn-psuedo,
    #invoices-overview table .invoice-download a:focus.btn-psuedo,
    #invoices-overview table .invoice-download a:active.btn-psuedo,
    #invoices-overview table .invoice-download a.active.btn-psuedo,
    .open
        .dropdown-toggle#invoices-overview
        table
        .invoice-download
        a.btn-psuedo {
        cursor: default;
        background-color: transparent;
        color: var(--PRIMARY);
        border-color: var(--PRIMARY);
    }
    #invoices-overview table .invoice-download a:hover,
    #invoices-overview table .invoice-download a:focus,
    #invoices-overview table .invoice-download a:active {
        background-color: transparent;
    }
    #invoices-overview table .invoice-download a .icon {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    #invoices-overview table .invoice-id a,
    #invoices-overview table .invoice-total {
        color: #717171;
    }
    #invoices-overview table .invoice-total {
        font-weight: 700;
    }
    #invoices-overview table .invoice-date {
        color: #c3c3c3;
    }
}
.table-overview .panel-heading .pagination-limit {
    font-size: 15px;
}
.table-overview .panel-heading .pagination-limit select {
    height: 38px;
}
.table-overview table > tbody > tr > td {
    padding: 20px;
    vertical-align: middle;
}
.table-overview table > thead > tr > th {
    padding: 10px 20px;
}
.table-overview .table-btn-group .btn-remove {
    height: 36px;
    padding-top: 8px;
    padding-bottom: 8px;
}
@media (max-width: 767px) {
    .table-overview .panel-heading {
        margin: 0 15px;
        padding: 15px 20px;
    }
    .table-overview .panel-heading .title {
        padding-left: 0;
        padding-right: 0;
    }
    .table-overview .panel-heading .btn-group-container {
        padding: 15px 0 0;
        margin-top: 15px;
        border-top: 1px solid #d9d9d9;
    }
    .table-overview .panel-heading .btn-group-container:before,
    .table-overview .panel-heading .btn-group-container:after {
        content: " ";
        display: table;
    }
    .table-overview .panel-heading .btn-group-container:after {
        clear: both;
    }
    .table-overview .panel-heading .btn-group-container:before,
    .table-overview .panel-heading .btn-group-container:after {
        content: " ";
        display: table;
    }
    .table-overview .panel-heading .btn-group-container:after {
        clear: both;
    }
    .table-overview .panel-heading .pagination-limit {
        padding-left: 0;
    }
    .table-overview .panel-heading .pagination-limit.limit-lg {
        padding: 0;
        width: 100%;
    }
    .table-overview table > tbody > tr,
    .table-overview table > thead > tr {
        position: relative;
        display: block;
        margin: 0 15px;
        padding: 15px 0;
    }
    .table-overview table > tbody > tr:before,
    .table-overview table > thead > tr:before,
    .table-overview table > tbody > tr:after,
    .table-overview table > thead > tr:after {
        content: " ";
        display: table;
    }
    .table-overview table > tbody > tr:after,
    .table-overview table > thead > tr:after {
        clear: both;
    }
    .table-overview table > tbody > tr:before,
    .table-overview table > thead > tr:before,
    .table-overview table > tbody > tr:after,
    .table-overview table > thead > tr:after {
        content: " ";
        display: table;
    }
    .table-overview table > tbody > tr:after,
    .table-overview table > thead > tr:after {
        clear: both;
    }
    .table-overview table > tbody > tr > td,
    .table-overview table > thead > tr > td,
    .table-overview table > tbody > tr > th,
    .table-overview table > thead > tr > th {
        display: block;
        border: none;
        float: left;
        clear: both;
        width: 100%;
        line-height: 20px;
        padding: 0;
        text-align: left;
    }
    .table-overview table > tbody > tr + tr,
    .table-overview table > thead > tr + tr {
        border-top: 1px solid #d9d9d9;
    }
    .table-overview table > thead > tr {
        border-bottom: 1px solid #d9d9d9;
    }
    .table-overview .table-btn-group {
        padding-top: 10px;
    }
}
@media (min-width: 768px) {
    .table-overview .panel-heading {
        padding: 15px 20px;
    }
    .table-overview .panel-heading .title {
        padding-top: 10px;
    }
    .table-overview .table-btn-group {
        width: 170px;
    }
    .table-overview .table-btn-group a {
        float: right;
    }
}
#messages .message-subject {
    border-bottom: 1px solid #d9d9d9;
    padding: 20px 0;
    margin: 0 15px;
}
.message {
    margin-bottom: 20px;
}
.message .message-body {
    padding: 15px;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.message .message-body p {
    line-height: 24px;
}
.message .message-body p:last-child {
    margin-bottom: 0;
}
.message .message-body .form-group.has-error:after,
.message .message-body .form-group.has-success:after {
    top: 40px;
    right: 15px;
}
.message.message-reply {
    margin-bottom: 0;
}
.message.message-reply .message-body {
    padding: 2px;
}
.message.message-reply .message-body .form-control {
    border: none;
}
.message.message-reply .message-body .help-block {
    padding-left: 15px;
    padding-bottom: 15px;
}
.message.message-reply .message-body .form-group.has-error:after,
.message.message-reply .message-body .form-group.has-success:after {
    top: 10px;
    right: 10px;
}
@media (max-width: 480px) {
    #messages .message-subject {
        padding: 20px 0 20px;
        margin: 0 15px 10px;
        border-bottom: 1px solid #d9d9d9;
    }
    #messages.messages-new .message-body {
        padding: 0;
        border: 0;
    }
}
@media (min-width: 768px) {
    .message .message-body {
        padding: 15px 30px 15px 15px;
    }
    .message.odd .message-body,
    .message.message-reply .message-body {
        position: relative;
    }
    .message.odd .message-body:after,
    .message.message-reply .message-body:after,
    .message.odd .message-body:before,
    .message.message-reply .message-body:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
    }
    .message.odd .message-body:after,
    .message.message-reply .message-body:after {
        right: 100%;
        top: 50px;
        margin-top: -10px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid #ffffff;
    }
    .message.odd .message-body:before,
    .message.message-reply .message-body:before {
        right: 100%;
        top: 50px;
        margin-top: -12px;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 12px solid;
        border-right-color: inherit;
    }
    .message.even .message-body {
        position: relative;
    }
    .message.even .message-body:after,
    .message.even .message-body:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
    }
    .message.even .message-body:after {
        left: 100%;
        top: 50px;
        margin-top: -10px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #ffffff;
    }
    .message.even .message-body:before {
        left: 100%;
        top: 50px;
        margin-top: -12px;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 12px solid;
        border-left-color: inherit;
    }
    .message.message-reply {
        margin-bottom: 0;
    }
    .message.message-reply .avatar-container {
        padding-top: 0;
    }
    .message.message-reply .message-body {
        position: relative;
        min-height: 0;
        margin-top: 10px;
    }
    .message.message-reply .message-body:before,
    .message.message-reply .message-body:after {
        top: 30px;
    }
    .message.message-reply .message-body .form-group.has-error,
    .message.message-reply .message-body .form-group.has-success {
        overflow: visible;
    }
    .message.message-reply .message-body .form-control {
        border: none;
    }
    .message.message-reply .message-body .help-block {
        position: absolute;
        padding: 0;
        bottom: -30px;
    }
    .message.message-reply .message-body .form-group.has-error:after,
    .message.message-reply .message-body .form-group.has-success:after {
        top: 15px;
        right: 15px;
    }
    #messages .message .message-body {
        min-height: 180px;
    }
    #messages .message .message-body:nth-child(odd) .message-body,
    #messages .message .message-body.message-reply .message-body {
        position: relative;
    }
    #messages .message .message-body:nth-child(odd) .message-body:after,
    #messages .message .message-body.message-reply .message-body:after,
    #messages .message .message-body:nth-child(odd) .message-body:before,
    #messages .message .message-body.message-reply .message-body:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
    }
    #messages .message .message-body:nth-child(odd) .message-body:after,
    #messages .message .message-body.message-reply .message-body:after {
        right: 100%;
        top: 90px;
        margin-top: -10px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid #ffffff;
    }
    #messages .message .message-body:nth-child(odd) .message-body:before,
    #messages .message .message-body.message-reply .message-body:before {
        right: 100%;
        top: 90px;
        margin-top: -12px;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 12px solid;
        border-right-color: inherit;
    }
    #messages .message .message-body:nth-child(even) .message-body {
        position: relative;
    }
    #messages .message .message-body:nth-child(even) .message-body:after,
    #messages .message .message-body:nth-child(even) .message-body:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
    }
    #messages .message .message-body:nth-child(even) .message-body:after {
        left: 100%;
        top: 90px;
        margin-top: -10px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #ffffff;
    }
    #messages .message .message-body:nth-child(even) .message-body:before {
        left: 100%;
        top: 90px;
        margin-top: -12px;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 12px solid;
        border-left-color: inherit;
    }
}
.email-settings label {
    width: 100%;
    display: block;
    margin: 0;
}
@media (max-width: 767px) {
    .image-404 img {
        float: right !important;
        margin-right: -15px;
    }
}
.products-row {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
    .products-overview .products-row,
    .products-overview .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    .products-overview div[class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    .products-overview img {
        display: block;
        max-width: 100%;
        height: auto;
    }
}
.configurator-row {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #d9d9d9;
}
.configurator-row.row-small {
    padding-top: 20px;
    padding-bottom: 20px;
}
.chart {
    position: relative;
}
.chart canvas {
    display: block;
    margin: 70px auto 50px;
    padding: 0;
    background: url("../images/chart-bg.png") no-repeat center center;
    background-size: 196px 221px;
}
.chart .indicator {
    font-family: "klavika", sans-serif;
    position: absolute;
    text-transform: uppercase;
}
.chart .indicator .indicator-small {
    display: block;
    text-transform: lowercase;
}
.chart .indicator-top {
    top: 80px;
    width: 100%;
    text-align: center;
    left: 0;
}
.chart .indicator-bottom {
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}
.chart .indicator-right {
    top: 225px;
    right: 20px;
    text-align: center;
}
.chart .indicator-left {
    top: 245px;
    left: 20px;
    text-align: center;
}
.chart .chart-totals {
    position: absolute;
    top: 228px;
    left: 0;
    right: 0;
    margin: auto;
    width: 74px;
    height: 82px;
    text-align: center;
    line-height: 82px;
    font-size: 20px;
    font-weight: bold;
    color: #3f3f3f;
    font-family: "klavika", sans-serif;
    background: url("../images/chart-totals-bg.png") no-repeat center center;
    background-size: 100%;
}
@media (max-width: 767px) {
    .configurator-row:last-child {
        border-bottom: 1px solid #d9d9d9;
    }
    .configurator .btn.active {
        background-color: transparent;
        border-color: #c3c3c3;
        color: #c3c3c3;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }
    .chart {
        padding: 0;
    }
    .chart canvas {
        max-width: 290px;
    }
    .chart .indicator-top {
        top: 60px;
    }
    .chart .indicator-bottom {
        bottom: -20px;
    }
    .chart .indicator-right {
        top: 205px;
    }
    .chart .indicator-left {
        top: 225px;
    }
    .chart .chart-totals {
        top: 208px;
    }
}
@media (min-width: 768px) {
    .configurator .configure {
        border-right: 1px solid #d9d9d9;
    }
    .chart .indicator-top {
        top: 80px;
    }
    .chart .indicator-right {
        top: 225px;
        right: 10px;
    }
    .chart .indicator-left {
        top: 245px;
        left: 10px;
    }
    .chart .indicator-bottom {
        bottom: 20px;
    }
    .chart .chart-totals {
        top: 228px;
    }
}
@media (min-width: 1200px) {
    .configurator-row {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .chart .indicator-top {
        top: 80px;
    }
    .chart .indicator-right {
        top: 225px;
        right: 20px;
    }
    .chart .indicator-left {
        top: 245px;
        left: 20px;
    }
    .chart .indicator-bottom {
        bottom: 20px;
    }
    .chart .chart-totals {
        top: 228px;
    }
    .configurator-row.single {
        padding-top: 60px;
        padding-bottom: 15px;
    }
    .configurator-row.unlimited {
        padding-top: 20px;
        padding-bottom: 15px;
    }
    .configurator-row.database {
        padding-top: 90px;
        padding-bottom: 15px;
    }
}
#cart-sidebar .cart-overview {
    list-style: none;
    padding: 0;
    margin: 0;
}
#cart-sidebar .cart-overview:before,
#cart-sidebar .cart-overview:after {
    content: " ";
    display: table;
}
#cart-sidebar .cart-overview:after {
    clear: both;
}
#cart-sidebar .cart-overview:before,
#cart-sidebar .cart-overview:after {
    content: " ";
    display: table;
}
#cart-sidebar .cart-overview:after {
    clear: both;
}
#cart-sidebar .offer-overview {
    border-bottom: 1px solid #d9d9d9;
}
#cart-sidebar .cart-row {
    padding: 15px 0;
}
#cart-sidebar .cart-row:before,
#cart-sidebar .cart-row:after {
    content: " ";
    display: table;
}
#cart-sidebar .cart-row:after {
    clear: both;
}
#cart-sidebar .cart-row:before,
#cart-sidebar .cart-row:after {
    content: " ";
    display: table;
}
#cart-sidebar .cart-row:after {
    clear: both;
}
#cart-sidebar .cart-row + .cart-row {
    border-top: 1px solid #d9d9d9;
}
#cart-sidebar .product-name {
    font-size: 16px;
    font-family: "klavika", sans-serif;
    font-weight: 700;
}
#cart-sidebar .product-name .subtitle {
    display: block;
    color: #858484;
    font-size: 13px;
    font-weight: normal;
}
#cart-sidebar .product-price {
    font-size: 17px;
    text-align: right;
}
#cart-sidebar .discount-container {
    border-top: 1px solid #d9d9d9;
    padding: 15px;
}
#cart-sidebar .discount-container:before,
#cart-sidebar .discount-container:after {
    content: " ";
    display: table;
}
#cart-sidebar .discount-container:after {
    clear: both;
}
#cart-sidebar .discount-container:before,
#cart-sidebar .discount-container:after {
    content: " ";
    display: table;
}
#cart-sidebar .discount-container:after {
    clear: both;
}
#cart-sidebar .discount-container .form-control {
    border-width: 2px;
    border-color: #f6f6f6;
    font-size: 23px;
    font-family: "klavika", sans-serif;
}
#cart-sidebar .discount-container .form-control::-moz-placeholder {
    font-size: 13px;
    line-height: 30px;
}
#cart-sidebar .discount-container .form-control:-ms-input-placeholder {
    font-size: 13px;
    line-height: 30px;
}
#cart-sidebar .discount-container .form-control::-webkit-input-placeholder {
    font-size: 13px;
    line-height: 30px;
}
#cart-sidebar .discount-container .btn {
    background-color: #f6f6f6;
    border-color: #f6f6f6;
    min-height: 50px;
}
#cart-sidebar .discount-container .btn.disabled,
#cart-sidebar .discount-container .btn:disabled {
    color: #d9d9d9;
    opacity: 1;
}
#cart-sidebar .discount-container .btn:hover,
#cart-sidebar .discount-container .btn:active,
#cart-sidebar .discount-container .btn:focus,
#cart-sidebar .discount-container .btn.active {
    color: #ffffff;
    background-color: #717171;
    border-color: #717171;
}
#cart-sidebar .discount-container .discount-price {
    color: var(--PRIMARY);
    font-size: 17px;
    font-family: "klavika", sans-serif;
    font-weight: 700;
    text-align: right;
}
#cart-sidebar .discounted .btn {
    font-size: 40px;
    line-height: 26px;
    padding-top: 2px;
}
#cart-sidebar .panel-footer {
    border-top: 1px solid #d9d9d9;
    background-color: transparent;
}
#sidebar-right.fixed {
    top: 20px;
}
.cart-steps {
    position: relative;
    list-style: none;
    float: right;
    padding: 0;
    margin: 0 20px 0 0;
    padding: 13px 0;
}
.cart-steps:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 1px;
    width: 100%;
    background-color: #d9d9d9;
}
.cart-steps li {
    float: left;
    width: 23px;
    height: 15px;
    line-height: 15px;
    font-size: 15px;
    background-color: #c3c3c3;
    position: relative;
    text-align: center;
    color: #ffffff;
    font-family: "klavika", sans-serif;
    font-weight: 500;
}
.cart-steps li + li {
    margin-left: 20px;
}
.cart-steps li.active {
    background-color: var(--PRIMARY);
}
.cart-steps li.active:before {
    border-bottom-color: var(--PRIMARY);
}
.cart-steps li.active:after {
    border-top-color: var(--PRIMARY);
}
.cart-steps li:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 6px solid #c3c3c3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.cart-steps li:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 6px solid #c3c3c3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
@media (max-width: 767px) {
    .cart-steps {
        float: left;
    }
}
#order-single .tier-discounts {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}
#order-single .tier-discounts li {
    padding: 15px 0;
    width: 26%;
}
#order-single .tier-discounts li + li {
    width: 24.3333331%;
    border-left: 1px dashed #c3c3c3;
    padding-left: 20px;
}
#order-single .tier-discounts li span {
    display: block;
    font-family: "klavika", sans-serif;
    font-weight: 500;
}
#order-single select.form-control {
    font-family: "klavika", sans-serif;
    font-weight: 500;
}
#order-unlimited .qty-title {
    line-height: 40px;
}
.success-steps {
    list-style: none;
    padding: 0;
}
.success-steps .step {
    text-align: center;
    padding: 50px 70px 80px;
    font-family: "klavika", sans-serif;
}
.success-steps .counter-increments {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    line-height: 30px;
    background-color: #3f3f3f;
    color: #ffffff;
    font-size: 20px;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-family: "klavika", sans-serif;
    font-weight: 700;
    text-align: center;
}
.success-steps .step-1 .counter-increments {
    background-color: #858484;
}
.success-steps .step-2 {
    background-color: #f6f6f6;
}
.success-steps .step-3 {
    color: #ffffff;
    background-color: var(--PRIMARY);
}
.success-steps .step-3 .counter-increments {
    background-color: #ffffff;
    color: var(--PRIMARY);
}
@media (max-width: 767px) {
    .success-steps .step {
        padding: 45px 70px 60px;
    }
    .success-steps h2,
    .success-steps p {
        max-width: 225px;
        margin-left: auto;
        margin-right: auto;
    }
    .success-steps .step-1 {
        background: transparent url("../images/success-step-1-bg-xs.jpg")
            no-repeat center center;
    }
    .success-steps .step-2 {
        background: transparent url("../images/success-step-2-bg-xs.jpg")
            no-repeat center center;
    }
    .success-steps .step-3 {
        background: transparent url("../images/success-step-3-bg-xs.jpg")
            no-repeat center center;
    }
}
@media (min-width: 768px) {
    .success-steps .step {
        padding: 30px 20px 60px;
    }
    .success-steps .step-1 {
        background: transparent url("../images/success-step-1-bg-md.jpg")
            no-repeat center center;
    }
    .success-steps .step-2 {
        background: transparent url("../images/success-step-2-bg-md.jpg")
            no-repeat center center;
    }
    .success-steps .step-3 {
        background: transparent url("../images/success-step-3-bg-md.jpg")
            no-repeat center center;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .success-steps .step {
        border: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }
    .success-steps .step h2 {
        font-size: 20px;
    }
}
@media (min-width: 992px) {
    .success-steps .step {
        padding: 50px 35px 80px;
    }
    .success-steps .step-1 {
        background: transparent url("../images/success-step-1-bg-lg.jpg")
            no-repeat center center;
    }
    .success-steps .step-2 {
        background: #f6f6f6 url("../images/success-step-2-bg-lg.jpg") no-repeat
            center center;
    }
    .success-steps .step-3 {
        background: var(--PRIMARY) url("../images/success-step-3-bg-lg.jpg")
            no-repeat center center;
    }
}
@media (min-width: 1200px) {
    .success-steps .step {
        padding: 50px 70px 80px;
    }
}
.address-block {
    line-height: 25px;
    padding-left: 50px;
}
.address-block .prefix {
    display: inline-block;
    margin-left: -50px;
    width: 50px;
    font-family: "klavika", sans-serif;
    font-weight: 700;
}
.invoice {
    padding: 50px;
}
.invoice table {
    width: 100%;
}
.invoice p,
.invoice td {
    line-height: 25px;
}
.invoice strong,
.invoice thead td {
    font-weight: 700;
    font-family: "klavika", sans-serif;
    color: #645e5e;
}
.invoice .invoice-products {
    border: 1px solid #e1e1e1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.invoice .invoice-products table tr + tr {
    border-top: 1px solid #e1e1e1;
}
.invoice .invoice-products table td + td {
    border-left: 1px solid #e1e1e1;
}
.invoice .invoice-products thead td {
    padding: 8px 20px;
}
.invoice .invoice-products tbody {
    border-top: 1px solid #e1e1e1;
}
.invoice .invoice-products tbody td {
    padding: 8px 20px;
}
.invoice .invoice-products tbody td strong {
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.invoice .invoice-totals .bordered {
    border-top: 1px solid #e1e1e1;
}
.invoice .invoice-totals .bordered td {
    padding-top: 10px;
}
.invoice .invoice-totals .bordered-before td {
    padding-bottom: 10px;
}
#search .form-group.has-error:after,
#search .form-group.has-success:after {
    right: 15px;
}
#search .input-group .input-group-btn .btn {
    border-left-color: #d9d9d9;
}
#filter a.active {
    border-color: var(--PRIMARY);
    color: var(--PRIMARY);
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
nav.filter ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
nav.filter ul li {
    border-top: 1px solid #c3c3c3;
}
nav.filter ul li > a {
    font-weight: bold;
    color: #3f3f3f;
    text-decoration: none;
}
nav.filter ul li:last-child {
    border-bottom: 1px solid #c3c3c3;
}
#jobs-overview table .job-title a {
    display: block;
}
#jobs-overview table .job-title a:hover,
#jobs-overview table .job-title a:focus,
#jobs-overview table .job-title a:active {
    color: #21b3a2;
}
@media (max-width: 767px) {
    #jobs-overview table tr {
        position: relative;
        padding-right: 70px;
    }
    #jobs-overview table .job-switch {
        display: block;
        width: 60px;
        position: absolute;
        top: 5px;
        right: 0;
        padding-top: 10px;
    }
}
@media (min-width: 1200px) {
    #jobs-overview .job-btns .btn {
        min-width: 180px;
    }
}
.statistics .panel-body {
    padding-bottom: 0;
}
.statistics .donut-container {
    padding-top: 30px;
    padding-bottom: 30px;
}
.statistics .donut-container canvas {
    display: block;
    margin: 0 auto 30px;
}
.statistics .chart-container .indicator {
    position: absolute;
    top: -5px;
    left: 50%;
    width: 2px;
    height: 30px;
    background-color: #3f3f3f;
}
.statistics .chart-container .indicator.rotated {
    top: 18px;
    left: 50%;
    margin-left: -60px;
    -webkit-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
    -webkit-backface-visibility: hidden;
    outline: 1px solid transparent;
}
.statistics .chart-container .chart-data {
    position: absolute;
    width: 100%;
    top: 75px;
    left: 0;
    font-family: "klavika", sans-serif;
    font-weight: 700;
    font-size: 50px;
}
.statistics .linechart-container {
    min-height: 500px;
}
.statistics .review {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 20px;
}
.statistics .review .btn {
    min-width: 134px;
}
.statistics .review .survey div[class*="col-"] {
    padding-left: 7.5%;
    padding-right: 7.5%;
}
.statistics .review .survey div[class*="col-"]:last-child {
    border-left: 1px solid #d9d9d9;
}
.statistics .review .survey-response {
    padding-top: 20px;
    padding-bottom: 20px;
}
#statistics-jobs {
    position: relative;
    padding-top: 20px;
    padding-bottom: 60px;
    padding-left: 40px;
}
#statistics-jobs:before,
#statistics-jobs:after {
    content: " ";
    display: table;
}
#statistics-jobs:after {
    clear: both;
}
#statistics-jobs:before,
#statistics-jobs:after {
    content: " ";
    display: table;
}
#statistics-jobs:after {
    clear: both;
}
#statistics-jobs .ruler {
    display: block;
    position: absolute;
}
#statistics-jobs .ruler .icon {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
#statistics-jobs .ruler.y-axis {
    top: 80px;
    left: -60px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
#statistics-jobs .ruler.x-axis {
    bottom: 15px;
    right: 0;
}
#job-score .score-wrapper {
    position: relative;
}
#job-score .score-label-left,
#job-score .score-label-right {
    position: absolute;
    top: 15px;
    left: 15px;
}
#job-score .score-label-right {
    right: 15px;
}
#job-score .score-container {
    float: none;
    margin: 0 auto;
    height: 30px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 7px;
    padding-bottom: 7px;
    border-left: 2px solid #717171;
    border-right: 2px solid #717171;
    -webkit-transition: ease all 0.6s;
    -o-transition: ease all 0.6s;
    transition: ease all 0.6s;
}
#job-score .score-container.score-ok .score-bar {
    background-color: #21b3a2;
}
#job-score .score-indicator,
#job-score .score-bar {
    height: 15px;
    background-color: #f6f6f6;
}
#job-score .score-bar {
    width: 0%;
    display: block;
    background-color: #f8d14b;
    -webkit-transition: ease all 2s;
    -o-transition: ease all 2s;
    transition: ease all 2s;
}
#job-score .score-tooltip {
    display: block;
    position: absolute;
    width: 45px;
    height: 45px;
    bottom: -10px;
    left: 0;
    margin-left: -20px;
    background-color: #ffffff;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: relative;
    -webkit-transition: ease all 2s;
    -o-transition: ease all 2s;
    transition: ease all 2s;
}
#job-score .score-tooltip:after,
#job-score .score-tooltip:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}
#job-score .score-tooltip:after {
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #ffffff;
}
#job-score .score-tooltip:before {
    bottom: 100%;
    left: 50%;
    margin-left: -7px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid;
    border-bottom-color: inherit;
}
@media (max-width: 767px) {
    .statistics .mobile-divider {
        margin: 10px 15px 0;
        padding: 10px 0 0;
        border-top: 1px solid #d9d9d9;
    }
    .statistics .donut-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .statistics .chart-container {
        margin-top: 40px;
    }
    .statistics .review .survey {
        margin: 0;
    }
    .statistics .review .survey div[class*="col-"] {
        padding-left: 20px;
        padding-right: 20px;
    }
    .statistics .review .survey div[class*="col-"]:first-child {
        border-bottom: 1px solid #d9d9d9;
    }
    .statistics .review .survey div[class*="col-"]:last-child {
        border-left: none;
    }
    .statistics .review .survey-response .message {
        margin-bottom: 0;
    }
    .statistics .review .survey-response .message-body {
        margin-top: 30px;
        position: relative;
    }
    .statistics .review .survey-response .message-body:after,
    .statistics .review .survey-response .message-body:before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
    }
    .statistics .review .survey-response .message-body:after {
        bottom: 100%;
        left: 50%;
        margin-left: -10px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ffffff;
    }
    .statistics .review .survey-response .message-body:before {
        bottom: 100%;
        left: 50%;
        margin-left: -12px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid;
        border-bottom-color: inherit;
    }
    #job-score .score-wrapper {
        margin: 30px 0 0;
    }
    #job-score .score-label-left,
    #job-score .score-label-right {
        top: -15px;
    }
    #job-score .score-label-left {
        left: 0;
    }
    #job-score .score-label-right {
        right: 0;
    }
    #recommendations ul {
        margin-left: -5px;
        margin-right: -5px;
    }
    #recommendations ul:before,
    #recommendations ul:after {
        content: " ";
        display: table;
    }
    #recommendations ul:after {
        clear: both;
    }
    #recommendations ul:before,
    #recommendations ul:after {
        content: " ";
        display: table;
    }
    #recommendations ul:after {
        clear: both;
    }
    #recommendations li {
        width: 50%;
        float: left;
        margin-bottom: 10px;
    }
    #recommendations li .pill {
        display: block;
        width: 100%;
    }
    #recommendations li:last-child {
        margin-bottom: 0;
    }
}
#statistics-profile .chart-container {
    padding-top: 30px;
}
#statistics-profile canvas {
    display: block;
    margin: 0 auto 30px;
}
#statistics-profile .chart-data {
    position: absolute;
    width: 100%;
    top: 100px;
    left: 0;
    font-family: "klavika", sans-serif;
    font-weight: bold;
    line-height: 1.1;
    color: inherit;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 17px;
    font-size: 18px;
}
#statistics-profile .chart-data small,
#statistics-profile .chart-data .small {
    font-weight: normal;
    line-height: 1;
    color: #c3c3c3;
}
#statistics-profile .chart-data small,
#statistics-profile .chart-data .small {
    font-size: 75%;
}
#statistics-profile .legend ul {
    display: block;
    margin: 0 auto;
    width: 180px;
}
#statistics-profile .legend ul li {
    position: relative;
    padding-left: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#statistics-profile .tip-color {
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    width: 14px;
    height: 14px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
@media (max-width: 767px) {
    #statistics-profile .legend ul {
        width: 100%;
    }
}
#network img {
    max-width: 100%;
    height: auto;
}
#network .check-circle {
    position: absolute;
    margin: auto;
    display: inline-block;
    width: 21px;
    height: 21px;
    border: 3px solid #c3c3c3;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
#network .check-circle .icon {
    display: none;
}
#network .check-circle.active .icon {
    display: block;
}
#network .branche {
    position: absolute;
    margin: auto;
    background-color: #c3c3c3;
}
#network .logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
#network .logo-qubein {
    left: 0;
    width: 82px;
    height: 38px;
}
#network .logo-qubein img {
    margin-top: -8px;
}
#network .network-container {
    position: relative;
    padding-left: 215px;
    margin-top: 20px;
    line-height: 20px;
}
#network .network-container > .check-circle {
    top: 0;
    bottom: 0;
    left: 100px;
}
#network .network-container > .branche {
    top: 0;
    bottom: 0;
    left: 126px;
    height: 5px;
    width: 90px;
}
#network .network {
    list-style: none;
    padding: 0;
    margin: 0;
}
#network .network-branche {
    position: relative;
    height: 60px;
    padding-left: 100px;
}
#network .network-branche .btn-container {
    padding-top: 10px;
}
#network .network-branche .branche {
    position: absolute;
    left: 0;
    margin: auto;
    background-color: #c3c3c3;
}
#network .network-branche .branche.branche-horizontal {
    top: 0;
    bottom: 0;
    width: 40px;
    height: 5px;
}
#network .network-branche .branche.branche-vertical {
    width: 5px;
    height: 100%;
}
#network .network-branche .check-circle {
    top: 0;
    bottom: 0;
    left: 43px;
}
#network .network-branche .logo {
    padding-top: 7px;
    width: 100%;
    height: 41px;
}
#network .network-branche .logo img {
    display: block;
    height: 100%;
    width: auto;
    max-height: 31px;
}
#network .network-branche:not(.active) img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    /* Firefox 3.5+ */
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+ & Safari 6+ */
    opacity: 0.5;
}
#network .network-branche.active .icon {
    display: block;
}
#network .network-branche:first-child .branche-vertical,
#network .network-branche:last-child .branche-vertical {
    height: 50%;
}
#network .network-branche:first-child .branche-horizontal {
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
    -o-border-radius: 5px 0 0 0;
    border-radius: 5px 0 0 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
#network .network-branche:first-child .branche-vertical {
    top: 50%;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
#network .network-branche:last-child .branche-horizontal {
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    -o-border-radius: 0 0 0 5px;
    border-radius: 0 0 0 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
#network .network-branche:last-child .branche-vertical {
    bottom: 50%;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
@media (max-width: 767px) {
    #network .logo-qubein {
        top: 0;
        left: 0;
        bottom: auto;
        right: 0;
    }
    #network .logo-qubein img {
        margin-top: 0;
        margin-left: 5px;
    }
    #network .branches-mobile {
        display: block;
        position: absolute;
        top: 75px;
        width: 100%;
        height: 35px;
    }
    #network .branches-mobile .branche-vertical {
        top: 0;
        left: 0;
        right: 0;
        height: 35px;
        width: 5px;
        -webkit-border-radius: 0 0 5px 0;
        -moz-border-radius: 0 0 5px 0;
        -o-border-radius: 0 0 5px 0;
        border-radius: 0 0 5px 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
    #network .branches-mobile .branche-horizontal {
        width: 50%;
        height: 5px;
        left: 0;
        bottom: 0;
        -webkit-border-radius: 5px 0 0 0;
        -moz-border-radius: 5px 0 0 0;
        -o-border-radius: 5px 0 0 0;
        border-radius: 5px 0 0 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
    #network .network-container {
        padding-left: 0;
        padding-top: 130px;
    }
    #network .network-container > .check-circle {
        top: 50px;
        right: 0;
        bottom: auto;
        left: 0;
    }
    #network .network-branche {
        position: relative;
        height: 100px;
        padding-left: 50px;
    }
    #network .network-branche .logo {
        position: relative;
    }
    #network .network-branche .branche {
        position: absolute;
        left: 0;
        margin: auto;
        background-color: #c3c3c3;
    }
    #network .network-branche .branche.branche-horizontal {
        top: 9px;
        bottom: auto;
        width: 20px;
        height: 5px;
    }
    #network .network-branche .branche.branche-vertical {
        top: -23px;
        width: 5px;
        height: 100%;
    }
    #network .network-branche .btn-container {
        width: 100%;
        clear: both;
        padding-top: 0;
    }
    #network .network-branche .btn-container .btn {
        width: 100%;
    }
    #network .network-branche .check-circle {
        top: 3px;
        bottom: auto;
        left: 23px;
    }
    #network .network-branche .logo {
        padding-top: 0;
        width: 100%;
    }
    #network .network-branche .logo img {
        width: auto;
        max-height: 30px;
        max-width: 100%;
        height: auto;
    }
    #network .network-branche:first-child .branche-horizontal {
        -webkit-border-radius: 5px 0 0 0;
        -moz-border-radius: 5px 0 0 0;
        -o-border-radius: 5px 0 0 0;
        border-radius: 5px 0 0 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
    #network .network-branche:first-child .branche-vertical {
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        -o-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
    #network .network-branche:last-child .branche-horizontal {
        -webkit-border-radius: 0 0 0 5px;
        -moz-border-radius: 0 0 0 5px;
        -o-border-radius: 0 0 0 5px;
        border-radius: 0 0 0 5px;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
    #network .network-branche:last-child .branche-vertical {
        top: auto;
        bottom: 88px;
        -webkit-border-radius: 0 0 5px 5px;
        -moz-border-radius: 0 0 5px 5px;
        -o-border-radius: 0 0 5px 5px;
        border-radius: 0 0 5px 5px;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }
}
@media (min-width: 768px) {
    #network .network-container {
        padding-left: 135px;
    }
    #network .network-container > .check-circle {
        left: 85px;
    }
    #network .network-container > .branche {
        left: 111px;
        width: 30px;
    }
    #network .network-branche {
        padding-left: 65px;
    }
    #network .network-branche .logo {
        padding-left: 60px;
    }
    #network .network-branche .logo img {
        width: auto;
        height: auto;
        max-width: 100%;
    }
    #network .network-branche .branche.branche-horizontal {
        width: 30px;
    }
    #network .network-branche .check-circle {
        left: 33px;
    }
}
@media (min-width: 1200px) {
    #network .network-container {
        padding-left: 215px;
    }
    #network .network-container > .check-circle {
        left: 100px;
    }
    #network .network-container > .branche {
        left: 126px;
        width: 90px;
    }
    #network .network-branche {
        padding-left: 100px;
    }
    #network .network-branche .logo {
        padding-left: 80px;
    }
    #network .network-branche .branche.branche-horizontal {
        width: 40px;
    }
    #network .network-branche .check-circle {
        left: 43px;
    }
    #network .btn {
        min-width: 180px;
    }
}
#new-job .form-group.has-error:after,
#new-job .form-group.has-success:after {
    right: 25px;
}
#new-job .form-control {
    padding-right: 35px;
}
#new-job .form-control.bootstrap-select {
    padding-right: 0;
}
#new-job label .alt {
    position: absolute;
    left: 15px;
    top: -15px;
}
#new-job .icheck-group label {
    font-family: "klavika", sans-serif;
    font-weight: 700;
    font-size: 16px;
}
#new-job .icheck-group .iradio_square:not(.checked) + .help-block + span,
#new-job .icheck-group .iradio_square:not(.checked) + span {
    color: #c3c3c3;
}
#new-job .fileinput {
    margin-bottom: 0;
}
#new-job .fileinput button,
#new-job .fileinput .input-group-addon,
#new-job .fileinput .input-group-addon span {
    cursor: pointer;
}
#new-job input[disabled] {
    background-color: #d9d9d9;
}
#new-job .block-contact .icheck-group,
#new-job .block-applications .icheck-group {
    position: relative;
    height: 40px;
}
#new-job .block-contact .icheck-group .icheckbox_square,
#new-job .block-applications .icheck-group .icheckbox_square,
#new-job .block-contact .icheck-group .iradio_square,
#new-job .block-applications .icheck-group .iradio_square {
    left: 5px;
}
#new-job .block-contact .form-group:after,
#new-job .block-applications .form-group:after {
    right: 30px;
}
#new-job .block-contact .form-group .form-group:after,
#new-job .block-applications .form-group .form-group:after {
    right: 15px;
}
#new-job .block-vacancy .note-toolbar {
    background: #ffffff;
}
#new-job .block-vacancy .note-editor {
    margin-bottom: 0;
    border-color: #d9d9d9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
#new-job .block-vacancy .btn-group .btn {
    min-width: 36px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
#new-job .block-vacancy .btn-group .btn-group,
#new-job .block-vacancy .btn-group .btn + .btn {
    margin-left: 5px;
}
#new-job .block-media .img-thumbnail {
    position: relative;
    width: 100%;
    min-height: 125px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
#new-job .block-media .img-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-height: 125px;
}
#new-job .block-media .fileinput-filename {
    max-width: 240px;
}
@media (max-width: 767px) {
    #new-job .form-horizontal .control-label {
        padding-top: 0;
    }
    #new-job .form-group.has-error:after,
    #new-job .form-group.has-success:after {
        top: 47px;
        right: 25px;
    }
    #new-job .h5 {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #d9d9d9;
    }
    #new-job label .alt {
        position: relative;
        left: auto;
        bottom: auto;
        top: auto;
    }
    #new-job .block-placement .text-right {
        text-align: left;
    }
    #new-job button[type="submit"].btn {
        height: auto;
        white-space: normal;
    }
}
@media (max-width: 767px) {
    .header-mobile {
        padding-bottom: 0;
    }
}
@media (min-width: 768px) {
    .block-validate .panel-body {
        position: relative;
    }
    .block-validate .logo-container {
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-55%);
        -moz-transform: translateY(-55%);
        -ms-transform: translateY(-55%);
        -o-transform: translateY(-55%);
        transform: translateY(-55%);
    }
}
@media (max-width: 767px) {
    .block-job-success #network {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #d9d9d9;
    }
    .block-job-success #network .network-branche:last-child {
        margin-bottom: -20px;
    }
}
@media (min-width: 768px) {
    .block-job-success #network .network-container {
        margin-top: 40px;
        padding-left: 150px;
    }
    .block-job-success #network .network-container > .branche {
        width: 40px;
    }
    .block-job-success #network .network-branche {
        padding-left: 60px;
    }
    .block-job-success #network .network-branche .logo {
        padding-left: 60px;
    }
    .block-job-success #network .network-branche .branche.branche-horizontal {
        width: 20px;
    }
    .block-job-success #network .network-branche .check-circle {
        left: 23px;
    }
}
@media (min-width: 992px) {
    .block-job-success #network .network-container {
        margin-top: 60px;
    }
}
@media (min-width: 1200px) {
    .block-job-success #network .network-container {
        margin-top: 20px;
    }
}
.typeahead {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.suggestion-box {
    z-index: 99997;
    top: 60px;
    padding-top: 10px;
}
.suggestion-box > div {
    max-height: 0;
    padding: 0 40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: out 0 2px 0 3px black 20;
    -moz-box-shadow: out 0 2px 0 3px black 20;
    -o-box-shadow: out 0 2px 0 3px black 20;
    box-shadow: out 0 2px 0 3px black 20;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    overflow: hidden;
    background: white;
    -webkit-transition:
        800ms max-height ease 0ms,
        300ms padding ease 0ms,
        300ms opacity ease 0ms;
    -moz-transition:
        800ms max-height ease 0ms,
        300ms padding ease 0ms,
        300ms opacity ease 0ms;
    -o-transition:
        800ms max-height ease 0ms,
        300ms padding ease 0ms,
        300ms opacity ease 0ms;
    transition:
        800ms max-height ease 0ms,
        300ms padding ease 0ms,
        300ms opacity ease 0ms;
}
.suggestion-box > div > div ul li {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.suggestion-box .typeahead {
    position: unset !important;
    top: unset !important;
    left: unset !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none;
    -webkit-box-shadow: out 0 0 0 0 black 0 1;
    -moz-box-shadow: out 0 0 0 0 black 0 1;
    -o-box-shadow: out 0 0 0 0 black 0 1;
    box-shadow: out 0 0 0 0 black 0 1;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    background: transparent;
}
.suggestion-box .typeahead li {
    font-size: 16px !important;
    margin-bottom: 20px !important;
}
.suggestion-box .typeahead li a {
    font-family: "klavika", sans-serif !important;
    color: #3f3f3f !important;
    padding: 0;
    background: none !important;
    -webkit-transition: 300ms color ease 0ms;
    -moz-transition: 300ms color ease 0ms;
    -o-transition: 300ms color ease 0ms;
    transition: 300ms color ease 0ms;
}
.suggestion-box .typeahead li a:hover {
    color: var(--PRIMARY) !important;
}
.suggestion-box .typeahead li:last-child {
    margin: 0 !important;
}
.suggestion-box .typeahead li.active a {
    color: var(--PRIMARY) !important;
}
.suggestion-box:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 25%;
    width: 15px;
    height: 15px;
    margin: 0;
    -webkit-border-radius: 3px 0 0 0;
    -moz-border-radius: 3px 0 0 0;
    -o-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    background: white;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition:
        300ms margin ease 0ms,
        300ms opacity ease 0ms;
    -moz-transition:
        300ms margin ease 0ms,
        300ms opacity ease 0ms;
    -o-transition:
        300ms margin ease 0ms,
        300ms opacity ease 0ms;
    transition:
        300ms margin ease 0ms,
        300ms opacity ease 0ms;
}
.suggestion-box:after {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    margin: 0 0 0 -11px;
    background: #c3c3c3;
}
.suggestion-box.location:before {
    left: 75%;
}
.suggestion-box.open:before {
    margin: 0 0 0 -7px;
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.suggestion-box.open > div {
    max-height: 800px;
    padding: 40px;
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
@media (max-width: 991px) {
    .suggestion-box.open > div {
        padding: 30px;
    }
}
@media (max-width: 767px) {
    body.search .suggestion-box > div {
        padding-left: 40px;
    }
    body.search .suggestion-box > div h4,
    body.search .suggestion-box > div a {
        font-size: 16px;
        color: white !important;
    }
    body.search .suggestion-box > div h4,
    body.search .suggestion-box > div ul {
        padding: 0;
    }
    body.search .suggestion-box > div h4 li,
    body.search .suggestion-box > div ul li {
        color: white;
        border: none !important;
    }
    body.search .suggestion-box > div h4 li a,
    body.search .suggestion-box > div ul li a {
        font-weight: 400;
    }
    body.search .suggestion-box > div h4 li.active a,
    body.search .suggestion-box > div ul li.active a {
        color: white !important;
        font-weight: 600 !important;
        text-decoration: underline;
    }
    body.search .suggestion-box.open {
        position: fixed;
        z-index: 99999;
        top: 60px;
        bottom: 0;
        padding: 0;
    }
    body.search .suggestion-box.open > div {
        height: 100%;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -o-border-radius: 0;
        border-radius: 0;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        overflow-y: scroll;
        background: var(--PRIMARY);
    }
    body.search .suggestion-box.open:before {
        display: none;
    }
    body.search .suggestion-box:after {
        display: none;
    }
    body.search #typeahead-target {
        padding: 0 0 52px !important;
    }
    body.search #typeahead-target .typeahead {
        width: 100%;
        float: none;
    }
    body.search #typeahead-target:after {
        content: "";
        position: absolute;
        bottom: 28px;
        left: -25px;
        right: -15px;
        height: 1px;
        background: white;
    }
}
.sorter {
    height: 50px;
}
.sorter > div {
    height: 50px;
}
@media (max-width: 991px) {
    .sorter {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .sorter {
        height: auto;
        margin-top: 12px;
        padding: 0 0 10px !important;
        border-bottom: 1px solid #c3c3c3;
    }
    .sorter > div {
        z-index: 1;
        margin: 0 0 10px;
        padding: 0;
    }
    .sorter > div:first-child {
        z-index: 2;
    }
}
#selected-suggestions {
    height: 400px;
}
#selected-suggestions-mobile {
    margin: 12px 0;
    padding: 0;
    list-style-type: none;
}
#selected-suggestions-mobile li a {
    position: relative;
    font-family: "klavika", sans-serif;
    font-size: 17px;
    color: #858484;
    padding: 12px 15px 12px 0;
    display: block;
    -webkit-transition: 300ms color ease 0ms;
    -moz-transition: 300ms color ease 0ms;
    -o-transition: 300ms color ease 0ms;
    transition: 300ms color ease 0ms;
}
#selected-suggestions-mobile li a span.amount {
    color: #3f3f3f;
    -webkit-transition: 300ms color ease 0ms;
    -moz-transition: 300ms color ease 0ms;
    -o-transition: 300ms color ease 0ms;
    transition: 300ms color ease 0ms;
}
#selected-suggestions-mobile li a .glyphicons {
    position: absolute;
    top: 19px;
    right: 0;
}
#selected-suggestions-mobile li a:hover {
    text-decoration: none;
    color: var(--PRIMARY);
}
#selected-suggestions-mobile li a:hover span.amount {
    color: var(--PRIMARY);
}
.cv-item .panel-body {
    padding-top: 10px;
}
.questions {
    font-family: "klavika", sans-serif;
    font-size: 14px;
    color: #717171;
    padding: 0 20px 0 10px;
    line-height: 1.3em;
    text-align: center;
}
.questions img {
    margin-bottom: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}
.questions p.phone {
    font-size: 20px;
    color: #645e5e;
}
.questions .holder {
    padding: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #d9d9d9;
}
@media (max-width: 768px) {
    .questions {
        padding: 0 15px;
    }
}
.login {
    padding-top: 70px;
}
.login .filled {
    color: #ffffff;
}
@media (max-width: 767px) {
    #register-now {
        font-size: 14px;
    }
}
@media (min-width: 768px) {
    .login {
        padding-top: 50px;
    }
}
@media (max-width: 767px) {
    .users-overview .panel-row {
        position: relative;
    }
    .users-overview .panel-row .btn-view {
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 35px;
    }
}
.alternate-address label {
    line-height: 20px;
    font-weight: 700;
}
.customer-summary {
    font-weight: 700;
}
.customer-summary ul {
    margin-bottom: 0;
}
.customer-summary ul li {
    line-height: 25px;
}
.customer-summary ul .title {
    display: inline-block;
    width: 50%;
    font-weight: normal;
}
@media (max-width: 767px) {
    .customer-summary {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .panel .narrow-spacing .form-group-inline {
        margin-bottom: 10px;
    }
}
@media (min-width: 992px) {
    .checkout #sidebar-left {
        display: none;
    }
    .checkout #main-container {
        min-height: 890px;
    }
}
.offer .chart canvas {
    margin: 60px auto 50px;
}
.offer .chart .indicator-top {
    top: 60px;
}
.offer .chart .indicator-bottom {
    bottom: -20px;
}
.offer .chart .indicator-left {
    top: 214px;
}
.offer .chart .indicator-right {
    top: 195px;
}
.offer .chart .chart-totals {
    top: 198px;
}
@media (max-width: 767px) {
    #mobile-cart-container {
        padding-left: 0;
        padding-right: 0;
    }
}
#filters {
    z-index: 1;
    width: 350px;
    border-right: 2px solid #f6f6f6;
    overflow-x: hidden;
    background: white;
}
@media (max-width: 767px) {
    #filters {
        width: 100%;
    }
}
#filters.open-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    border: none;
}
#filters.open-mobile [data-filters] {
    left: 0;
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
[data-filters-button] .glyphicons-filters {
    top: 2px;
}
[data-filters-button] .glyphicons-arrow-left {
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
[data-filters-button] .glyphicons-arrow-left,
[data-filters-button] .glyphicons-arrow-right {
    top: 2px;
    -webkit-transition:
        300ms opacity ease 300ms,
        300ms left ease 300ms;
    -moz-transition:
        300ms opacity ease 300ms,
        300ms left ease 300ms;
    -o-transition:
        300ms opacity ease 300ms,
        300ms left ease 300ms;
    transition:
        300ms opacity ease 300ms,
        300ms left ease 300ms;
}
[data-filters-button].open .glyphicons-arrow-left {
    left: 50%;
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
[data-filters-button].open .glyphicons-arrow-right {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
[data-filters] {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: 300ms opacity ease 300ms;
    -moz-transition: 300ms opacity ease 300ms;
    -o-transition: 300ms opacity ease 300ms;
    transition: 300ms opacity ease 300ms;
}
[data-filters].open {
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
@media (max-width: 991px) {
    [data-filters] {
        position: absolute !important;
        z-index: 99999;
        top: 0;
        left: 0;
        width: 350px;
        padding: 15px 35px !important;
        overflow-y: auto;
        background: white;
    }
}
@media (max-width: 767px) {
    [data-filters] {
        position: absolute !important;
        z-index: 99999;
        left: -100%;
        width: 100%;
        padding: 65px 0 0 !important;
        overflow-y: auto;
        background: white;
    }
}
[data-filters-result] {
    float: right;
    -webkit-transition:
        300ms width ease 300ms,
        300ms transform ease 300ms;
    -moz-transition:
        300ms width ease 300ms,
        300ms transform ease 300ms;
    -o-transition:
        300ms width ease 300ms,
        300ms transform ease 300ms;
    transition:
        300ms width ease 300ms,
        300ms transform ease 300ms;
}
[data-filters-result] .title-actions,
[data-filters-result] .info-title {
    -webkit-transition: 300ms width ease 300ms;
    -moz-transition: 300ms width ease 300ms;
    -o-transition: 300ms width ease 300ms;
    transition: 300ms width ease 300ms;
}
[data-filters-result] .highlighted > p,
[data-filters-result] .highlighted > div {
    -webkit-transition:
        300ms width ease 300ms,
        300ms margin ease 300ms;
    -moz-transition:
        300ms width ease 300ms,
        300ms margin ease 300ms;
    -o-transition:
        300ms width ease 300ms,
        300ms margin ease 300ms;
    transition:
        300ms width ease 300ms,
        300ms margin ease 300ms;
}
[data-filters-result] .highlighted .help-block {
    margin: 0;
}
[data-filters-result].open {
    width: 75%;
}
[data-filters-result].open .title-actions {
    width: 33.33333333%;
}
[data-filters-result].open .info-title {
    width: 25%;
}
[data-filters-result].open .highlighted > p {
    margin: 0 0 10px !important;
}
[data-filters-result].open .highlighted > p,
[data-filters-result].open .highlighted > div {
    width: 100%;
}
.title-external-links {
    top: 50%;
    margin: -12px 0 0;
    padding: 0 95px 0 0;
    pointer-events: none;
}
.title-external-links.multiple {
    margin: -24px 0 0;
}
.title-external-links a {
    pointer-events: all;
}
@media (max-width: 991px) {
    .top-filters {
        height: 50px;
    }
    .top-filters .btn-filters-small {
        left: -60px !important;
    }
}
.mobile-filters-button {
    height: 65px;
}
