/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- GENERAL ADD-ON --------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.wrap {
    position: relative;
    padding-bottom: 60px;
}


/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- NAV ADD-ON ------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
nav {
    width: 100%;
    background: transparent;
    position: relative;
    z-index: 88888;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

nav .logo {
    margin-top: 10px;
    margin-bottom: 10px;
}

nav .logo img {
    height: 60px;
}

nav .menu-primary-container {
    display: inline-block;
}

nav ul.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul.menu li {
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
}

nav ul.menu li:last-child {
    margin-right: 0;
}

nav ul.menu > li > a {
    font: 900 12px/80px "Lato", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    display: block;
    color: var(--main-grey);
    border: solid 1px transparent;
    position: relative;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

nav ul.menu > li > a:hover span {
    text-decoration: none;
    border-bottom: solid 3px var(--light-grey);
}

nav ul.menu > li.current-menu-item > a span {
    text-decoration: none;
    border-bottom: solid 3px var(--very-light-grey);
    cursor: not-allowed;
}

nav ul.menu > li.current-menu-item > a:hover {
    opacity: 1;
}

nav ul.menu li a svg {
    height: 20px;
    width: 20px;
    position: relative;
    top: 4px;
    margin-right: 10px;
}

nav ul.menu li a svg path {
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

nav ul.menu li:hover a svg path,
nav ul.menu li.current-menu-item a svg path {
    fill: var(--main-grey) !important;
}

nav .icon-burger {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.nav-template-logo nav .icon-burger {
    margin: 10px auto 10px auto;
}

nav .icon-burger svg {
    width: 40px;
    height: 40px;
    fill: var(--main-grey);
}

.nav-template-responsive nav .icon-burger {
    display: block;
}

@media screen and (max-width: 1300px) {
    nav ul.menu {
        display: none;
    }

    nav .icon-burger {
        display: block;
    }
}

nav .icon-burger #nav-burger-animated {
    width: 30px;
    height: 30px;
    position: relative;
    margin: 10px auto 0;
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

nav .icon-burger #nav-burger-animated span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--main-grey);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

nav .icon-burger #nav-burger-animated span:nth-child(1) {
    top: 2px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

nav .icon-burger #nav-burger-animated span:nth-child(2) {
    top: 12px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

nav .icon-burger #nav-burger-animated span:nth-child(3) {
    top: 22px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

nav .icon-burger #nav-burger-animated.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 2px;
    left: 4px;
}

nav .icon-burger #nav-burger-animated.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}

nav .icon-burger #nav-burger-animated.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 23px;
    left: 4px;
}

.nav-responsive {
    visibility: hidden;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80%;
    padding-bottom: 30px;
    background: var(--white);
    overflow: scroll;
    -webkit-box-shadow: 0 0 10px var(--light-grey);
    -moz-box-shadow: 0 0 10px var(--light-grey);
    -o-box-shadow: 0 0 10px var(--light-grey);
    box-shadow: 0 0 10px var(--light-grey);
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
    -webkit-animation-duration: .35s;
    animation-duration: .35s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.nav-responsive.show {
    visibility: visible;
    width: 80%;
    max-width: 280px;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: .35s;
    animation-duration: .35s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.nav-responsive.full {
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
    -webkit-animation-duration: .35s;
    animation-duration: .35s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.nav-responsive.show.full {
    width: 100%;
    max-width: 100%;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: .35s;
    animation-duration: .35s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.nav-responsive .logo-responsive {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.nav-responsive .logo-responsive img {
    max-height: 150px;
    max-width: 240px;
}

.nav-responsive ul.menu {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.nav-responsive ul.menu li {
    display: block;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.nav-responsive.full ul.menu li {
    text-align: center;
}

.nav-responsive ul.menu li a {
    font: 900 12px/30px "Lato", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    color: var(--main-grey);
    position: relative;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.nav-responsive.full ul.menu li a {
    display: inline-block;
    text-align: center;
    padding-left: inherit;
    border-left: none;
}

.nav-responsive ul.menu li.no-title a .menu-title {
    display: none;
}

.nav-responsive ul.menu > li.current-menu-item > a {
    color: var(--light-grey);
    cursor: not-allowed;
}

.nav-responsive.full ul.menu > li.current-menu-item > a {
    border-left: none;
    border-bottom: solid 3px var(--very-light-grey);
    color: var(--light-grey);
}

.nav-responsive ul.menu li a:hover,
.nav-responsive ul.menu li.current-menu-item a:hover {
    opacity: 1;
}

.nav-responsive.full ul.menu li a:hover,
.nav-responsive.full ul.menu li.current-menu-item a:hover {
    color: var(--dark-grey);
    border-left: none;
    opacity: 1;
}

.nav-responsive ul.menu li a svg {
    vertical-align: sub;
    margin-right: 5px;
}

.nav-responsive ul.menu li ul.sub-menu {
    margin: 0;
    padding: 0;
    display: block !important;
}

.nav-responsive ul.menu li ul.sub-menu li {
    border-left: solid 3px var(--very-light-grey);
}

.nav-responsive ul.menu li ul.sub-menu li a {
    font-size: 0.7rem;
}

/* Version 0.4 */

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- RESET ------------------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
* {
    outline: none;
    box-sizing: border-box;
}

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

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-X: hidden;
}

body {
    margin: 0;
}

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

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

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

[hidden] {
    display: none;
}

b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark {
    background: var(--secondary-yellow);
    color: var(--black);
}

small {
    font-size: 80%;
}

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

sup {
    top: -0.5rem;
}

sub {
    bottom: -0.25rem;
}

img {
    border: 0;
}

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

figure {
    margin: 1em 40px;
}

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

pre {
    overflow: auto;
}

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

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;
}

input {
    line-height: normal;
}

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

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

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

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

legend {
    border: 0;
    padding: 0;
}

textarea {
    border: 1px solid var(--form-field-border-color);
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td, th {
    padding: 0;
}

.clearfix:before, .clearfix:after, .container:before, .container:after, .container-left:before, .container-left: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, .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;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- BASE ------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
html {
    -webkit-tap-highlight-color: var(--white);
}

body {
    background: var(--white);
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    line-height: 1.1rem;
    color: var(--main-grey);
}

a, .false-link {
    color: var(--main-blue);
    text-decoration: none;
    opacity: 1;
    cursor: pointer;
}

a:hover, .false-link:hover {
    opacity: 0.65;
}

a.underline {
    text-decoration: underline;
}

img {
    vertical-align: middle;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    color: var(--main-grey);
}

h1 {
    font-size: 1.6rem;
}

@media screen and (max-width: 748px) {
    h1 {
        font-size: 1.6rem;
    }
}

h2 {
    font-size: 1.4rem;
}

@media screen and (max-width: 748px) {
    h2 {
        font-size: 1.4rem;
    }
}

h3 {
    font-size: 1.25rem;
}

@media screen and (max-width: 748px) {
    h3 {
        font-size: 1.2rem;
    }
}

h4 {
    font-size: 1.2rem;
}

@media screen and (max-width: 748px) {
    h4 {
        font-size: 1rem;
    }
}

h5 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 748px) {
    h5 {
        font-size: 1rem;
    }
}

h6 {
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 748px) {
    h6 {
        font-size: 1rem;
    }
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-size: 0.9rem;
    line-height: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--main-red);
    display: block;
    margin-bottom: 15px;
}

h1 small i,
h2 small i,
h3 small i,
h4 small i,
h5 small i,
h6 small i {
    position: relative;
    top: -1px;
    margin-right: 10px;
}

hr {
    border: none;
    border-bottom: solid 1px var(--very-light-grey);
    margin-top: 30px;
    margin-bottom: 30px;
}

hr.blank {
    border: none;
    margin-top: 30px;
    margin-bottom: 30px;
}

hr.hr-xs {
    border: none;
    border-bottom: solid 3px var(--main-red);
    margin: auto auto 30px;
    width: 50px;
    display: inline-block;
}

hr.hr-xs.white {
    border-color: var(--white);
}

p,
.p {
    margin: 0 0 15px;
}

small {
    font-size: 80%;
    line-height: 100%;
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted var(--dark-grey);
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-muted {
    color: var(--light-grey);
}

.text-primary {
    color: var(--main-grey);
}

.text-success {
    color: var(--main-green);
}

.text-danger {
    color: var(--main-red);
}

.text-warning {
    color: var(--main-yellow) !important;
}

.text-info {
    color: var(--main-blue);
}

.text-white, .text-white:before {
    color: var(--white) !important;
}

.text-link {
    color: var(--dark-grey);
}

.text-bg-primary,
.text-bg-success,
.text-bg-info,
.text-bg-warning,
.text-bg-danger,
.text-bg-text {
    padding: 15px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.text-bg-primary {
    background: var(--very-light-grey);
}

.text-bg-success {
    color: var(--white);
    background: var(--main-green);
}

.text-bg-info {
    color: var(--white);
    background: var(--main-blue);
}

.text-bg-warning {
    color: var(--white);
    background: var(--main-yellow);
}

.text-bg-danger {
    color: var(--white);
    background: var(--main-red);
}

.text-bg-text {
    background: var(--main-grey);
}

.text-uppercase {
    text-transform: uppercase;
}

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

dt {
    font-weight: bold;
}

@media (min-width: 748px) {
    .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;
    }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- BACKGROUND ----------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.bg-primary {
    background: var(--very-light-grey);
}

.bg-success {
    color: var(--white);
    background: var(--main-green);
}

.bg-info {
    color: var(--white);
    background: var(--main-blue);
}

.bg-warning {
    color: var(--white);
    background: var(--main-yellow);
}

.bg-danger {
    color: var(--white);
    background: var(--main-red);
}

.bg-text {
    background: var(--main-grey);
}

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

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

.img-circle {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

@media screen and (max-width: 992px) {
    .img-responsive {
        margin-bottom: 15px;
    }
}

.img-hr {
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: -50px;
}

.img-debord-left {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;

}

@media screen and (max-width: 748px) {
    .img-debord-left {
        position: relative;
        top: inherit;
        right: inherit;
        display: block;
        max-width: 100%;
        height: auto !important;
    }
}

.img-debord-right {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;

}

@media screen and (max-width: 748px) {
    .img-debord-right {
        position: relative;
        top: inherit;
        left: inherit;
        display: block;
        max-width: 100%;
        height: auto !important;
    }
}

.img-no-radius {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.img-force-center {
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- GRID ------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */

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

@media (min-width: 748px) {
    .container {
        width: 750px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

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

@media (min-width: 1300px) {
    .container {
        width: 1300px;
    }
}

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

@media (min-width: 748px) {
    .container-fluid {
        margin-right: auto;
        margin-left: auto;
        padding-left: 30px;
        padding-right: 30px;
    }
}

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

@media (min-width: 748px) {
    .row {
        margin-left: -30px;
        margin-right: -30px;
    }
}

.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, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

@media (min-width: 748px) {
    .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, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.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, .col-xs-15 {
    float: left;
}

.col-xs-15 {
    width: 20%;
}

.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: 0;
}

.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: 0;
}

.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: 748px) {
    .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, .col-sm-15 {
        float: left;
    }

    .col-sm-15 {
        width: 20%;
    }

    .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: 0;
    }

    .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: 0;
    }

    .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, .col-md-15 {
        float: left;
    }

    .col-md-12 {
        width: 20%;
    }

    .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: 0;
    }

    .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: 0;
    }

    .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, .col-lg-15 {
        float: left;
    }

    .col-lg-15 {
        width: 20%;
    }

    .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: 0;
    }

    .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: 0;
    }

    .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;
    }
}

.col-white {
    background: var(--white);
}

.col-primary {
    background: var(--main-grey);
    color: var(--white);
}

.col-muted {
    background: var(--light-grey);
}

.col-alt {
    background: var(--very-light-grey);
}

.col-danger {
    background: var(--main-red);
    color: var(--white);
}

.col-success {
    background: var(--main-green);
    color: var(--white);
}

.col-warning {
    background: var(--main-yellow);
    color: var(--white);
}

.col-info {
    background: var(--main-blue);
    color: var(--white);
}

.col-link {
    background: var(--dark-grey);
    color: var(--white);
}

.col-content {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

@media screen and (max-width: 748px) {
    .col-content {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.col-content-sm {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (max-width: 748px) {
    .col-content-sm {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.col-content.no-bottom {
    padding-bottom: 0;
}

.col-content.no-top {
    padding-top: 0;
}

.col-background {
    background-position: center center;
    background-size: cover !important;
    background-repeat: no-repeat;
    min-height: 250px;
}

.col-background-fixed {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
    min-height: 250px;
}

.col-no-padding {
    padding-left: 0;
    padding-right: 0;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- TABLE ------------------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
table {
    max-width: 100%;
}

.table {
    width: 100%;
    margin-bottom: 30px;
    font-size: 0.7rem;
    line-height: 0.7rem;
}

.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: 5px;
    vertical-align: middle;
    border-top: 1px solid var(--very-light-grey);
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 3px solid var(--very-light-grey);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.table tr:first-child > td,
.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: 3px solid var(--light-grey);
}

.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 var(--very-light-grey);
}

.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 var(--very-light-grey);
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: var(--very-light-grey);
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: var(--very-light-grey);
}

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: var(--main-grey);
    color: var(--white);
}

.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: var(--main-green);
    color: var(--white);
}

.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: var(--main-blue);
    color: var(--white);
}

.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: var(--main-yellow);
    color: var(--white);
}

.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: var(--main-red);
    color: var(--white);
}

@media (max-width: 748px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        border: 1px solid var(--very-light-grey);
        overflow-y: hidden;
        overflow-x: scroll;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        -webkit-overflow-scrolling: touch;
    }

    .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;
    }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- FORM ------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
label {
    color: var(--form-label-color);
    display: block;
    font-size: 0.7rem;
    line-height: 1.1rem;
    font-weight: bold;
    position: relative;
}

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

input[type="radio"],
input[type="checkbox"] {
    margin-right: 15px;
    cursor: pointer;
    float: left;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: solid 1px var(--light-grey);
    position: relative;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

input[type="text"], input[type="email"], input[type="number"],
input[type="password"] {
    border: 1px solid var(--form-field-border-color);
}

input[type="radio"] {
    top: 2px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

input[type="checkbox"] {
    float: left;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

input[type="checkbox"]:hover, input[type="radio"]:hover {
    background: var(--very-light-grey);
}

input[type="checkbox"]:checked, input[type="radio"]:checked {
    background: var(--main-green);
    border: solid 1px var(--main-green);
}

input[type="checkbox"]:checked:before {
    content: " ";
    background: url('../../img/app/img-form-checkbox.svg') no-repeat top center;
    width: 14px;
    height: 14px;
    display: block;
    margin-top: 1px;
}

input[type="radio"]:checked:before {
    content: " ";
    background: url('../../img/app/img-form-radio.svg') no-repeat bottom center;
    width: 18px;
    height: 18px;
    display: block;
}

input[type="checkbox"]:checked:hover, input[type="radio"]:checked:hover {
    background: var(--main-green);
    border: solid 1px var(--main-green);
}

select.form-control {
    display: block;
    width: 100%;
    padding: 9px 30px 8px 4px;
    background: #FFF;
    opacity: 1;
    border: 1px solid var(--form-field-border-color);
    border-radius: var(--form-field-border-radius);
    background-color: var(--white);
    height: 29px;
    padding: 5px;
}

.form-control {
    position: relative;
    display: block;
    width: 100%;
    padding: 5px 2px;
    opacity: 1;
}

.form-control:hover,
.form-control:focus {
    outline: none;
}

.form-control::-moz-placeholder {
    color: var(--light-grey);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: var(--light-grey);
}

.form-control::-webkit-input-placeholder {
    color: var(--light-grey);
}

.form-control[disabled],
.form-control[readonly] {
    cursor: not-allowed;
    opacity: 0.65;
}

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

.input-sm {
    padding: 5px 10px;
    font-size: 0.9rem;
    -webkit-border-radius: var(--form-field-border-radius-sm);
    -moz-border-radius: var(--form-field-border-radius-sm);
    border-radius: var(--form-field-border-radius-sm);
}

.input-lg {
    padding: 20px 20px;
    font-size: 1.3rem;
    -webkit-border-radius: var(--form-field-border-radius-sm);
    -moz-border-radius: var(--form-field-border-radius-sm);
    border-radius: var(--form-field-border-radius-sm);
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--light-grey);
    font-size: 80%;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- BUTTON ----------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.btn {
    font: bold 12px/12px "Lato", Arial, Helvetica, sans-serif;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    padding: 10px 15px;
    position: relative;
    opacity: 1;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn:hover {
    text-decoration: none;
    opacity: 0.65;
}

.btn.disabled,
.btn[disabled] {
    color: var(--main-grey);
    background: var(--light-grey);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.45;
    filter: alpha(opacity=45);
}

.btn-default {
    color: var(--main-grey);
    border: 1px solid var(--light-grey);
}

.btn-primary {
    border: 1px solid var(--main-grey);
    color: var(--main-grey);
}

.btn-success {
    background: var(--white);
    color: var(--main-green);
    border: 1px solid var(--main-green);
}

.btn-info {
    background: var(--white);
    color: var(--main-blue);
    border: 1px solid var(--main-blue);
}

.btn-info-alt {
    color: var(--main-blue);
    border: 1px solid var(--main-blue);
    background: var(--white);
}

.btn-warning {
    background: var(--white);
    color: var(--main-yellow);
    border: 1px solid var(--main-yellow);
}

.btn-danger {
    background: var(--white);
    color: var(--main-red);
    border: 1px solid var(--main-red);
}

.btn-white {
    color: var(--main-grey);
    background: var(--white);
}

.btn-link {
    color: var(--main-green);
    background: none;
    cursor: pointer;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.btn-lg {
    padding: 20px 30px;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.btn-lg {
    padding: 20px 30px;
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.btn-xs {
    padding: 5px 10px;
    font-size: 0.7rem;
    line-height: 0.7rem;
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.btn-rounded {
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
}

.btn + .btn {
    margin-left: 5px;
}

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

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

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- EFFECT ----------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade.in {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- DROPDOWN + BUTTON DROPDOWN + GROUP FORM -------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */

.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: 0;
    margin: 0;
    overflow: hidden;
    list-style: none;
    background: var(--white);
    border: solid 1px var(--very-light-grey);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-clip: padding-box;
}

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

.dropdown-menu .divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background: var(--very-light-grey);
}

.dropdown-menu > li {
    padding: 0 !important;
}

.dropdown-menu > li > a {
    display: block;
    padding: 5px 20px;
    clear: both;
    color: var(--main-grey);
    white-space: nowrap;
}

.dropdown-menu > li > a:hover {
    text-decoration: none;
    color: var(--white);
    background: var(--main-grey);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover {
    color: var(--white);
    text-decoration: none;
    outline: 0;
    background: var(--dark-grey);
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover {
    color: var(--very-light-grey);
    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: 5px 20px;
    font-size: 0.9rem;
    color: var(--light-grey);
}

.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: 748px) {
    .navbar-right .dropdown-menu {
        left: auto;
        right: 0;
    }

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

.btn-toolbar {
    margin: 15px 0;
}

.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:focus,
.btn-group-vertical > .btn:focus {
    outline: none;
}

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

.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: 10px;
    padding-right: 10px;
}

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

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px var(--very-light-grey);
    box-shadow: inset 0 3px 5px var(--very-light-grey);
}

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

.btn .caret {
    margin-left: 0;
}

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

.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: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-bottom-left-radius: 2px;
    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%;
}

[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
    display: 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: 65px;
    padding: 20px 30px;
    font-size: 1.2rem;
    -webkit-border-radius: var(--form-field-border-radius-sm);
    -moz-border-radius: var(--form-field-border-radius-sm);
    border-radius: var(--form-field-border-radius-sm);
}

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

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

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 35px;
    padding: 5px 10px;
    font-size: 0.95rem;
    -webkit-border-radius: var(--form-field-border-radius-sm);
    -moz-border-radius: var(--form-field-border-radius-sm);
    border-radius: var(--form-field-border-radius-sm);
}

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

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: 10px 15px;
    font-size: 0.95rem;
    font-weight: normal;
    line-height: 1;
    color: var(--main-grey);
    text-align: center;
    background-color: var(--very-light-grey);
    border: 2px solid var(--very-light-grey);
    -webkit-border-radius: var(--form-field-border-radius-sm);
    -moz-border-radius: var(--form-field-border-radius-sm);
    border-radius: var(--form-field-border-radius-sm);
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 0.7rem;
    -webkit-border-radius: var(--form-field-border-radius-sm);
    -moz-border-radius: var(--form-field-border-radius-sm);
    border-radius: var(--form-field-border-radius-sm);
}

.input-group-addon.input-lg {
    padding: 20px 30px;
    font-size: 1.3rem;
    -webkit-border-radius: var(--form-field-border-color);
    -moz-border-radius: var(--form-field-border-color);
    border-radius: var(--form-field-border-color);
}

.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;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- TABS + PILLS + NAVBAR -------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */

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

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

.nav > li > a {
    font: 300 15px/15px "Lato", Arial, Helvetica, sans-serif;
    position: relative;
    display: block;
    padding: 12px 15px;
}

.nav > li > a:hover {
    text-decoration: none;
    background: var(--very-light-grey);
}

.nav > li.disabled > a {
    color: var(--very-light-grey);
    text-decoration: none;
    background: transparent;
    cursor: not-allowed;
}

.nav .open > a,
.nav .open > a:hover {
    background-color: var(--very-light-grey);
    border-color: var(--very-light-grey);
}

.nav .nav-divider {
    height: 1px;
    margin: 10px 0;
    overflow: hidden;
    background-color: var(--very-light-grey);
}

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

.nav-tabs {
    border-bottom: 1px solid var(--middle-grey);
}

.nav-tabs li {
    float: left;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: -1px !important;
}

.nav-tabs li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border-radius: 2px 2px 0 0;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.nav-tabs li > a:hover {
    border-color: var(--very-light-grey);
}

.nav-tabs li.active > a,
.nav-tabs li.active > a:hover {
    color: var(--main-yellow);
    font-weight: bold;
    background: var(--white);
    border: 1px solid var(--middle-grey);
    border-bottom-color: transparent !important;
    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: 748px) {
    .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;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover {
    border: 1px solid var(--very-light-grey);
}

@media (min-width: 748px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid var(--very-light-grey);
        border-radius: 2px 2px 0 0;
    }

    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover {
        border-bottom-color: var(--white);
    }
}

.nav-pills > li {
    float: left;
}

.nav-pills > li > a {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

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

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover {
    color: var(--white);
    background: var(--main-grey);
}

.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: 748px) {
    .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;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover {
    border: 1px solid var(--white);
}

@media (min-width: 748px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid var(--white);
        border-radius: 2px 2px 0 0;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: var(--white);
    }
}

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

.tab-content > .active {
    background: var(--white);
    display: block;
    padding: 15px;
    border-left: solid 1px var(--middle-grey);
    border-right: solid 1px var(--middle-grey);
    border-bottom: solid 1px var(--middle-grey);
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
}

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

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- PAGINATION ------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.pagination {
    font-size: 1rem;
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-weight: bold;
}

.pagination > a {
    display: inline;
}

.pagination > a {
    padding: 5px 5px;
}

.pagination > a,
.pagination > span {
    position: relative;
    float: left;
    text-decoration: none;
    color: var(--main-blue);
    margin-left: -1px;
}

.pagination > a:hover,
.pagination > span:hover {
    opacity: 0.65;
}

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

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

.pagination > a.active,
.pagination > span.active,
.pagination > a.active:hover,
.pagination > span.active:hover {
    z-index: 2;
    opacity: 0.65;
    border-radius: 5px;
    background-color: var(--main-blue-20);

    cursor: default;
}

.pagination > span.disabled,
.pagination > span.disabled:hover,
.pagination > a.disabled,
.pagination > a.disabled:hover {
    opacity: 0.45;
    cursor: not-allowed;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 20px 30px;
    font-size: 1.2rem;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 0.9rem;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- PAGER ------------------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.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 15px;
    background-color: var(--dark-grey);
    color: var(--white);
    opacity: 1;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.pager li > a:hover {
    text-decoration: none;
    opacity: 0.65;
}

.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 > span {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- LABEL ------------------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.label {
    display: inline-block;
    padding: 2px 5px;
    color: var(--white);
    margin-right: 5px;
    margin-left: 5px;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.label [href] {
    color: inherit;
    text-decoration: none;
}

.label-default {
    background: var(--dark-grey);
}

.label-primary {
    background: var(--middle-grey);
}

.label-success {
    background: var(--main-green);
}

.label-info {
    background: var(--main-blue);
}

.label-warning {
    background: var(--main-yellow);
}

.label-danger {
    background: var(--main-red);
}

.label-white {
    background: var(--white);
    color: var(--dark-grey);
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- BADGE ------------------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 2px 5px;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
    vertical-align: baseline;
    white-space: nowrap;
    text-align: center;
    background-color: var(--main-grey);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.badge:empty {
    display: none;
}

a.badge:hover {
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- ALERT ------------------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.alert {
    /*ADD-ON CONTACT FORM 7 PLUGINS*/
    padding: 15px !important;
    display: block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.alert a,
.alert .alert-link {
    font-weight: bold;
    text-decoration: underline;
    color: inherit;
}

.alert-dismissable {
    padding-right: 35px;
}

.alert-dismissable .close {
    position: relative;
    top: -5px;
    right: -20px;
    color: inherit;
}

.alert-success {
    background: var(--main-green);
    color: var(--white);
    border: none !important;
}

.alert-info {
    background: var(--main-blue);
    color: var(--white);
}

.alert-warning {
    background: var(--main-yellow);
    color: var(--white);
    border: none !important;
}

.alert-danger {
    background: var(--main-red);
    color: var(--white);
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- LIST-GROUP ----------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.list-group {
    margin-bottom: 30px;
    padding-left: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    border: solid 1px var(--very-light-grey);
}

.list-group-item:first-child {
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.list-group-item > .badge {
    float: right;
}

.list-group-item > .badge + .badge {
    margin-right: 5px;
}

a.list-group-item {
    color: inherit;
}

a.list-group-item .list-group-item-heading {
    color: inherit;
}

a.list-group-item.active,
a.list-group-item.active:hover {
    z-index: 2;
    color: var(--white);
    background: var(--main-grey);
}

a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
    color: inherit;
}

a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
    color: var(--white);
}

.list-group-item-success {
    color: var(--white);
    background: var(--main-green);
    border: solid 1px var(--main-green);
    opacity: 1;
}

a.list-group-item-success {
    color: var(--white);
}

a.list-group-item-success .list-group-item-heading {
    color: inherit;
}

a.list-group-item-success:hover,
a.list-group-item-info:hover,
a.list-group-item-warning:hover,
a.list-group-item-danger:hover {
    opacity: 0.65;
}

a.list-group-item-success.active,
a.list-group-item-success.active:hover {
    color: var(--white);
    background: var(--white);
    border-color: var(--white);
}

.list-group-item-info {
    color: var(--white);
    background: var(--main-blue);
    border: solid 1px var(--main-blue);
}

a.list-group-item-info {
    color: var(--white);
}

a.list-group-item-info .list-group-item-heading {
    color: inherit;
}

a.list-group-item-info.active,
a.list-group-item-info.active:hover {
    color: var(--white);
    background-color: var(--white);
    border-color: var(--white);
}

.list-group-item-warning {
    color: var(--white);
    background: var(--main-yellow);
    border: solid 1px var(--main-yellow);
}

a.list-group-item-warning {
    color: var(--white);
}

a.list-group-item-warning .list-group-item-heading {
    color: inherit;
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:hover {
    color: var(--white);
    background-color: var(--white);
    border-color: var(--white);
}

.list-group-item-danger {
    color: var(--white);
    background: var(--main-red);
    border: solid 1px var(--main-red);
}

a.list-group-item-danger {
    color: var(--white);
}

a.list-group-item-danger .list-group-item-heading {
    color: inherit;
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:hover {
    color: var(--white);
    background-color: var(--white);
    border-color: var(--white);
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- PANEL ------------------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.panel {
    margin-bottom: 20px;
    background: var(--white);
    border: 1px solid var(--very-light-grey);
    overflow: hidden;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.panel-body {
    padding: 15px;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    background-color: var(--very-light-grey);
    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: 1.1rem;
    color: inherit;
}

.panel-title > a {
    color: inherit;
}

.panel-footer {
    padding: 10px 15px;
    background-color: var(--very-light-grey);
    border-top: 1px solid var(--very-light-grey);
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.panel > .list-group {
    margin-bottom: 0;
}

.panel > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0;
}

.panel > .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 {
    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;
}

.panel > .table,
.panel > .table-responsive > .table {
    margin-bottom: 0;
}

.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 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 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 {
    border-top: 1px solid var(--very-light-grey);
}

.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;
    overflow: hidden;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.panel-group .panel + .panel {
    margin-top: 5px;
}

.panel-group .panel-heading {
    border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse .panel-body {
    border-top: 1px solid var(--very-light-grey);
}

.panel-group .panel-footer {
    border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid var(--very-light-grey);
}

.panel-default {
    border-color: var(--very-light-grey);
}

.panel-default > .panel-heading {
    color: var(--main-grey);
    background: var(--very-light-grey);
    border-color: var(--very-light-grey);
}

.panel-default > .panel-heading + .panel-collapse .panel-body {
    border-top-color: var(--very-light-grey);
}

.panel-default > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: var(--very-light-grey);
}

.panel-primary {
    border-color: var(--main-grey);
}

.panel-primary > .panel-heading {
    color: var(--white);
    background: var(--main-grey);
    border-color: var(--main-grey);
}

.panel-primary > .panel-heading + .panel-collapse .panel-body {
    border-top-color: var(--main-grey);
}

.panel-primary > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: var(--main-grey);
}

.panel-success {
    border-color: var(--main-green);
}

.panel-success > .panel-heading {
    color: var(--white);
    background: var(--main-green);
    border-color: var(--main-green);
}

.panel-success > .panel-heading + .panel-collapse .panel-body {
    border-top-color: var(--main-green);
}

.panel-success > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: var(--main-green);
}

.panel-info {
    border-color: var(--main-blue);
}

.panel-info > .panel-heading {
    color: var(--white);
    background: var(--main-blue);
    border-color: var(--main-blue);
}

.panel-info > .panel-heading + .panel-collapse .panel-body {
    border-top-color: var(--main-blue);
}

.panel-info > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: var(--main-blue);
}

.panel-warning {
    border-color: var(--main-yellow);
}

.panel-warning > .panel-heading {
    color: var(--white);
    background: var(--main-yellow);
    border-color: var(--main-yellow);
}

.panel-warning > .panel-heading + .panel-collapse .panel-body {
    border-top-color: var(--main-yellow);
}

.panel-warning > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: var(--main-yellow);
}

.panel-danger {
    border-color: var(--main-red);
}

.panel-danger > .panel-heading {
    color: var(--white);
    background: var(--main-red);
    border-color: var(--main-red);
}

.panel-danger > .panel-heading + .panel-collapse .panel-body {
    border-top-color: var(--main-red);
}

.panel-danger > .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: var(--main-red);
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- CLOSE ------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.close {
    float: right;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--main-blue);
}

.close:hover {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
    opacity: 0.65;
    filter: alpha(opacity=65);
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- MODAL------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    -ms-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 {
    transform: translate(0, 0);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0 1px 3px var(--very-light-grey);
    background-clip: padding-box;
    outline: none;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background: var(--main-grey);
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid var(--very-light-grey);
    min-height: 17px;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-title {
    margin: 0;
}

.modal-body {
    position: relative;
    padding: 20px;
}

.modal-footer {
    margin-top: 15px;
    padding: 20px 20px 20px;
    text-align: right;
    border-top: 1px solid var(--very-light-grey);
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
    margin-right: 0;
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}

@media (min-width: 748px) {
    .modal-dialog {
        width: 600px;
        margin: 160px auto;
    }

    .modal-content {
        box-shadow: 0 1px 3px var(--very-light-grey);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- TOOLTIP ---------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    visibility: visible;
    font-size: 0.7rem;
    line-height: 0.7rem;
    opacity: 0;
    filter: alpha(opacity=0);
}

.tooltip.in {
    background-color: transparent;
}

.tooltip.top {
    margin-top: -3px;
    padding: 0 0 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: var(--black);
    text-align: center;
    text-decoration: none;
    background: var(--white) !important;
    border: 1px solid var(--main-grey);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.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: var(--main-grey);
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: var(--main-grey);
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: var(--main-grey);
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: var(--main-grey);
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: var(--main-grey);
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: var(--main-grey);
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: var(--main-grey);
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: var(--main-grey);
}

.tooltip + .btn {
    margin-left: 5px;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- POPOVER (NONSKINER) ---------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    display: none;
    max-width: 270px;
    text-align: left;
    background: var(--white);
    white-space: normal;
    background-clip: padding-box;
    border: 1px solid var(--very-light-grey);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.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: 15px;
    font-weight: normal;
    font-size: 100%;
    background: var(--very-light-grey);
}

.popover-content {
    padding: 15px;
}

.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: var(--light-grey);
    bottom: -11px;
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: var(--white);
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: var(--light-grey);
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: var(--white);
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: var(--light-grey);
    top: -11px;
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: var(--white);
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: var(--light-grey);
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: var(--white);
    bottom: -10px;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- CAROUSEL ---------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.carousel {
    position: relative;
    background: var(--light-grey);
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner > .item {
    position: relative;
    display: none;
    -webkit-transition: ease-in-out 650ms left;
    -moz-transition: ease-in-out 650ms left;
    -o-transition: ease-in-out 650ms left;
    -ms-transition: ease-in-out 650ms left;
    transition: ease-in-out 650ms left;
}

@media screen and (max-width: 992px) {
    .carousel-inner > .item {
        position: relative;
        display: none;
        -webkit-transition: ease-in-out 650ms left;
        -moz-transition: ease-in-out 650ms left;
        -o-transition: ease-in-out 650ms left;
        -ms-transition: ease-in-out 650ms left;
        transition: ease-in-out 650ms left;
    }
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    line-height: 1;
    width: 100%;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform ease-in-out 650ms;
        -moz-transition: -moz-transform ease-in-out 650ms;
        -ms-transition: -ms-transform ease-in-out 650ms;
        -o-transition: -o-transform ease-in-out 650ms;
        transition: transform ease-in-out 650ms;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        left: 0;
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        left: 0;
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    .carousel-inner > .item.next.left,
    .carousel-inner > .item.prev.right,
    .carousel-inner > .item.active {
        left: 0;
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
}

.carousel-control.left {
    background-color: red;
    background-size: 40px;
}

@media screen and (max-width: 992px) {
    .carousel-control.left {
        background-color: red;
        background-size: 30px;
        margin-left: 5px;
    }
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-color: red;
    background-size: 40px;
}

@media screen and (max-width: 992px) {
    .carousel-control.right {
        background-color: red;
        background-size: 30px;
        margin-right: 5px;
    }
}

.carousel-control:hover,
.carousel-control:focus {
    filter: alpha(opacity=65);
    opacity: .65;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    line-height: 1;
}

.carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px;
}

.carousel-control .icon-next {
    right: 50%;
    margin-right: -10px;
}

.carousel-indicators {
    position: absolute;
    bottom: -32px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators li {
    display: inline-block;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: var(--dark-grey);
    border: 3px solid var(--white);
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
}

.carousel-indicators .active {
    width: 16px;
    height: 16px;
    background: var(--main-blue)
}

.carousel-caption {
    z-index: 10;
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
}

@media screen and (max-width: 992px) {
    .carousel-caption {
        width: 80%;
    }
}

.carousel-caption h3 {
    color: var(--white);
    background: var(--main-grey);
    display: table;
    padding: 15px;
    margin-bottom: 15px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.carousel-caption p {
    color: var(--main-grey);
    background: var(--white);
    display: table;
    padding: 15px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

@media screen and (max-width: 748px) {
    .carousel-caption p {
        font-size: 0.9rem;
        line-height: 1rem;
    }
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- VISIBLE ---------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important;
}

@media (max-width: 748px) {
    .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 (min-width: 748px) 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: 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: 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 (max-width: 748px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 748px) 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;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* --- HELPER (AMINIFIER) ----------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.affix {
    position: fixed;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.no-radius {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

