:root {
--red: #ef172f;
--darkred: #c9122a;
--text-color: #5B6771;
--text-dark: #1B252C;
--bg-color: #f9fafa;
--white: #fff;
--border-color: #e3e3e3;
--border-light: #eee;
--shadow-sm: 0 1px 1px rgba(0,0,0,.05);
--shadow-md: 0 3px 9px rgba(0,0,0,.5);
--transition-fast: 0.15s ease-in-out;
--transition-normal: 0.3s ease;
--radius-sm: 4px;
--radius-md: 7px;
--radius-lg: 25px;
}

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

html {
min-height: 100%;
height: 100%;
font-size: 100%;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}

body {
margin: 0;
word-wrap: break-word;
letter-spacing: 1px;
color: var(--text-color);
background-color: var(--bg-color);
font: 1em/1.8 "Heebo", sans-serif;
}

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

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

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

button,
input,
optgroup,
select,
textarea {
font: inherit;
margin: 0;
font-family: inherit;
line-height: inherit;
}

button {
overflow: visible;
}

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

input {
line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
position: relative;
height: 18px;
width: 18px;
top: 3px;
margin: 4px 8px 0 0;
accent-color: var(--red);
cursor: pointer;
}

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

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

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

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

optgroup {
font-weight: 700;
}

td,
th {
padding: 0;
}

a {
color: var(--text-dark);
text-decoration: none;
background-color: transparent;
font-weight: 600;
}

a:hover,
a:focus {
color: #00ABFF;
text-decoration: underline;
}

a:active,
a:focus,
a:hover {
text-decoration: none;
outline: 0;
}

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

img {
vertical-align: middle;
max-width: 100%;
height: auto;
}

iframe {
max-width: 100% !important;
}

p {
margin: 0 0 12px;
}

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

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

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

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

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

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

h1, .h1 { font-size: 33px; }
h2, .h2 { font-size: 30px; }
h3, .h3 { font-size: 24px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 14px; }
h6, .h6 { font-size: 12px; }

hr {
margin: 20px auto;
border: 0;
border-top: 1px solid var(--border-light);
}

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

.img-rounded {
border-radius: 25%;
}

.img-thumbnail {
padding: 4px;
line-height: 1.5714285714286;
background-color: var(--white);
border: 1px solid #ddd;
border-radius: var(--radius-sm);
transition: all var(--transition-fast);
display: inline-block;
max-width: 100%;
height: auto;
}

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

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

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

label {
display: inline-block;
font-weight: 600;
color: var(--text-dark);
}

.form-control {
display: block;
width: 100%;
height: 40px;
padding: 10px 16px;
font-size: 14px;
line-height: 1.5;
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
background: var(--white);
margin: 0px;
color: var(--text-dark);
}

.form-control:hover {
border-color: #c0c0c0;
}

.form-control:focus {
border-color: var(--red);
outline: 0;
box-shadow: 0 0 0 3px rgba(239, 23, 47, 0.1);
background: var(--white);
}

.form-control::-moz-placeholder { color: #a0a0a0; opacity: 1; }
.form-control:-ms-input-placeholder { color: #a0a0a0; }
.form-control::-webkit-input-placeholder { color: #a0a0a0; }
.form-control::placeholder { color: #a0a0a0; }

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

textarea.form-control {
height: auto;
}

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

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

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

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

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

.radio,
.checkbox {
position: relative;
display: block;
margin-bottom: 10px;
min-height: 20px;
margin-top: 10px;
padding-left: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.has-feedback {
position: relative;
}

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

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

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

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

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

.has-success .form-control {
border-color: #22c55e;
background-color: rgba(34, 197, 94, 0.05);
}

.has-success .form-control:focus {
border-color: #16a34a;
box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

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

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

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

.has-warning .form-control {
border-color: #f59e0b;
background-color: rgba(245, 158, 11, 0.05);
}

.has-warning .form-control:focus {
border-color: #d97706;
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

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

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

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

.has-error .form-control {
border-color: #ef4444;
background-color: rgba(239, 68, 68, 0.05);
}

.has-error .form-control:focus {
border-color: #dc2626;
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

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

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

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

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

.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373;
}

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

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

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

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

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

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

.nav > li > a {
color: var(--text-color);
position: relative;
display: block;
padding: 10px 10px;
}

.nav > li > a:hover,
.nav > li > a:focus,
.nav > li > a.active {
text-decoration: none;
background: #5f6872;
border-radius: var(--radius-md);
color: white;
}

.nav > li.disabled > a {
color: #999;
}

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

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
border-color: var(--red);
background: #eee;
}

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

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

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

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

.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.43;
border: 1px solid transparent;
border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

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

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

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

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

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

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

.nav-pills > li > a {
border-radius: var(--radius-sm);
}

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

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: var(--white);
background: #337ab7;
}

.nav-stacked > li {
float: none;
}

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

.nav-justified {
width: 100%;
}

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

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

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

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

.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: var(--radius-sm);
}

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

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

.tab-content > .active {
display: block;
visibility: visible;
}

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

.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
display: none;
}

.navbar-collapse {
max-height: 340px;
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1);
-webkit-overflow-scrolling: touch;
}

.navbar-collapse.in {
display: block;
overflow-y: auto;
}

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

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

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

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

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

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

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

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

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

.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: var(--white);
border: 1px solid rgba(0, 0, 0, 0.31);
border-radius: var(--radius-sm);
}

.navbar-toggle:focus {
outline: 0;
}

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

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

.navbar-nav {
margin: 7.5px 0px;
}

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

.navbar-form {
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
box-shadow: inset 0 1px 0 hsla(0,0%,100%,.1), 0 1px 0 hsla(0,0%,100%,.1);
margin-top: 8px;
margin-bottom: 8px;
margin: 8px -15px;
}

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

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

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

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

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

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

.navbar-default {
border-color: #e7e7e7;
background: #f8f8f8;
}

.navbar-default .navbar-brand {
color: #777;
}

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

.navbar-default .navbar-text {
color: #777;
}

.navbar-default .navbar-nav > li > a {
color: #777;
}

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

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

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

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

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

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

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

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

.navbar-default .navbar-link {
color: #777;
}

.navbar-default .navbar-link:hover {
color: #333;
}

.navbar-default .btn-link {
color: #777;
}

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

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

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

.navbar-inverse .navbar-brand {
color: #999;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: var(--white);
background-color: transparent;
}

.navbar-inverse .navbar-text {
color: #999;
}

.navbar-inverse .navbar-nav > li > a {
color: #999;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: var(--white);
background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: var(--white);
background: #080808;
}

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

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

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

.navbar-inverse .navbar-toggle .icon-bar {
background: var(--white);
}

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

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
color: var(--white);
background: #080808;
}

.navbar-inverse .navbar-link {
color: #999;
}

.navbar-inverse .navbar-link:hover {
color: var(--white);
}

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

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: var(--white);
}

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

@media (max-width: 767px) {
.navbar-nav > li:nth-child(5) {
margin-left: 0px !important;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background: #e7e7e7;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: var(--white);
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: var(--white);
background: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
}
}

@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 14.333333px;
}
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.form-inline .form-control-static {
display: inline-block;
}
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
.form-inline .input-group > .form-control {
width: 100%;
}
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
.form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 7px;
}
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
}
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-tabs.nav-justified > li > a {
margin-bottom: 0;
border-bottom: 1px solid #ddd;
border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd;
border-bottom-color: var(--white);
}
.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a {
margin-bottom: 0;
}
.nav-tabs-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border-bottom-color: var(--white);
}
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
visibility: visible !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-left: 0;
}
.navbar-static-top {
border-radius: 0;
}
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
.navbar-toggle {
display: none;
}
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
box-shadow: none;
}
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px;
}
.navbar-left {
float: left !important;
}
.navbar-right {
float: right !important;
margin-right: -15px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
.lead {
font-size: 21px;
}
}

.clearfix:before,
.clearfix:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after {
content: " ";
display: table;
}

.clearfix:after,
.form-horizontal .form-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after {
clear: both;
}

q {
quotes: "\201C" "\201D" "\2018" "\2019";
}

article {
margin: 0;
margin-bottom: 70px;
}

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

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

#preload {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 9100 !important;
width: 100%;
height: 100%;
background-color: var(--white);
}

#preload .pace {
user-select: none;
z-index: 2000;
position: fixed;
margin: auto;
top: 12px;
left: 0;
right: 0;
bottom: 0;
width: 200px;
height: 20px;
border: 1px solid #151d2a;
background-color: var(--white);
}

#preload .pace .pace-progress {
transition: width 1s ease-in-out;
max-width: 192px;
width: 150px;
position: absolute;
z-index: 2000;
display: block;
left: 3px;
top: 2px;
height: 14px;
font-size: 12px;
background: #151d2a;
color: #151d2a;
line-height: 60px;
font-weight: 700;
}

#preload .pace .pace-progress:after {
content: attr(data-progress-text);
display: inline-block;
}

#preload .pace.pace-inactive {
display: none;
}

.noscroll {
overflow: hidden;
}

.ar-left {
transform: translate(-15%, 0);
}

.ar-right {
transform: translate(15%, 0);
}

.fadeInLeft {
animation: fadeInLeft .7s both;
position: relative;
}

@keyframes fadeInLeft {
0% {
opacity: 0;
transform: translateX(-20px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}

.page-head {
background: var(--white);
border-bottom: 1px solid var(--border-light);
box-shadow: 0 1px 1px rgba(175,170,180,.2);
height: 65px;
position: fixed;
z-index: 999;
width: 100%;
}

.site-logo {
display: inline-block;
float: left;
}

.site-logo img:first-child {
width: auto;
padding-top: 5px;
}

.main-nav {
padding-left: 0;
list-style: none;
float: right;
margin-top: 22px;
}

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

.main-nav .inner-nav {
padding-left: 0;
list-style: none;
position: fixed;
height: 100%;
background: var(--white);
right: -70px;
top: 60px;
bottom: 0;
width: 70px;
transition: right var(--transition-normal);
border-left: 1px solid var(--border-light);
box-shadow: -1px 0 0 rgba(175,170,180,.1);
text-align: center;
}

.main-nav .inner-nav > li > a:before {
font-size: 18px;
line-height: 1.5714285714286;
}

.main-nav .inner-nav > li > a:hover {
background: #151d2a;
color: var(--white);
}

.main-nav .inner-nav.show-nav {
right: 0 !important;
}

.socials {
height: 40px;
padding-left: 0;
}

.socials li > a {
width: 50px;
text-align: center;
color: var(--white);
display: inline-block;
padding: 6px 14px;
border: 1px solid var(--white);
transition: var(--transition-normal);
}

.socials li a > i:before {
line-height: 1.5714285714286;
}

.socials li {
float: left;
}

.socials li > a:before {
line-height: 1.5714285714286;
}

#soc li a {
background: none;
}

.socials li:nth-child(1) a { background: #55ACEE; }
.socials li:nth-child(2) a { background: #3B5998; }
.socials li:nth-child(3) a { background: #25d334; }
.socials li:nth-child(4) a { background: #5f756f; }

.socials li > a:hover {
padding: 20px 20px;
}

.table td,
.table th {
background: var(--white);
}

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

.table {
border-collapse: collapse !important;
width: 100%;
margin-bottom: 20px;
}

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

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

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

@page {
margin: 2cm .5cm;
}

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

.visible-print {
display: block !important;
}

tr.visible-print {
display: table-row !important;
}

td.visible-print,
th.visible-print {
display: table-cell !important;
}

.hidden-print,
td.hidden-print,
th.hidden-print,
tr.hidden-print {
display: none !important;
}

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

cite {
font-style: normal;
}

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.text-muted { color: #999; }
.text-primary { color: var(--red); }
.text-success { color: #3c763d; }
.text-info { color: #31708f; }
.text-warning { color: #8a6d3b; }
.text-danger { color: #a94442; }

.bg-primary { color: var(--white); background: var(--red); }
.bg-success { background: #dff0d8; }
.bg-info { background: #d9edf7; }
.bg-warning { background: #fcf8e3; }
.bg-danger { background: #f2dede; }
.bg-light { background: #dcd9f7; }

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

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

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

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

.list-inline > li:first-child {
padding-left: 0;
}

.list-inline {
margin-left: -5px;
}

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

dd, dt {
line-height: 1.43;
}

dt {
font-weight: 700;
}

@media (min-width: 768px) {
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
.dl-horizontal dd:after,
.dl-horizontal dd:before {
content: " ";
display: table;
}
.dl-horizontal dd:after {
clear: both;
}
}

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

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

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

blockquote:after,
blockquote:before {
content: "";
}

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

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

.container:after,
.container:before {
content: " ";
display: table;
}

.container:after {
clear: both;
}

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

.row:after,
.row:before {
content: " ";
display: table;
}

.row:after {
clear: both;
}

.visible-print,
td.visible-print,
th.visible-print,
tr.visible-print {
display: none !important;
}

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

code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
white-space: normal;
border-radius: var(--radius-sm);
background: #f9f2f4;
}

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

pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.43;
word-break: break-all;
word-wrap: break-word;
color: #333;
border: 1px solid #ccc;
border-radius: var(--radius-sm);
background: #f5f5f5;
white-space: normal;
}

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

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

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

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

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

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

.col-xs-12 { width: 100%; }
.col-xs-11 { width: 91.66666667%; }
.col-xs-10 { width: 83.33333333%; }
.col-xs-9 { width: 75%; }
.col-xs-8 { width: 66.66666667%; }
.col-xs-7 { width: 58.33333333%; }
.col-xs-6 { width: 50%; }
.col-xs-5 { width: 41.66666667%; }
.col-xs-4 { width: 33.33333333%; }
.col-xs-3 { width: 25%; }
.col-xs-2 { width: 16.66666667%; }
.col-xs-1 { width: 8.33333333%; }

@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
.col-sm-12, .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 {
float: left;
}
.col-md-12 { width: 100%; }
.col-md-11 { width: 91.666666666667%; }
.col-md-10 { width: 83.333333333333%; }
.col-md-9 { width: 75%; }
.col-md-8 { width: 66.666666666667%; }
.col-md-7 { width: 58.333333333333%; }
.col-md-6 { width: 50%; }
.col-md-5 { width: 41.666666666667%; }
.col-md-4 { width: 33.333333333333%; }
.col-md-3 { width: 25%; }
.col-md-2 { width: 16.666666666667%; }
.col-md-1 { width: 8.3333333333333%; }
.col-md-pull-12 { right: 100%; }
.col-md-pull-11 { right: 91.666666666667%; }
.col-md-pull-10 { right: 83.333333333333%; }
.col-md-pull-9 { right: 75%; }
.col-md-pull-8 { right: 66.666666666667%; }
.col-md-pull-7 { right: 58.333333333333%; }
.col-md-pull-6 { right: 50%; }
.col-md-pull-5 { right: 41.666666666667%; }
.col-md-pull-4 { right: 33.333333333333%; }
.col-md-pull-3 { right: 25%; }
.col-md-pull-2 { right: 16.666666666667%; }
.col-md-pull-1 { right: 8.3333333333333%; }
.col-md-pull-0 { right: 0; }
.col-md-push-12 { left: 100%; }
.col-md-push-11 { left: 91.666666666667%; }
.col-md-push-10 { left: 83.333333333333%; }
.col-md-push-9 { left: 75%; }
.col-md-push-8 { left: 66.666666666667%; }
.col-md-push-7 { left: 58.333333333333%; }
.col-md-push-6 { left: 50%; }
.col-md-push-5 { left: 41.666666666667%; }
.col-md-push-4 { left: 33.333333333333%; }
.col-md-push-3 { left: 25%; }
.col-md-push-2 { left: 16.666666666667%; }
.col-md-push-1 { left: 8.3333333333333%; }
.col-md-push-0 { left: 0; }
.col-md-offset-12 { margin-left: 100%; }
.col-md-offset-11 { margin-left: 91.666666666667%; }
.col-md-offset-10 { margin-left: 83.333333333333%; }
.col-md-offset-9 { margin-left: 75%; }
.col-md-offset-8 { margin-left: 66.666666666667%; }
.col-md-offset-7 { margin-left: 58.333333333333%; }
.col-md-offset-6 { margin-left: 50%; }
.col-md-offset-5 { margin-left: 41.666666666667%; }
.col-md-offset-4 { margin-left: 33.333333333333%; }
.col-md-offset-3 { margin-left: 25%; }
.col-md-offset-2 { margin-left: 16.666666666667%; }
.col-md-offset-1 { margin-left: 8.3333333333333%; }
.col-md-offset-0 { margin-left: 0; }
.container { width: 970px; }
}

@media (min-width: 1200px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
.col-lg-12 { width: 100%; }
.col-lg-11 { width: 91.66666667%; }
.col-lg-10 { width: 83.33333333%; }
.col-lg-9 { width: 75%; }
.col-lg-8 { width: 66.66666667%; }
.col-lg-7 { width: 58.33333333%; }
.col-lg-6 { width: 50%; }
.col-lg-5 { width: 41.66666667%; }
.col-lg-4 { width: 33.33333333%; }
.col-lg-3 { width: 25%; }
.col-lg-2 { width: 16.66666667%; }
.col-lg-1 { width: 8.33333333%; }
.col-lg-pull-12 { right: 100%; }
.col-lg-pull-11 { right: 91.66666667%; }
.col-lg-pull-10 { right: 83.33333333%; }
.col-lg-pull-9 { right: 75%; }
.col-lg-pull-8 { right: 66.66666667%; }
.col-lg-pull-7 { right: 58.33333333%; }
.col-lg-pull-6 { right: 50%; }
.col-lg-pull-5 { right: 41.66666667%; }
.col-lg-pull-4 { right: 33.33333333%; }
.col-lg-pull-3 { right: 25%; }
.col-lg-pull-2 { right: 16.66666667%; }
.col-lg-pull-1 { right: 8.33333333%; }
.col-lg-pull-0 { right: 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; }
.container { width: 1200px; }
}

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

table {
max-width: 100%;
}

th {
text-align: left;
border-width: 0 1px 1px 0;
font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
color: black;
}

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

@media screen and (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-y: hidden;
border: 1px solid #ddd;
}
.table-responsive > .table {
margin-bottom: 0;
}
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap;
}
.table-responsive > .table-bordered {
border: 0;
}
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}
}

.btn {
display: inline-block;
margin-bottom: 0;
font-weight: 500;
text-align: center;
vertical-align: middle;
cursor: pointer;
border: none;
white-space: nowrap;
padding: 10px 20px;
font-size: 14px;
line-height: 1.5;
border-radius: var(--radius-md);
user-select: none;
touch-action: manipulation;
transition: all var(--transition-fast);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(239, 23, 47, 0.2);
}

.btn:hover,
.btn:focus {
color: #333;
text-decoration: none;
transform: translateY(-1px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:active,
.btn.active {
outline: 0;
transform: translateY(0);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
pointer-events: none;
opacity: .65;
box-shadow: none;
}

.btn-default {
color: var(--text-dark);
background: var(--white);
border: 1px solid var(--border-color);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active {
color: var(--text-dark);
border-color: #c0c0c0;
background: #f5f5f5;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default {
background: #e6e6e6;
border-color: #ccc;
}

.btn-primary {
color: var(--white);
background: linear-gradient(180deg, var(--red) 0%, var(--darkred) 100%);
border: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
color: var(--white);
background: linear-gradient(180deg, var(--darkred) 0%, #a00e22 100%);
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary {
background: var(--red);
border-color: var(--darkred);
}

.btn-success {
color: var(--white);
background: linear-gradient(180deg, #5cb85c 0%, #449d44 100%);
border: none;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active {
color: var(--white);
background: linear-gradient(180deg, #449d44 0%, #398439 100%);
}

.btn-info {
color: var(--white);
background: linear-gradient(180deg, #5bc0de 0%, #31b0d5 100%);
border: none;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active {
color: var(--white);
background: linear-gradient(180deg, #31b0d5 0%, #269abc 100%);
}

.btn-warning {
color: var(--white);
background: linear-gradient(180deg, #f0ad4e 0%, #ec971f 100%);
border: none;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active {
color: var(--white);
background: linear-gradient(180deg, #ec971f 0%, #d58512 100%);
}

.btn-danger {
color: var(--white);
background: linear-gradient(180deg, #d9534f 0%, #c9302c 100%);
border: none;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
color: var(--white);
background: linear-gradient(180deg, #c9302c 0%, #ac2925 100%);
}

.btn-link {
color: var(--red);
font-weight: 500;
border-radius: 0;
background: transparent;
box-shadow: none;
}

.btn-link:hover,
.btn-link:focus {
color: var(--darkred);
text-decoration: underline;
background: transparent;
box-shadow: none;
transform: none;
}

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

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

.btn-link:hover,
.btn-link:focus {
color: var(--darkred);
text-decoration: underline;
background: transparent;
}

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

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

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

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

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

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

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

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

.dropdown {
position: relative;
}

.dropdown-toggle:focus {
outline: 0;
}

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

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

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

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

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

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

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

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
background: transparent;
cursor: not-allowed;
}

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

.open > a {
outline: 0;
}

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

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

.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.43;
color: #999;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: 700;
line-height: 1;
color: var(--white);
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}

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

.label:empty {
display: none;
}

.btn .label {
position: relative;
top: -1px;
}

.label-default { background: #999; }
.label-default[href]:hover,
.label-default[href]:focus { background: #808080; }
.label-primary { background: var(--red); }
.label-primary[href]:hover,
.label-primary[href]:focus { background: var(--darkred); }
.label-success { background: #5cb85c; }
.label-success[href]:hover,
.label-success[href]:focus { background: #449d44; }
.label-info { background: #5bc0de; }
.label-info[href]:hover,
.label-info[href]:focus { background: #31b0d5; }
.label-warning { background: #f0ad4e; }
.label-warning[href]:hover,
.label-warning[href]:focus { background: #ec971f; }
.label-danger { background: #d9534f; }
.label-danger[href]:hover,
.label-danger[href]:focus { background: #c9302c; }

.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: 700;
color: var(--white);
line-height: 1;
vertical-align: middle;
white-space: nowrap;
text-align: center;
border-radius: 10px;
background: #999;
}

.badge:empty {
display: none;
}

.btn .badge {
position: relative;
top: -1px;
}

.btn-xs .badge,
.btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px;
}

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

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: var(--red);
background: var(--white);
}

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

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

.nav-pills > li > a > .badge {
margin-left: 3px;
}

.jumbotron {
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background: #eee;
}

.jumbotron h1,
.jumbotron .h1 {
color: inherit;
}

.jumbotron p {
margin-bottom: 15px;
font-size: 21px;
font-weight: 200;
}

.jumbotron > hr {
border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
border-radius: 6px;
}

.jumbotron .container {
max-width: 100%;
}

@media screen and (min-width: 768px) {
.jumbotron {
padding-top: 48px;
padding-bottom: 48px;
}
.container .jumbotron,
.container-fluid .jumbotron {
padding-left: 60px;
padding-right: 60px;
}
.jumbotron h1,
.jumbotron .h1 {
font-size: 63px;
}
}

.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: var(--radius-sm);
}

.alert h4 {
margin-top: 0;
color: inherit;
}

.alert .alert-link {
font-weight: 700;
}

.alert > p,
.alert > ul {
margin-bottom: 0;
}

.alert > p + p {
margin-top: 5px;
}

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

.alert-dismissable .close,
.alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}

.alert-success {
color: #3c763d;
border-color: #d6e9c6;
background: #dff0d8;
}

.alert-success hr {
border-top-color: #c9e2b3;
}

.alert-success .alert-link {
color: #2b542c;
}

.alert-info {
color: #31708f;
border-color: #bce8f1;
background: #d9edf7;
}

.alert-info hr {
border-top-color: #a6e1ec;
}

.alert-info .alert-link {
color: #245269;
}

.alert-warning {
color: #8a6d3b;
border-color: #faebcc;
background: #fcf8e3;
}

.alert-warning hr {
border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
color: #66512c;
}

.alert-danger {
color: #a94442;
border-color: #ebccd1;
background: #f2dede;
}

.alert-danger hr {
border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
color: #843534;
}

.progress {
overflow: hidden;
height: 20px;
margin-bottom: 20px;
border-radius: var(--radius-sm);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
background: #f5f5f5;
}

.progress-bar {
float: left;
width: 0;
height: 100%;
font-size: 12px;
line-height: 20px;
color: var(--white);
text-align: center;
box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
transition: width .6s ease;
background: var(--red);
}

.progress-striped .progress-bar,
.progress-bar-striped {
background-image: linear-gradient(45deg, hsla(0,0%,100%,.15) 25%, transparent 25%, transparent 50%, hsla(0,0%,100%,.15) 50%, hsla(0,0%,100%,.15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
animation: progress-bar-stripes 2s linear infinite;
}

@keyframes progress-bar-stripes {
from { background-position: 40px 0; }
to { background-position: 0 0; }
}

.progress-bar-success { background: #5cb85c; }
.progress-bar-info { background: #5bc0de; }
.progress-bar-warning { background: #f0ad4e; }
.progress-bar-danger { background: #d9534f; }

.progress-striped .progress-bar-success {
background-image: linear-gradient(45deg, hsla(0,0%,100%,.15) 25%, transparent 25%, transparent 50%, hsla(0,0%,100%,.15) 50%, hsla(0,0%,100%,.15) 75%, transparent 75%, transparent);
}

.progress-striped .progress-bar-info {
background-image: linear-gradient(45deg, hsla(0,0%,100%,.15) 25%, transparent 25%, transparent 50%, hsla(0,0%,100%,.15) 50%, hsla(0,0%,100%,.15) 75%, transparent 75%, transparent);
}

.progress-striped .progress-bar-warning {
background-image: linear-gradient(45deg, hsla(0,0%,100%,.15) 25%, transparent 25%, transparent 50%, hsla(0,0%,100%,.15) 50%, hsla(0,0%,100%,.15) 75%, transparent 75%, transparent);
}

.progress-striped .progress-bar-danger {
background-image: linear-gradient(45deg, hsla(0,0%,100%,.15) 25%, transparent 25%, transparent 50%, hsla(0,0%,100%,.15) 50%, hsla(0,0%,100%,.15) 75%, transparent 75%, transparent);
}

.media,
.media-body {
overflow: hidden;
zoom: 1;
}

.media,
.media .media {
margin-top: 15px;
}

.media:first-child {
margin-top: 0;
}

.media-heading {
margin: 0 0 5px;
}

.media > .pull-left {
margin-right: 10px;
}

.media > .pull-right {
margin-left: 10px;
}

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

.list-group {
margin-bottom: 20px;
padding-left: 0;
}

.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
border: 1px solid #ddd;
background: var(--white);
}

.list-group-item:first-child {
border-top-right-radius: var(--radius-sm);
border-top-left-radius: var(--radius-sm);
}

.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: var(--radius-sm);
border-bottom-left-radius: var(--radius-sm);
}

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

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

a.list-group-item {
color: #555;
}

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

a.list-group-item:hover,
a.list-group-item:focus {
text-decoration: none;
background: #f5f5f5;
}

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

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: #e1edf7;
}

.list-group-item-success { color: #3c763d; background: #dff0d8; }
a.list-group-item-success { color: #3c763d; }
a.list-group-item-success .list-group-item-heading { color: inherit; }
a.list-group-item-success:hover,
a.list-group-item-success:focus { color: #3c763d; background: #d0e9c6; }
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus { color: var(--white); border-color: #3c763d; background: #3c763d; }

.list-group-item-info { color: #31708f; background: #d9edf7; }
a.list-group-item-info { color: #31708f; }
a.list-group-item-info .list-group-item-heading { color: inherit; }
a.list-group-item-info:hover,
a.list-group-item-info:focus { color: #31708f; background: #c4e3f3; }
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus { color: var(--white); border-color: #31708f; background: #31708f; }

.list-group-item-warning { color: #8a6d3b; background: #fcf8e3; }
a.list-group-item-warning { color: #8a6d3b; }
a.list-group-item-warning .list-group-item-heading { color: inherit; }
a.list-group-item-warning:hover,
a.list-group-item-warning:focus { color: #8a6d3b; background: #faf2cc; }
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus { color: var(--white); border-color: #8a6d3b; background: #8a6d3b; }

.list-group-item-danger { color: #a94442; background: #f2dede; }
a.list-group-item-danger { color: #a94442; }
a.list-group-item-danger .list-group-item-heading { color: inherit; }
a.list-group-item-danger:hover,
a.list-group-item-danger:focus { color: #a94442; background: #ebcccc; }
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus { color: var(--white); border-color: #a94442; background: #a94442; }

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

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

.panel {
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: var(--radius-sm);
box-shadow: var(--shadow-sm);
background: var(--white);
}

.panel-body {
padding: 15px;
}

.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
color: inherit;
}

.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 16px;
color: inherit;
}

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

.panel-footer {
padding: 10px 15px;
border-top: 1px solid #ddd;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
background: #f5f5f5;
}

.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: 3px;
border-top-left-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child {
border-bottom: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}

.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: 3px;
border-top-left-radius: 3px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
border: 0;
}

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

.panel-group {
margin-bottom: 20px;
}

.panel-group .panel {
margin-bottom: 0;
border-radius: var(--radius-sm);
overflow: hidden;
}

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

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

.panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #ddd;
}

.panel-default { border-color: #ddd; }
.panel-default > .panel-heading { color: #333; border-color: #ddd; background: #f5f5f5; }
.panel-default > .panel-heading + .panel-collapse .panel-body { border-top-color: #ddd; }
.panel-default > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #ddd; }

.panel-primary { border-color: var(--red); }
.panel-primary > .panel-heading { color: var(--white); border-color: var(--red); background: var(--red); }
.panel-primary > .panel-heading + .panel-collapse .panel-body { border-top-color: var(--red); }
.panel-primary > .panel-footer + .panel-collapse .panel-body { border-bottom-color: var(--red); }

.panel-success { border-color: #d6e9c6; }
.panel-success > .panel-heading { color: #3c763d; border-color: #d6e9c6; background: #dff0d8; }
.panel-success > .panel-heading + .panel-collapse .panel-body { border-top-color: #d6e9c6; }
.panel-success > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #d6e9c6; }

.panel-info { border-color: #bce8f1; }
.panel-info > .panel-heading { color: #31708f; border-color: #bce8f1; background: #d9edf7; }
.panel-info > .panel-heading + .panel-collapse .panel-body { border-top-color: #bce8f1; }
.panel-info > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #bce8f1; }

.panel-warning { border-color: #faebcc; }
.panel-warning > .panel-heading { color: #8a6d3b; border-color: #faebcc; background: #fcf8e3; }
.panel-warning > .panel-heading + .panel-collapse .panel-body { border-top-color: #faebcc; }
.panel-warning > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #faebcc; }

.panel-danger { border-color: #dc3545; }
.panel-danger > .panel-heading { color: #a94442; border-color: #ebccd1; background: #f2dede; }
.panel-danger > .panel-heading + .panel-collapse .panel-body { border-top-color: #ebccd1; }
.panel-danger > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #ebccd1; }

.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
border: 1px solid #e3e3e3;
border-radius: var(--radius-sm);
box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
background: #f5f5f5;
}

.well blockquote {
border-color: #ddd;
border-color: rgba(0,0,0,.15);
}

.well-lg { padding: 24px; border-radius: 6px; }
.well-sm { padding: 9px; border-radius: 3px; }

.close {
float: right;
font-size: 21px;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 var(--white);
opacity: .2;
}

.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
opacity: .5;
}

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

.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 {
transform: translate(0, -25%);
transition: transform var(--transition-normal);
}

.modal.in .modal-dialog {
transform: translate(0, 0);
}

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

.modal-content {
position: relative;
border: 1px solid rgba(0,0,0,.2);
border-radius: 6px;
box-shadow: var(--shadow-md);
outline: 0;
background: padding-box var(--white);
}

.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background: #000;
}

.modal-backdrop.fade {
opacity: 0;
}

.modal-backdrop.in {
opacity: .5;
}

.modal-header {
padding: 15px;
min-height: 16.43px;
}

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

.modal-title {
margin: 0;
line-height: 1.43;
}

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

.modal-footer {
margin-top: 15px;
padding: 19px 20px 20px;
text-align: right;
border-top: 1px solid #e5e5e5;
}

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

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

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

@media (min-width: 768px) {
.modal-dialog { width: 600px; margin: 30px auto; }
.modal-content { box-shadow: 0 5px 15px rgba(0,0,0,.5); }
.modal-sm { width: 300px; }
}

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

.tooltip {
position: absolute;
z-index: 1030;
display: block;
visibility: visible;
font-size: 12px;
line-height: 1.4;
opacity: 0;
}

.tooltip.in {
opacity: .9;
}

.tooltip.top { margin-top: -3px; padding: 5px 0; }
.tooltip.right { margin-left: 3px; padding: 0 5px; }
.tooltip.bottom { margin-top: 3px; padding: 5px 0; }
.tooltip.left { margin-left: -3px; padding: 0 5px; }

.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: var(--white);
text-align: center;
text-decoration: none;
border-radius: var(--radius-sm);
background: #000;
}

.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}

.tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; }
.tooltip.top-left .tooltip-arrow { bottom: 0; left: 5px; border-width: 5px 5px 0; border-top-color: #000; }
.tooltip.top-right .tooltip-arrow { bottom: 0; right: 5px; border-width: 5px 5px 0; border-top-color: #000; }
.tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000; }
.tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000; }
.tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000; }
.tooltip.bottom-left .tooltip-arrow { top: 0; left: 5px; border-width: 0 5px 5px; border-bottom-color: #000; }
.tooltip.bottom-right .tooltip-arrow { top: 0; right: 5px; border-width: 0 5px 5px; border-bottom-color: #000; }

.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1010;
display: none;
max-width: 276px;
padding: 1px;
text-align: left;
border: 1px solid rgba(0,0,0,.2);
border-radius: 6px;
box-shadow: 0 5px 10px rgba(0,0,0,.2);
white-space: normal;
background: padding-box var(--white);
}

.popover.top { margin-top: -10px; }
.popover.right { margin-left: 10px; }
.popover.bottom { margin-top: 10px; }
.popover.left { margin-left: -10px; }

.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 14px;
font-weight: 400;
line-height: 18px;
border-bottom: 1px solid #ebebeb;
border-radius: 5px 5px 0 0;
background: #f7f7f7;
}

.popover-content {
padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}

.popover > .arrow { border-width: 11px; }
.popover > .arrow:after { border-width: 10px; content: ""; }

.popover.top > .arrow { left: 50%; margin-left: -11px; border-bottom-width: 0; border-top-color: rgba(0,0,0,.25); 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: rgba(0,0,0,.25); }
.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: rgba(0,0,0,.25); 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: rgba(0,0,0,.25); }
.popover.left > .arrow:after { content: " "; right: 1px; border-right-width: 0; border-left-color: var(--white); bottom: -10px; }

.carousel { position: relative; }
.carousel-inner { position: relative; width: 100%; overflow: hidden; }
.carousel-inner > .item { position: relative; display: none; transition: left .6s ease-in-out; }
.carousel-inner > .item > a > img,
.carousel-inner > .item > img { line-height: 1; }
.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%; }

@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
transition: transform .6s ease-in-out;
backface-visibility: hidden;
perspective: 1000px;
}
.carousel-inner > .item.active.right,
.carousel-inner > .item.next { left: 0; transform: translate3d(100%, 0, 0); }
.carousel-inner > .item.active.left,
.carousel-inner > .item.prev { left: 0; transform: translate3d(-100%, 0, 0); }
.carousel-inner > .item.active,
.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right { left: 0; transform: translate3d(0, 0, 0); }
}

.carousel-control {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 15%;
font-size: 20px;
color: var(--white);
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
opacity: .5;
}

.carousel-control.left {}
.carousel-control.right { left: auto; right: 0; }

.carousel-control:hover,
.carousel-control:focus {
color: var(--white);
text-decoration: none;
outline: 0;
opacity: .9;
}

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

.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid var(--white);
border-radius: 10px;
cursor: pointer;
}

.carousel-indicators .active {
margin: 0;
width: 12px;
height: 12px;
background: var(--white);
}

.carousel-caption {
position: absolute;
left: 15%;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: var(--white);
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

.carousel-caption .btn { text-shadow: none; }

@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; font-size: 30px; }
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev { margin-left: -15px; }
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next { margin-right: -15px; }
.carousel-caption { left: 20%; right: 20%; padding-bottom: 30px; }
.carousel-indicators { bottom: 20px; }
}

.scrollup {
width: 35px;
height: 35px;
opacity: 1;
position: fixed;
bottom: 100px;
right: 20px;
color: var(--white);
cursor: pointer;
background: #ccc;
border-radius: 25%;
z-index: 999;
text-align: center;
}

.scrollup:hover {
opacity: 1;
color: var(--white);
}

.scrollup i {
padding-top: 6px;
}

.top_site_main {
padding-top: 85px;
}

.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}

.pull-right { float: right !important; }
.pull-left { float: left !important; }
.hide { display: none !important; }
.show { display: block !important; }
.invisible { visibility: hidden; }
.text-hide { font: 0/0 a; color: transparent; text-shadow: none; background: transparent; border: 0; }
.hidden { display: none !important; }
.affix { position: fixed; }

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

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}

@media (max-width: 767px) {
.visible-xs { display: block !important; }
table.visible-xs { display: table !important; }
tr.visible-xs { display: table-row !important; }
td.visible-xs, th.visible-xs { display: table-cell !important; }
.visible-xs-block { display: block !important; }
.visible-xs-inline { display: inline !important; }
.visible-xs-inline-block { display: inline-block !important; }
.hidden-xs { display: none !important; }
}

@media (min-width: 768px) and (max-width: 991px) {
.visible-sm { display: block !important; }
table.visible-sm { display: table !important; }
tr.visible-sm { display: table-row !important; }
td.visible-sm, th.visible-sm { display: table-cell !important; }
.visible-sm-block { display: block !important; }
.visible-sm-inline { display: inline !important; }
.visible-sm-inline-block { display: inline-block !important; }
.hidden-sm { display: none !important; }
}

@media (min-width: 992px) and (max-width: 1199px) {
.visible-md { display: block !important; }
table.visible-md { display: table !important; }
tr.visible-md { display: table-row !important; }
td.visible-md, th.visible-md { display: table-cell !important; }
.visible-md-block { display: block !important; }
.visible-md-inline { display: inline !important; }
.visible-md-inline-block { display: inline-block !important; }
.hidden-md { display: none !important; }
}

@media (min-width: 1200px) {
.visible-lg { display: block !important; }
table.visible-lg { display: table !important; }
tr.visible-lg { display: table-row !important; }
td.visible-lg, th.visible-lg { display: table-cell !important; }
.visible-lg-block { display: block !important; }
.visible-lg-inline { display: inline !important; }
.visible-lg-inline-block { display: inline-block !important; }
.hidden-lg { display: none !important; }
}

.red_bg { background: var(--red); }
.red, a:hover { color: var(--red); }
.white { color: var(--white); }
.white:hover { color: grey; }
.h1_ { font-size: 20px; }
.h2_ { font-size: 16px; }
.navbar-nav > li:nth-child(7) { margin-left: 55px; }
footer a { margin-left: 15px; }
footer p { text-align: right; }
.font12 { font-size: 12px; }
.font25 { font-size: 25px; }
.font16 { font-size: 16px; }
.maxheight130 { height: 130px; }

.rectangle_white {
box-shadow: 0px 3px 12px #00000029;
border: 1px solid #DBDBDB;
border-radius: 36px;
padding: 25px;
}

.bootstrap-datetimepicker-widget td,
.bootstrap-datetimepicker-widget table {
border: 0;
}

.bg_atelier {
background-image: url(../img/businesspeople-meeting-office-working.jpg);
background-repeat: no-repeat;
}

.boder-left { border-left: 1px solid #cdcccc; }
.btn-logout { background: red; color: white; padding: 5px; }

.btn-c1 {
border: 1px solid #5b6771;
border-radius: 45px;
padding: 10px 20px 7px 25px;
font-size: 15px;
}

.btn-c1in { font-size: 14px; margin: 0 0 0 20px; }
.btn-c1 a { color: #5b6771; }
.grey { color: #5b6771; }
.border-radius-20 { border-radius: 20px; }

.box {
margin-bottom: 20px;
background: var(--white);
transition-duration: 1s;
min-height: 254px;
border: 1px solid #d9d9d9;
padding: 13px;
border-radius: 20px;
box-shadow: 0px 0px 10px 1px rgba(163,163,163,1);
}

.boxh2 a { color: #676f79; }
.boxh2 a:hover { color: var(--red); }

.btn-c2 {
border: 1px solid #5b6771;
border-radius: 45px;
padding: 10px 10px 6px;
font-size: 15px;
}

.imgboxgestion { height: 75px; }
.boxh2 { height: 50px; font-size: 20px; }
.h1_21112022 { font-size: 69px; font-weight: 800; }
.margintop100 { margin-top: 100px; }
.hrhome { margin: 0; border: 0; border-top: 9px solid #eee; }

.btn-home {
color: #5b6771;
border: 2px solid;
border-radius: 25px;
padding: 5px 15px;
background: white;
}

.circle-red {
border: 2px solid;
border-radius: 25px;
padding: 3px;
margin-right: 5px;
}

@media only screen and (min-width: 768px) {
.bgteam {
background: rgba(239, 23, 47, 0.5);
position: absolute;
width: 98%;
top: -160px;
padding: 40px 136px 30px;
height: 159px;
color: white;
}
.bgteam h2 { font-size: 50px; }
}

.imgteam { border-radius: 25px; }
.resume a { color: #4181BD; }
.fixed { position: fixed; }

.table-planning > tbody > tr > td:hover { color: black; }
.table-planning > tbody > tr > td { padding: 3px; }
.table-planning > thead > tr > th { vertical-align: super; }

.img-staff {
margin: auto;
max-height: 80px;
max-width: 80px;
}

.table-planning .bg_travail { background: #518939; color: white; }
.table-planning .bg_autre { background: #8e7cc3; color: white; }
.table-planning .bg_maladie { background: #ff9900; color: white; }
.table-planning .bg_vacances { background: #990000; color: white; }
.table-planning .bg_disponible { background: #c8e9b9; color: black; }
.table-planning .bg_wfh { background: #ffd088; color: black; }
.table-planning .bg_prevision { background: #1f5806; color: white; }
.table-planning .bg_feries { background: #000; color: white; }
.table-planning .bg_indisponible { background: #e7625c; color: white; }
.table-planning .bg_disponible_ideale { background: yellow; color: black; }
.table-planning .bg_busy { background: grey; color: black; }

table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
background: none !important;
}

.table-planning > tbody .day_today > td {
border-top: 4px dashed #0cedbf !important;
border-bottom: 4px dashed #0cedbf !important;
}

.table-planning > tbody .day_hours > td {
border-top: 4px dashed #ed0c0c !important;
border-bottom: 4px dashed #ed0c0c !important;
}

.table-planning > tbody > tr > .day_date {
background: #999999;
color: white;
}

.table-planning > tbody .day_holyday > td {
background: #666666;
color: white;
font-size: 10px;
}

.table-planning > tbody .day_hours_td {
border-left: 4px solid #ed0c0c !important;
border-right: 4px solid #ed0c0c !important;
background: red !important;
}

.classicon {
display: inline;
height: 30px;
cursor: pointer;
}

.hr_red { border-top: 4px solid #f00; }
.icon { color: red; font-size: 75px; }
.height70 { height: 70px; }

@media (max-width: 992px) {
.height70_mobile { height: 70px; }
.site-logo img:first-child { max-width: 170px; }
}

.select2 { max-width: 435px; }
.matin { background: #ffffac; }
.apres-midi { background: #f7d89d; }
.soiree { background: #fddada; }

.logo-geneve { max-width: 130px; display: inline; }
.logo-geneve-header-div { display: inline-block; margin-left: 10px; height: 100px; }
.logo-geneve-header { width: 110px !important; }
.separator { display: inline; margin-left: 15px; height: 130px; }
.logo-geneve-header-subtitle { margin-left: 295px; font-size: 11px; font-weight: 400; position: absolute; top: 112px; }
