bitburner-src/main.css

7462 lines
131 KiB
CSS
Raw Normal View History

2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/* COLORS */
/* Attributes */
* {
font-size: 16px;
2021-10-11 22:38:50 +02:00
font-family: "Lucida Console", "Lucida Sans Unicode", "Fira Mono", "Consolas", "Courier New", Courier, monospace,
"Times New Roman";
}
2021-09-20 06:38:05 +02:00
*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
2021-10-11 22:38:50 +02:00
vertical-align: middle;
}
2021-09-20 06:38:05 +02:00
:root {
--my-font-color: #0c0;
--my-background-color: #000;
--my-highlight-color: #fff;
2021-10-11 22:38:50 +02:00
--my-prompt-color: #f92672;
}
2021-09-20 06:38:05 +02:00
body {
background-color: var(--my-background-color);
-ms-overflow-style: none;
/* for Internet Explorer, Edge */
scrollbar-width: none;
2021-10-11 22:38:50 +02:00
/* for Firefox */
}
2021-09-20 06:38:05 +02:00
body::-webkit-scrollbar {
display: none;
2021-10-11 22:38:50 +02:00
/* for Chrome, Safari, and Opera */
}
2021-09-20 06:38:05 +02:00
p,
pre,
h2,
h3,
h4,
.text,
td {
2021-10-11 22:38:50 +02:00
color: var(--my-font-color);
}
2021-09-20 06:38:05 +02:00
h1 {
font-size: 22px;
2021-10-11 22:38:50 +02:00
color: var(--my-font-color);
}
2021-09-20 06:38:05 +02:00
ul {
padding: 2px;
2021-10-11 22:38:50 +02:00
list-style-type: none;
}
2021-09-20 06:38:05 +02:00
li {
2021-10-11 22:38:50 +02:00
list-style-type: none;
}
2021-09-20 06:38:05 +02:00
#entire-game-container {
2021-10-11 22:38:50 +02:00
background-color: transparent;
}
2021-09-20 06:38:05 +02:00
/* Disable border highlight on elements */
input:focus,
textarea:focus,
button:focus,
td:focus,
tr:focus {
2021-10-11 22:38:50 +02:00
outline: none;
}
2021-09-20 06:38:05 +02:00
/* Make html links ("a" elements) nice looking buttons with this class */
a:link,
a:visited {
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
.dropdown {
color: #fff;
2021-10-11 22:38:50 +02:00
background-color: #000;
}
2021-09-20 06:38:05 +02:00
.text-input {
color: #fff;
background-color: #000;
border-style: solid;
border-width: 1px;
2021-10-11 22:38:50 +02:00
border-color: white;
}
2021-09-20 06:38:05 +02:00
/* Notification icon (for create program right now only) */
#create-program-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#create-program-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
#factions-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#factions-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
#augmentations-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#augmentations-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
.notification-on {
background-color: #fa3e3e;
color: #fff;
border-radius: 2px;
padding: 1px 3px;
font-size: 10px;
top: 0;
right: 0;
2021-10-11 22:38:50 +02:00
position: absolute;
}
2021-09-20 06:38:05 +02:00
.notification-off {
background-color: #333;
color: #333;
border-radius: 0;
padding: 0;
2021-10-11 22:38:50 +02:00
display: "none";
}
2021-09-20 06:38:05 +02:00
.notification {
position: relative;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.notification .badge {
position: absolute;
top: 0;
right: 0;
padding: 2px;
background: red;
2021-10-11 22:38:50 +02:00
color: white;
}
2021-09-20 06:38:05 +02:00
/* help tip. Question mark that opens popup with info/details */
.help-tip {
background-color: black;
border: 1px solid #fff;
border-radius: 5px;
color: #fff;
content: "?";
display: inline-block;
margin-left: 3px;
2021-10-11 22:38:50 +02:00
padding: 1px;
}
2021-09-20 06:38:05 +02:00
.help-tip-big {
content: "?";
padding: 3px;
margin-left: 3px;
color: #fff;
border: 1px solid #fff;
border-radius: 8px;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.help-tip:hover,
.help-tip-big:hover {
2021-10-11 22:38:50 +02:00
background-color: #888;
}
2021-09-20 06:38:05 +02:00
.help-tip:active,
.help-tip-big:active {
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
2021-10-11 22:38:50 +02:00
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
}
2021-09-20 06:38:05 +02:00
/* Flashing button (Red) */
@-webkit-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
.flashing-button {
-webkit-animation: glowing 1500ms infinite;
-moz-animation: glowing 1500ms infinite;
-o-animation: glowing 1500ms infinite;
2021-10-11 22:38:50 +02:00
animation: glowing 1500ms infinite;
}
2021-09-20 06:38:05 +02:00
/* Blinking Cursor */
/* ----- blinking cursor animation ----- */
.typed-cursor {
opacity: 1;
-webkit-animation: blink 0.95s infinite;
-moz-animation: blink 0.95s infinite;
-ms-animation: blink 0.95s infinite;
-o-animation: blink 0.95s infinite;
2021-10-11 22:38:50 +02:00
animation: blink 0.95s infinite;
}
2021-09-20 06:38:05 +02:00
@-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-webkit-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-ms-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
/* Status text */
@-webkit-keyframes status-text {
from {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
to {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
}
2021-09-20 06:38:05 +02:00
.status-text {
z-index: 2;
2021-10-11 22:38:50 +02:00
-webkit-animation: status-text 3s 1;
}
2021-09-20 06:38:05 +02:00
#status-text-container {
background-color: transparent;
position: fixed;
2021-09-20 06:38:05 +02:00
top: 0;
2021-10-11 22:38:50 +02:00
left: 50%;
}
2021-09-20 06:38:05 +02:00
#status-text {
background-color: transparent;
bottom: 0;
color: #fff;
display: none;
font-size: 20px;
margin-right: 14px;
opacity: 0;
padding: 4px;
right: 0;
top: 0;
2021-10-11 22:38:50 +02:00
width: auto;
}
2021-09-20 06:38:05 +02:00
/* Scan analyze links from AutoLink */
.scan-analyze-link {
cursor: pointer;
color: #fff;
2021-10-11 22:38:50 +02:00
text-decoration: underline;
}
.scan-analyze-link:hover {
text-decoration: none;
}
2021-09-20 06:38:05 +02:00
/* Accordion menus (Header with collapsible panel) */
.accordion-header {
background-color: #444;
color: #fff;
font-size: 20px;
margin: 6px 6px 0 6px;
padding: 4px 6px;
cursor: pointer;
width: 80%;
text-align: left;
border: none;
outline: none;
2021-10-11 22:38:50 +02:00
position: relative;
}
.accordion-header.active,
.accordion-header:hover {
background-color: #555;
}
.accordion-header.active:hover {
background-color: #666;
}
.accordion-header:after {
content: "\2795";
/* "plus" sign (+) */
font-size: 14px;
float: right;
color: transparent;
text-shadow: 0 0 0 #fff;
position: absolute;
bottom: 5px;
right: 6px;
}
.accordion-header.active:after {
content: "\2796";
/* "minus" sign (-) */
}
2021-09-20 06:38:05 +02:00
.accordion-panel {
margin: 0 6px 6px 6px;
padding: 0 6px 6px 6px;
width: 75%;
margin-left: 5%;
display: none;
background-color: #555;
overflow-y: auto;
2021-10-11 22:38:50 +02:00
overflow-x: none;
}
.accordion-panel div,
.accordion-panel ul,
.accordion-panel p,
.accordion-panel ul > li {
background-color: #555;
}
2021-09-20 06:38:05 +02:00
/* override the global <span> styling */
#active-scripts-total-production-active,
#active-scripts-total-prod-aug-total,
#active-scripts-total-prod-aug-avg {
margin: 0;
2021-10-11 22:38:50 +02:00
padding: 0;
}
2021-09-20 06:38:05 +02:00
/* Helper Classes */
.hacker-green {
2021-10-11 22:38:50 +02:00
color: #adff2f;
}
2021-09-20 06:38:05 +02:00
.money-gold {
2021-10-11 22:38:50 +02:00
color: #ffd700;
}
2021-09-20 06:38:05 +02:00
.light-yellow {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.unbuyable {
2021-10-11 22:38:50 +02:00
color: #66cfbc;
}
2021-09-20 06:38:05 +02:00
.failure {
color: #ff2929;
2021-10-11 22:38:50 +02:00
text-shadow: 0 0 0 #ff2929;
}
2021-09-20 06:38:05 +02:00
.success {
color: #3adb76;
2021-10-11 22:38:50 +02:00
text-shadow: 0 0 0 #3adb76;
}
2021-09-20 06:38:05 +02:00
.physical-yellow {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.charisma-purple {
2021-10-11 22:38:50 +02:00
color: #a671d1;
}
2021-09-20 06:38:05 +02:00
.reputation {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.smallfont {
2021-10-11 22:38:50 +02:00
font-size: 13px;
}
2021-09-20 06:38:05 +02:00
.samefont {
2021-10-11 22:38:50 +02:00
font-size: inherit;
}
2021-09-20 06:38:05 +02:00
.noscrollbar {
-ms-overflow-style: none;
/* IE and Edge */
/* stylelint-disable-next-line property-no-unknown */
scrollbar-width: none;
2021-10-11 22:38:50 +02:00
/* Firefox https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-width */
}
2021-09-20 06:38:05 +02:00
.noscrollbar::-webkit-scrollbar {
2021-10-11 22:38:50 +02:00
display: none;
}
2021-09-20 06:38:05 +02:00
input[type="checkbox"] {
2021-10-11 22:38:50 +02:00
filter: invert(1) sepia(1) hue-rotate(41deg) brightness(100%) saturate(10);
}
2021-09-20 06:38:05 +02:00
.optionCheckbox {
margin: 5px;
2021-10-11 22:38:50 +02:00
float: right;
}
2021-09-20 06:38:05 +02:00
.optionRange {
-webkit-appearance: none;
background: #777;
outline: none;
opacity: 0.7;
height: 10px;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
2021-10-11 22:38:50 +02:00
margin: 3px;
}
2021-09-20 06:38:05 +02:00
.optionRange::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 10px;
height: 10px;
background: var(--my-font-color);
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
.optionRange::-moz-range-thumb {
width: 10px;
height: 10px;
background: var(--my-font-color);
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
2021-10-11 22:38:50 +02:00
.noselect,
br {
2021-09-20 06:38:05 +02:00
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
2021-10-11 22:38:50 +02:00
user-select: none;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/* Styling for tooltip-style elements */
/* Tool tips (when hovering over an element */
.tooltip {
display: inline-block;
position: relative;
/* Positioned to left of element rather than right */
2021-10-11 22:38:50 +02:00
/* Tooltip goes below cursor instead of above */
}
.tooltip .tooltiptext {
visibility: hidden;
width: 300px;
background-color: var(--my-background-color);
border: 2px solid var(--my-highlight-color);
color: #fff;
text-align: center;
padding: 4px;
left: 101%;
pointer-events: none;
position: absolute;
z-index: 99;
}
.tooltip .tooltiptextleft {
visibility: hidden;
width: 300px;
background-color: var(--my-background-color);
border: 2px solid var(--my-highlight-color);
color: #fff;
text-align: center;
padding: 4px;
top: 50%;
left: 50%;
transform: translate(-100%, -100%);
/* Backwards compatibility */
-webkit-transform: translate(-100%, -100%);
-moz-transform: translate(-100%, -100%);
-o-transform: translate(-100%, -100%);
-ms-transform: translate(-100%, -100%);
position: absolute;
z-index: 99;
}
.tooltip .tooltiptextlow {
visibility: hidden;
width: 300px;
background-color: var(--my-background-color);
border: 2px solid var(--my-highlight-color);
color: #fff;
text-align: center;
padding: 4px;
left: 101%;
pointer-events: none;
position: absolute;
z-index: 99;
bottom: 25%;
}
2021-09-20 06:38:05 +02:00
/* Same thing as a normal tooltip except its a bit higher */
.tooltip .tooltiptexthigh {
visibility: hidden;
width: 300px;
background-color: var(--my-background-color);
border: 2px solid var(--my-highlight-color);
color: #fff;
text-align: center;
padding: 4px;
left: 101%;
bottom: -25%;
position: absolute;
2021-10-11 22:38:50 +02:00
z-index: 99;
}
2021-09-20 06:38:05 +02:00
.tooltip:hover .tooltiptext,
.tooltip:hover .tooltiptexthigh,
.tooltip:hover .tooltiptextleft,
.tooltip:hover .tooltiptextlow {
2021-10-11 22:38:50 +02:00
visibility: visible;
}
2021-09-20 06:38:05 +02:00
.copy_tooltip {
position: relative;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.copy_tooltip_copied {
color: #fff;
2021-10-11 22:38:50 +02:00
transition: color 0.3s;
}
2021-09-20 06:38:05 +02:00
.copy_tooltip .copy_tooltip_text {
visibility: hidden;
font-size: 15px;
padding: 5px;
background-color: var(--my-background-color);
color: #fff;
text-align: center;
position: absolute;
z-index: 1;
top: 120%;
left: 5%;
opacity: 0;
2021-10-11 22:38:50 +02:00
border: 2px solid var(--my-highlight-color);
}
2021-09-20 06:38:05 +02:00
.copy_tooltip .copy_tooltip_text::after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -6px;
border-width: 8px;
border-style: solid;
2021-10-11 22:38:50 +02:00
border-color: transparent transparent white transparent;
}
2021-09-20 06:38:05 +02:00
.copy_tooltip .copy_tooltip_text_visible {
visibility: visible;
opacity: 1;
2021-10-11 22:38:50 +02:00
transition: opacity 0.3s;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/* COLORS */
/* Attributes */
/* COLORS */
/* Attributes */
* {
font-size: 16px;
2021-10-11 22:38:50 +02:00
font-family: "Lucida Console", "Lucida Sans Unicode", "Fira Mono", "Consolas", "Courier New", Courier, monospace,
"Times New Roman";
}
2021-09-20 06:38:05 +02:00
*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
2021-10-11 22:38:50 +02:00
vertical-align: middle;
}
2021-09-20 06:38:05 +02:00
:root {
--my-font-color: #0c0;
--my-background-color: #000;
--my-highlight-color: #fff;
2021-10-11 22:38:50 +02:00
--my-prompt-color: #f92672;
}
2021-09-20 06:38:05 +02:00
body {
background-color: var(--my-background-color);
-ms-overflow-style: none;
/* for Internet Explorer, Edge */
scrollbar-width: none;
2021-10-11 22:38:50 +02:00
/* for Firefox */
}
2021-09-20 06:38:05 +02:00
body::-webkit-scrollbar {
display: none;
2021-10-11 22:38:50 +02:00
/* for Chrome, Safari, and Opera */
}
2021-09-20 06:38:05 +02:00
p,
pre,
h2,
h3,
h4,
.text,
td {
2021-10-11 22:38:50 +02:00
color: var(--my-font-color);
}
2021-09-20 06:38:05 +02:00
h1 {
font-size: 22px;
2021-10-11 22:38:50 +02:00
color: var(--my-font-color);
}
2021-09-20 06:38:05 +02:00
ul {
padding: 2px;
2021-10-11 22:38:50 +02:00
list-style-type: none;
}
2021-09-20 06:38:05 +02:00
li {
2021-10-11 22:38:50 +02:00
list-style-type: none;
}
2021-09-20 06:38:05 +02:00
#entire-game-container {
2021-10-11 22:38:50 +02:00
background-color: transparent;
}
2021-09-20 06:38:05 +02:00
/* Disable border highlight on elements */
input:focus,
textarea:focus,
button:focus,
td:focus,
tr:focus {
2021-10-11 22:38:50 +02:00
outline: none;
}
2021-09-20 06:38:05 +02:00
/* Make html links ("a" elements) nice looking buttons with this class */
a:link,
a:visited {
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
.dropdown {
color: #fff;
2021-10-11 22:38:50 +02:00
background-color: #000;
}
2021-09-20 06:38:05 +02:00
.text-input {
color: #fff;
background-color: #000;
border-style: solid;
border-width: 1px;
2021-10-11 22:38:50 +02:00
border-color: white;
}
2021-09-20 06:38:05 +02:00
/* Notification icon (for create program right now only) */
#create-program-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#create-program-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
#factions-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#factions-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
#augmentations-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#augmentations-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
.notification-on {
background-color: #fa3e3e;
color: #fff;
border-radius: 2px;
padding: 1px 3px;
font-size: 10px;
top: 0;
right: 0;
2021-10-11 22:38:50 +02:00
position: absolute;
}
2021-09-20 06:38:05 +02:00
.notification-off {
background-color: #333;
color: #333;
border-radius: 0;
padding: 0;
2021-10-11 22:38:50 +02:00
display: "none";
}
2021-09-20 06:38:05 +02:00
.notification {
position: relative;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.notification .badge {
position: absolute;
top: 0;
right: 0;
padding: 2px;
background: red;
2021-10-11 22:38:50 +02:00
color: white;
}
2021-09-20 06:38:05 +02:00
/* help tip. Question mark that opens popup with info/details */
.help-tip {
background-color: black;
border: 1px solid #fff;
border-radius: 5px;
color: #fff;
content: "?";
display: inline-block;
margin-left: 3px;
2021-10-11 22:38:50 +02:00
padding: 1px;
}
2021-09-20 06:38:05 +02:00
.help-tip-big {
content: "?";
padding: 3px;
margin-left: 3px;
color: #fff;
border: 1px solid #fff;
border-radius: 8px;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.help-tip:hover,
.help-tip-big:hover {
2021-10-11 22:38:50 +02:00
background-color: #888;
}
2021-09-20 06:38:05 +02:00
.help-tip:active,
.help-tip-big:active {
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
2021-10-11 22:38:50 +02:00
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
}
2021-09-20 06:38:05 +02:00
/* Flashing button (Red) */
@-webkit-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
.flashing-button {
-webkit-animation: glowing 1500ms infinite;
-moz-animation: glowing 1500ms infinite;
-o-animation: glowing 1500ms infinite;
2021-10-11 22:38:50 +02:00
animation: glowing 1500ms infinite;
}
2021-09-20 06:38:05 +02:00
/* Blinking Cursor */
/* ----- blinking cursor animation ----- */
.typed-cursor {
opacity: 1;
-webkit-animation: blink 0.95s infinite;
-moz-animation: blink 0.95s infinite;
-ms-animation: blink 0.95s infinite;
-o-animation: blink 0.95s infinite;
2021-10-11 22:38:50 +02:00
animation: blink 0.95s infinite;
}
2021-09-20 06:38:05 +02:00
@-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-webkit-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-ms-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
/* Status text */
@-webkit-keyframes status-text {
from {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
to {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
}
2021-09-20 06:38:05 +02:00
.status-text {
z-index: 2;
2021-10-11 22:38:50 +02:00
-webkit-animation: status-text 3s 1;
}
2021-09-20 06:38:05 +02:00
#status-text-container {
background-color: transparent;
2021-09-20 23:28:53 +02:00
position: fixed;
2021-09-20 06:38:05 +02:00
top: 0;
2021-10-11 22:38:50 +02:00
left: 50%;
}
2021-09-20 06:38:05 +02:00
#status-text {
background-color: transparent;
bottom: 0;
color: #fff;
display: none;
font-size: 20px;
margin-right: 14px;
opacity: 0;
padding: 4px;
right: 0;
top: 0;
2021-10-11 22:38:50 +02:00
width: auto;
}
2021-09-20 06:38:05 +02:00
/* Scan analyze links from AutoLink */
.scan-analyze-link {
cursor: pointer;
color: #fff;
2021-10-11 22:38:50 +02:00
text-decoration: underline;
}
.scan-analyze-link:hover {
text-decoration: none;
}
2021-09-20 06:38:05 +02:00
/* Accordion menus (Header with collapsible panel) */
.accordion-header {
background-color: #444;
color: #fff;
font-size: 20px;
margin: 6px 6px 0 6px;
padding: 4px 6px;
cursor: pointer;
width: 80%;
text-align: left;
border: none;
outline: none;
2021-10-11 22:38:50 +02:00
position: relative;
}
.accordion-header.active,
.accordion-header:hover {
background-color: #555;
}
.accordion-header.active:hover {
background-color: #666;
}
.accordion-header:after {
content: "\2795";
/* "plus" sign (+) */
font-size: 14px;
float: right;
color: transparent;
text-shadow: 0 0 0 #fff;
position: absolute;
bottom: 5px;
right: 6px;
}
.accordion-header.active:after {
content: "\2796";
/* "minus" sign (-) */
}
2021-09-20 06:38:05 +02:00
.accordion-panel {
margin: 0 6px 6px 6px;
padding: 0 6px 6px 6px;
width: 75%;
margin-left: 5%;
display: none;
background-color: #555;
overflow-y: auto;
2021-10-11 22:38:50 +02:00
overflow-x: none;
}
.accordion-panel div,
.accordion-panel ul,
.accordion-panel p,
.accordion-panel ul > li {
background-color: #555;
}
2021-09-20 06:38:05 +02:00
/* override the global <span> styling */
#active-scripts-total-production-active,
#active-scripts-total-prod-aug-total,
#active-scripts-total-prod-aug-avg {
margin: 0;
2021-10-11 22:38:50 +02:00
padding: 0;
}
2021-09-20 06:38:05 +02:00
/* Helper Classes */
.hacker-green {
2021-10-11 22:38:50 +02:00
color: #adff2f;
}
2021-09-20 06:38:05 +02:00
.money-gold {
2021-10-11 22:38:50 +02:00
color: #ffd700;
}
2021-09-20 06:38:05 +02:00
.light-yellow {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.unbuyable {
2021-10-11 22:38:50 +02:00
color: #66cfbc;
}
2021-09-20 06:38:05 +02:00
.failure {
color: #ff2929;
2021-10-11 22:38:50 +02:00
text-shadow: 0 0 0 #ff2929;
}
2021-09-20 06:38:05 +02:00
.success {
color: #3adb76;
2021-10-11 22:38:50 +02:00
text-shadow: 0 0 0 #3adb76;
}
2021-09-20 06:38:05 +02:00
.physical-yellow {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.charisma-purple {
2021-10-11 22:38:50 +02:00
color: #a671d1;
}
2021-09-20 06:38:05 +02:00
.reputation {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.smallfont {
2021-10-11 22:38:50 +02:00
font-size: 13px;
}
2021-09-20 06:38:05 +02:00
.samefont {
2021-10-11 22:38:50 +02:00
font-size: inherit;
}
2021-09-20 06:38:05 +02:00
.noscrollbar {
-ms-overflow-style: none;
/* IE and Edge */
/* stylelint-disable-next-line property-no-unknown */
scrollbar-width: none;
2021-10-11 22:38:50 +02:00
/* Firefox https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-width */
}
2021-09-20 06:38:05 +02:00
.noscrollbar::-webkit-scrollbar {
2021-10-11 22:38:50 +02:00
display: none;
}
2021-09-20 06:38:05 +02:00
input[type="checkbox"] {
2021-10-11 22:38:50 +02:00
filter: invert(1) sepia(1) hue-rotate(41deg) brightness(100%) saturate(10);
}
2021-09-20 06:38:05 +02:00
.optionCheckbox {
margin: 5px;
2021-10-11 22:38:50 +02:00
float: right;
}
2021-09-20 06:38:05 +02:00
.optionRange {
-webkit-appearance: none;
background: #777;
outline: none;
opacity: 0.7;
height: 10px;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
2021-10-11 22:38:50 +02:00
margin: 3px;
}
2021-09-20 06:38:05 +02:00
.optionRange::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 10px;
height: 10px;
background: var(--my-font-color);
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
.optionRange::-moz-range-thumb {
width: 10px;
height: 10px;
background: var(--my-font-color);
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
2021-10-11 22:38:50 +02:00
.noselect,
br,
.a-link-button,
.std-button,
.a-link-button-bought,
2021-09-20 06:38:05 +02:00
.std-button-bought {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
2021-10-11 22:38:50 +02:00
user-select: none;
}
2021-09-20 06:38:05 +02:00
/**
* Styling for all buttons
*
* Includes <button> elements as well as classes that are used
* for formatting buttons
*/
/* Remove default <button> styling */
button {
border: none;
2021-10-11 22:38:50 +02:00
background-color: transparent;
}
2021-09-20 06:38:05 +02:00
.a-link-button,
.std-button {
text-decoration: none;
background-color: #555;
color: #fff;
padding: 3px 5px;
margin: 5px;
2021-10-11 22:38:50 +02:00
border: 1px solid #333;
}
.a-link-button:hover,
.std-button:hover {
background-color: #666;
}
.a-link-button:active,
.std-button:active {
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
}
2021-09-20 06:38:05 +02:00
.a-link-button-inactive,
.std-button-disabled,
.std-button:disabled {
text-decoration: none;
background-color: #333;
color: #fff;
padding: 3px 5px;
margin: 5px;
border: 1px solid #333;
cursor: default;
-moz-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
2021-10-11 22:38:50 +02:00
-webkit-user-select: none;
}
.a-link-button-inactive:hover .tooltiptext,
.a-link-button-inactive:hover .tooltiptexthigh,
.a-link-button-inactive:hover .tooltiptextleft,
.std-button-disabled:hover .tooltiptext,
.std-button-disabled:hover .tooltiptexthigh,
.std-button-disabled:hover .tooltiptextleft,
.std-button:disabled:hover .tooltiptext,
.std-button:disabled:hover .tooltiptexthigh,
.std-button:disabled:hover .tooltiptextleft {
visibility: visible;
}
.a-link-button-inactive:active,
.std-button-disabled:active,
.std-button:disabled:active {
pointer-events: none;
}
2021-09-20 06:38:05 +02:00
.a-link-button-bought,
.std-button-bought {
text-decoration: none;
background-color: #0a0;
color: #fff;
padding: 3px 5px;
margin: 5px;
border: 1px solid #0a0;
2021-10-11 22:38:50 +02:00
cursor: default;
}
.a-link-button-bought:hover .tooltiptext,
.a-link-button-bought:hover .tooltiptexthigh,
.a-link-button-bought:hover .tooltiptextleft,
.std-button-bought:hover .tooltiptext,
.std-button-bought:hover .tooltiptexthigh,
.std-button-bought:hover .tooltiptextleft {
visibility: visible;
}
.a-link-button-bought:active,
.std-button-bought:active {
pointer-events: none;
}
2021-09-20 06:38:05 +02:00
/**
* This is a button that is meant to be used on accordions (accordion-header and accordion-panel classes)
* It has a black background so it does not clash with the default accordion coloring
*/
.accordion-button {
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-webkit-box-shadow: 1px 1px 3px #000;
-moz-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
color: #aaa;
font-size: 16px;
font-weight: bold;
margin: 4px;
padding: 4px;
background-color: #000;
2021-10-11 22:38:50 +02:00
/* TODO focus selector? */
}
.accordion-button:hover,
.accordion-button:active {
color: #fff;
text-decoration: none;
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/**
* Styling for the main navigation menu on the left-hand-side
*/
.mainmenu {
list-style-type: none;
margin: 0;
padding: 0;
width: 10%;
position: fixed;
height: 100%;
overflow: auto;
border: 0;
border-bottom: 1px solid #000;
border-radius: 0;
2021-10-11 22:38:50 +02:00
background-color: #333;
}
2021-09-20 06:38:05 +02:00
/* Default buttons */
.mainmenu > li a,
.mainmenu > li button {
display: block;
color: #e6e6e6;
background-color: #555;
padding: 12px 8px;
text-decoration: none;
cursor: pointer;
width: 100%;
2021-10-11 22:38:50 +02:00
text-align: left;
}
2021-09-20 06:38:05 +02:00
.mainmenu.classic > li a,
.mainmenu.classic > li button {
2021-10-11 22:38:50 +02:00
padding: 16px;
}
2021-09-20 06:38:05 +02:00
.mainmenu.compact > li a,
.mainmenu.compact > li button {
display: block;
color: #e6e6e6;
background-color: #555;
text-decoration: none;
cursor: pointer;
width: 100%;
text-align: left;
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
/* Hovering makes them lighter */
.mainmenu > li a:hover,
.mainmenu > li a:hover:not(.active),
.mainmenu > li a:focus {
background-color: #777;
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
.mainmenu > li button:hover,
.mainmenu > li button:hover:not(.active) {
background-color: #777;
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
/* Panel headers can become active, and they are "lighter" than the rest */
.mainmenu > li a.active,
.mainmenu > li button.active {
background-color: #777;
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
.mainmenu > li a.active:hover,
.mainmenu > li button.active:hover {
2021-10-11 22:38:50 +02:00
background-color: #aaa;
}
2021-09-20 06:38:05 +02:00
.menu-header {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#hacking-menu-header-li,
#character-menu-header-li,
#world-menu-header-li,
#help-menu-header-li {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
/* Accordion Outline */
.mainmenu-accordion-header,
.mainmenu-accordion-header-compact {
2021-10-11 22:38:50 +02:00
outline: 2px solid #fff !important;
}
2021-09-20 06:38:05 +02:00
.mainmenu-accordion-header-classic {
border: 2px solid #fff;
2021-10-11 22:38:50 +02:00
padding: 16px !important;
}
2021-09-20 06:38:05 +02:00
/* Plus and minus signs */
.mainmenu-accordion-header:after,
.mainmenu-accordion-header-compact:after {
content: "\2795";
float: right;
font-size: 13px;
position: absolute;
bottom: 25%;
right: 3px;
color: transparent;
2021-10-11 22:38:50 +02:00
text-shadow: 0 0 0 #fff;
}
2021-09-20 06:38:05 +02:00
.mainmenu-accordion-header-classic:after {
content: "\2795";
float: right;
font-size: 13px;
color: #fff;
2021-10-11 22:38:50 +02:00
margin-left: 5px;
}
2021-09-20 06:38:05 +02:00
.mainmenu-accordion-header.opened,
.mainmenu-accordion-header-classic.opened,
.mainmenu-accordion-header-compact.opened {
2021-10-11 22:38:50 +02:00
background-color: #222 !important;
}
.mainmenu-accordion-header.opened:after,
.mainmenu-accordion-header-classic.opened:after,
.mainmenu-accordion-header-compact.opened:after {
content: "\2796";
}
2021-09-20 06:38:05 +02:00
/* Slide down transition */
.mainmenu-accordion-panel {
2021-10-11 22:38:50 +02:00
transition: max-height 0.2s ease-out;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/**
* Styling for the Character Overview Panel (top-right panel)
*/
#character-overview {
position: fixed;
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/**
* Styling for Script Editor (both Ace and CodeMirror)
*/
#script-editor-buttons-wrapper {
width: 100%;
padding-right: 0;
2021-10-11 22:38:50 +02:00
margin-right: 0;
}
2021-09-20 06:38:05 +02:00
.script-editor-wrapper {
height: 110vh;
width: 70%;
2021-10-11 22:38:50 +02:00
background: transparent;
}
2021-09-20 06:38:05 +02:00
#script-editor-filename-wrapper {
background-color: #555;
margin-right: 0;
padding-left: 6px;
width: 100%;
2021-10-11 22:38:50 +02:00
border: 2px solid var(--my-highlight-color);
}
2021-09-20 06:38:05 +02:00
#script-editor-filename-tag {
display: inline-block;
padding-top: 10px;
padding-bottom: 0;
float: center;
background-color: #555;
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
#script-editor-filename {
-webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
background-color: #555;
border: 2px solid var(--my-highlight-color);
color: #fff;
display: inline-block;
float: center;
margin: 4px;
padding: 2px;
resize: none;
2021-10-11 22:38:50 +02:00
width: 60%;
}
2021-09-20 06:38:05 +02:00
#script-editor-status {
float: left;
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
#script-editor-options-panel {
position: absolute;
right: 9%;
bottom: 15%;
border: 2px solid #fff;
width: 19%;
background-color: #444;
padding: 2px;
overflow: auto;
z-index: 1;
color: #fff;
2021-10-11 22:38:50 +02:00
max-height: 50%;
}
2021-09-20 06:38:05 +02:00
#script-editor-options-panel fieldset {
margin-top: 8px;
margin-bottom: 8px;
padding: 2px;
2021-10-11 22:38:50 +02:00
font-size: 12px;
}
#script-editor-options-panel fieldset input {
margin: 2px;
}
2021-09-20 06:38:05 +02:00
.editor-options-container {
display: flex;
2021-10-11 22:38:50 +02:00
flex-flow: column;
}
2021-09-20 06:38:05 +02:00
.editor-options-line {
display: flex;
flex: row nowrap;
align-items: center;
2021-10-11 22:38:50 +02:00
justify-content: start;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/**
* Styling for the Hacknet Nodes UI Page
*/
.hacknet-general-info {
2021-10-11 22:38:50 +02:00
margin: 10px;
}
2021-09-20 06:38:05 +02:00
#hacknet-nodes-container li {
float: left;
overflow: hidden;
2021-10-11 22:38:50 +02:00
white-space: nowrap;
}
#hacknet-nodes-container li.hacknet-node {
-webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(0, 0, 0, 0.1);
margin: 6px;
padding: 7px;
width: 35vw;
border: 2px solid var(--my-highlight-color);
}
2021-09-20 06:38:05 +02:00
#hacknet-nodes-list {
list-style: none;
2021-10-11 22:38:50 +02:00
width: 82vw;
}
2021-09-20 06:38:05 +02:00
#hacknet-nodes-money {
margin: 10px;
2021-10-11 22:38:50 +02:00
float: left;
}
2021-09-20 06:38:05 +02:00
#hacknet-nodes-money-multipliers-div {
display: inline-block;
2021-10-11 22:38:50 +02:00
width: 70vw;
}
2021-09-20 06:38:05 +02:00
#hacknet-nodes-multipliers {
2021-10-11 22:38:50 +02:00
float: right;
}
2021-09-20 06:38:05 +02:00
#hacknet-nodes-purchase-button {
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.hacknet-node-container {
2021-10-11 22:38:50 +02:00
display: inline-table;
}
.hacknet-node-container .row {
display: table-row;
height: 30px;
}
.hacknet-node-container .row p {
display: table-cell;
}
.hacknet-node-container .upgradable-info {
display: inline-block;
margin: 0 4px;
/* Don't want the vertical margin/padding, just left & right */
padding: 0 4px;
width: 64px;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/* CSS for different main menu pages, such as character info, script editor, etc (but excluding
terminal which has its own page) */
#generic-react-container {
-ms-overflow-style: none;
/* for Internet Explorer, Edge */
scrollbar-width: none;
/* for Firefox */
2021-10-11 22:38:50 +02:00
flex-grow: 1;
}
2021-09-20 06:38:05 +02:00
#generic-react-container::-webkit-scrollbar {
display: none;
2021-10-11 22:38:50 +02:00
/* for Chrome, Safari, and Opera */
}
2021-09-20 06:38:05 +02:00
#world-city-name,
#world-city-desc {
padding: 4px;
2021-10-11 22:38:50 +02:00
margin: 4px;
}
2021-09-20 06:38:05 +02:00
#create-program-page-text,
#create-program-list {
2021-10-11 22:38:50 +02:00
width: 70%;
}
2021-09-20 06:38:05 +02:00
.faction-work-div {
width: 70%;
2021-10-11 22:38:50 +02:00
height: 100%;
}
2021-09-20 06:38:05 +02:00
.faction-work-div-wrapper {
overflow: hidden;
border: 2px solid #333;
padding: 6px;
margin: 6px;
2021-10-11 22:38:50 +02:00
width: 70%;
}
2021-09-20 06:38:05 +02:00
.faction-container p,
.faction-container pre {
padding: 4px 6px;
2021-10-11 22:38:50 +02:00
margin: 4px 6px;
}
2021-09-20 06:38:05 +02:00
.faction-container pre {
width: 70%;
white-space: pre-wrap;
/* Since CSS 2.1 */
white-space: -moz-pre-wrap;
/* Mozilla, since 1999 */
white-space: -pre-wrap;
/* Opera 4-6 */
white-space: -o-pre-wrap;
/* Opera 7 */
word-wrap: break-word;
2021-10-11 22:38:50 +02:00
/* Internet Explorer 5.5+ */
}
2021-09-20 06:38:05 +02:00
/* World */
#world-container li {
margin: 0 0 15px 0;
2021-10-11 22:38:50 +02:00
list-style-type: none;
}
2021-09-20 06:38:05 +02:00
/* Tutorial */
#tutorial-container {
position: fixed;
2021-10-11 22:38:50 +02:00
padding-top: 10px;
}
2021-09-20 06:38:05 +02:00
#tutorial-text {
width: 70%;
2021-10-11 22:38:50 +02:00
margin: 10px;
}
2021-09-20 06:38:05 +02:00
#tutorial-container a {
2021-10-11 22:38:50 +02:00
width: 50%;
}
2021-09-20 06:38:05 +02:00
/* Dev menu */
#dev-menu-container {
position: fixed;
2021-10-11 22:38:50 +02:00
padding-top: 10px;
}
2021-09-20 06:38:05 +02:00
#dev-menu-text {
width: 70%;
2021-10-11 22:38:50 +02:00
margin: 10px;
}
2021-09-20 06:38:05 +02:00
#dev-menu-container a {
2021-10-11 22:38:50 +02:00
width: 50%;
}
2021-09-20 06:38:05 +02:00
/* Location */
#location-container {
position: fixed;
padding: 6px;
2021-10-11 22:38:50 +02:00
overflow-x: hidden;
}
2021-09-20 06:38:05 +02:00
#location-container a {
display: inline-block;
2021-10-11 22:38:50 +02:00
width: 30%;
}
2021-09-20 06:38:05 +02:00
#location-slums-description {
width: 70%;
2021-10-11 22:38:50 +02:00
margin: 10px;
}
2021-09-20 06:38:05 +02:00
#location-return-to-world-button {
margin: 10px;
2021-10-11 22:38:50 +02:00
padding: 6px;
}
2021-09-20 06:38:05 +02:00
#location-container > * {
2021-10-11 22:38:50 +02:00
margin: 10px 5px 10px 5px;
}
2021-09-20 06:38:05 +02:00
#location-job-reputation,
#location-company-favor {
2021-10-11 22:38:50 +02:00
display: inline;
}
2021-09-20 06:38:05 +02:00
/* Infiltration */
#infiltration-container {
position: fixed;
margin: 5px;
2021-10-11 22:38:50 +02:00
width: 70%;
}
2021-09-20 06:38:05 +02:00
/**
* Styling for the Augmentations UI. This is the page that displays all of the
* player's owned and purchased Augmentations and Source-Files. It also allows
* the player to install Augmentations
*/
/* COLORS */
/* Attributes */
.augmentations-content > p {
2021-10-11 22:38:50 +02:00
font-size: 14px;
}
2021-09-20 06:38:05 +02:00
.augmentations-list button,
.augmentations-list div {
color: var(--my-font-color);
2021-10-11 22:38:50 +02:00
text-decoration: none;
}
2021-09-20 06:38:05 +02:00
.augmentations-list button {
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/**
* Styling for the Red Pill screen (the BitNode selection UI)
*/
#red-pill-container {
2021-10-11 22:38:50 +02:00
position: fixed;
}
2021-09-20 06:38:05 +02:00
.bitnode.level-0 {
2021-10-11 22:38:50 +02:00
color: red;
}
2021-09-20 06:38:05 +02:00
.bitnode.level-1 {
2021-10-11 22:38:50 +02:00
color: yellow;
}
2021-09-20 06:38:05 +02:00
.bitnode.level-2 {
2021-10-11 22:38:50 +02:00
color: #48d1cc;
}
2021-09-20 06:38:05 +02:00
.bitnode.level-3 {
2021-10-11 22:38:50 +02:00
color: blue;
}
2021-09-20 06:38:05 +02:00
.bitnode.unimplemented {
2021-10-11 22:38:50 +02:00
color: gray;
}
2021-09-20 06:38:05 +02:00
.bitnode:hover {
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
.stock-market-container p {
2021-10-11 22:38:50 +02:00
font-size: 13px;
}
2021-09-20 06:38:05 +02:00
.stock-market-container a {
2021-10-11 22:38:50 +02:00
font-size: 14px;
}
2021-09-20 06:38:05 +02:00
.stock-market-info-and-purchases > h2 {
display: block;
margin-top: 10px;
2021-10-11 22:38:50 +02:00
margin-left: 10px;
}
2021-09-20 06:38:05 +02:00
.stock-market-info-and-purchases > p {
display: block;
margin-left: 10px;
2021-10-11 22:38:50 +02:00
width: 70%;
}
2021-09-20 06:38:05 +02:00
.stock-market-info-and-purchases > a,
.stock-market-info-and-purchases > button {
2021-10-11 22:38:50 +02:00
margin: 10px;
}
2021-09-20 06:38:05 +02:00
#stock-market-list {
2021-10-11 22:38:50 +02:00
list-style: none;
}
#stock-market-list li button {
font-size: 16px;
}
2021-09-20 06:38:05 +02:00
#stock-market-watchlist-filter {
display: block;
margin: 5px 5px 5px 10px;
padding: 4px;
2021-10-11 22:38:50 +02:00
width: 50%;
}
2021-09-20 06:38:05 +02:00
.stock-market-input {
display: inline-block;
padding: 4px;
margin: 2px;
background-color: #000;
border: 1px solid #fff;
2021-10-11 22:38:50 +02:00
color: var(--my-font-color);
}
2021-09-20 06:38:05 +02:00
.stock-market-price-movement-warning {
border: 1px solid white;
color: red;
margin: 2px;
2021-10-11 22:38:50 +02:00
padding: 2px;
}
2021-09-20 06:38:05 +02:00
.stock-market-position-text {
color: #fff;
2021-10-11 22:38:50 +02:00
display: block;
}
.stock-market-position-text p {
color: #fff;
display: inline-block;
margin: 4px;
}
.stock-market-position-text h3 {
margin: 4px;
}
2021-09-20 06:38:05 +02:00
.stock-market-order-list {
overflow-y: auto;
2021-10-11 22:38:50 +02:00
max-height: 100px;
}
.stock-market-order-list li {
color: #fff;
padding: 4px;
}
2021-09-20 06:38:05 +02:00
.stock-market-order-cancel-btn {
background-color: #000;
border: 1px solid #fff;
color: var(--my-font-color);
margin: 2px;
2021-10-11 22:38:50 +02:00
padding: 0;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/* Both Work in progress and BitNode stuff */
.generic-fullscreen-container {
color: var(--my-font-color);
width: 99%;
height: 100%;
2021-10-11 22:38:50 +02:00
overflow-y: hidden;
}
2021-09-20 06:38:05 +02:00
.generic-fullscreen-container-scroll {
height: 100%;
width: 100%;
overflow: auto;
2021-10-11 22:38:50 +02:00
padding-right: 20px;
}
2021-09-20 06:38:05 +02:00
#work-in-progress-container {
2021-10-11 22:38:50 +02:00
position: fixed;
}
2021-09-20 06:38:05 +02:00
#work-in-progress-text {
color: var(--my-font-color);
width: 70%;
2021-10-11 22:38:50 +02:00
margin: 10px;
}
2021-09-20 06:38:05 +02:00
.work-button {
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-webkit-box-shadow: 1px 1px 3px #000;
-moz-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
color: #aaa;
float: left;
font-size: 20px;
font-weight: bold;
margin: 10px;
padding: 5px;
2021-10-11 22:38:50 +02:00
border: 3px solid #fff;
}
2021-09-20 06:38:05 +02:00
.work-button:hover,
.work-button:focus {
color: #fff;
text-decoration: none;
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
#cinematic-text-container {
2021-10-11 22:38:50 +02:00
position: fixed;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/* COLORS */
/* Attributes */
/* COLORS */
/* Attributes */
* {
font-size: 16px;
2021-10-11 22:38:50 +02:00
font-family: "Lucida Console", "Lucida Sans Unicode", "Fira Mono", "Consolas", "Courier New", Courier, monospace,
"Times New Roman";
}
2021-09-20 06:38:05 +02:00
*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
2021-10-11 22:38:50 +02:00
vertical-align: middle;
}
2021-09-20 06:38:05 +02:00
:root {
--my-font-color: #0c0;
--my-background-color: #000;
--my-highlight-color: #fff;
2021-10-11 22:38:50 +02:00
--my-prompt-color: #f92672;
}
2021-09-20 06:38:05 +02:00
body {
background-color: var(--my-background-color);
-ms-overflow-style: none;
/* for Internet Explorer, Edge */
scrollbar-width: none;
2021-10-11 22:38:50 +02:00
/* for Firefox */
}
2021-09-20 06:38:05 +02:00
body::-webkit-scrollbar {
display: none;
2021-10-11 22:38:50 +02:00
/* for Chrome, Safari, and Opera */
}
2021-09-20 06:38:05 +02:00
p,
pre,
h2,
h3,
h4,
.text,
td {
2021-10-11 22:38:50 +02:00
color: var(--my-font-color);
}
2021-09-20 06:38:05 +02:00
h1 {
font-size: 22px;
2021-10-11 22:38:50 +02:00
color: var(--my-font-color);
}
2021-09-20 06:38:05 +02:00
ul {
padding: 2px;
2021-10-11 22:38:50 +02:00
list-style-type: none;
}
2021-09-20 06:38:05 +02:00
li {
2021-10-11 22:38:50 +02:00
list-style-type: none;
}
2021-09-20 06:38:05 +02:00
#entire-game-container {
2021-10-11 22:38:50 +02:00
background-color: transparent;
}
2021-09-20 06:38:05 +02:00
/* Disable border highlight on elements */
input:focus,
textarea:focus,
button:focus,
td:focus,
tr:focus {
2021-10-11 22:38:50 +02:00
outline: none;
}
2021-09-20 06:38:05 +02:00
/* Make html links ("a" elements) nice looking buttons with this class */
a:link,
a:visited {
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
.dropdown {
color: #fff;
2021-10-11 22:38:50 +02:00
background-color: #000;
}
2021-09-20 06:38:05 +02:00
.text-input {
color: #fff;
background-color: #000;
border-style: solid;
border-width: 1px;
2021-10-11 22:38:50 +02:00
border-color: white;
}
2021-09-20 06:38:05 +02:00
/* Notification icon (for create program right now only) */
#create-program-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#create-program-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
#factions-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#factions-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
#augmentations-tab {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#augmentations-notification {
font-size: 10px;
position: absolute;
/* Position the badge within the relatively positioned button */
top: 0;
2021-10-11 22:38:50 +02:00
right: 0;
}
2021-09-20 06:38:05 +02:00
.notification-on {
background-color: #fa3e3e;
color: #fff;
border-radius: 2px;
padding: 1px 3px;
font-size: 10px;
top: 0;
right: 0;
2021-10-11 22:38:50 +02:00
position: absolute;
}
2021-09-20 06:38:05 +02:00
.notification-off {
background-color: #333;
color: #333;
border-radius: 0;
padding: 0;
2021-10-11 22:38:50 +02:00
display: "none";
}
2021-09-20 06:38:05 +02:00
.notification {
position: relative;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.notification .badge {
position: absolute;
top: 0;
right: 0;
padding: 2px;
background: red;
2021-10-11 22:38:50 +02:00
color: white;
}
2021-09-20 06:38:05 +02:00
/* help tip. Question mark that opens popup with info/details */
.help-tip {
background-color: black;
border: 1px solid #fff;
border-radius: 5px;
color: #fff;
content: "?";
display: inline-block;
margin-left: 3px;
2021-10-11 22:38:50 +02:00
padding: 1px;
}
2021-09-20 06:38:05 +02:00
.help-tip-big {
content: "?";
padding: 3px;
margin-left: 3px;
color: #fff;
border: 1px solid #fff;
border-radius: 8px;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.help-tip:hover,
.help-tip-big:hover {
2021-10-11 22:38:50 +02:00
background-color: #888;
}
2021-09-20 06:38:05 +02:00
.help-tip:active,
.help-tip-big:active {
-webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
2021-10-11 22:38:50 +02:00
box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
}
2021-09-20 06:38:05 +02:00
/* Flashing button (Red) */
@-webkit-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-webkit-box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
-moz-box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
@keyframes glowing {
0% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
2021-09-20 06:38:05 +02:00
50% {
background-color: #f00;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 40px #f00;
}
2021-09-20 06:38:05 +02:00
100% {
background-color: #b20000;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #b20000;
}
}
2021-09-20 06:38:05 +02:00
.flashing-button {
-webkit-animation: glowing 1500ms infinite;
-moz-animation: glowing 1500ms infinite;
-o-animation: glowing 1500ms infinite;
2021-10-11 22:38:50 +02:00
animation: glowing 1500ms infinite;
}
2021-09-20 06:38:05 +02:00
/* Blinking Cursor */
/* ----- blinking cursor animation ----- */
.typed-cursor {
opacity: 1;
-webkit-animation: blink 0.95s infinite;
-moz-animation: blink 0.95s infinite;
-ms-animation: blink 0.95s infinite;
-o-animation: blink 0.95s infinite;
2021-10-11 22:38:50 +02:00
animation: blink 0.95s infinite;
}
2021-09-20 06:38:05 +02:00
@-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-webkit-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-ms-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes blink {
0% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
}
2021-09-20 06:38:05 +02:00
/* Status text */
@-webkit-keyframes status-text {
from {
2021-10-11 22:38:50 +02:00
opacity: 1;
}
2021-09-20 06:38:05 +02:00
to {
2021-10-11 22:38:50 +02:00
opacity: 0;
}
}
2021-09-20 06:38:05 +02:00
.status-text {
z-index: 2;
2021-10-11 22:38:50 +02:00
-webkit-animation: status-text 3s 1;
}
2021-09-20 06:38:05 +02:00
#status-text-container {
background-color: transparent;
2021-09-20 23:28:53 +02:00
position: fixed;
2021-09-20 06:38:05 +02:00
top: 0;
2021-10-11 22:38:50 +02:00
left: 50%;
}
2021-09-20 06:38:05 +02:00
#status-text {
background-color: transparent;
bottom: 0;
color: #fff;
display: none;
font-size: 20px;
margin-right: 14px;
opacity: 0;
padding: 4px;
right: 0;
top: 0;
2021-10-11 22:38:50 +02:00
width: auto;
}
2021-09-20 06:38:05 +02:00
/* Scan analyze links from AutoLink */
.scan-analyze-link {
cursor: pointer;
color: #fff;
2021-10-11 22:38:50 +02:00
text-decoration: underline;
}
.scan-analyze-link:hover {
text-decoration: none;
}
2021-09-20 06:38:05 +02:00
/* Accordion menus (Header with collapsible panel) */
.accordion-header {
background-color: #444;
color: #fff;
font-size: 20px;
margin: 6px 6px 0 6px;
padding: 4px 6px;
cursor: pointer;
width: 80%;
text-align: left;
border: none;
outline: none;
2021-10-11 22:38:50 +02:00
position: relative;
}
.accordion-header.active,
.accordion-header:hover {
background-color: #555;
}
.accordion-header.active:hover {
background-color: #666;
}
.accordion-header:after {
content: "\2795";
/* "plus" sign (+) */
font-size: 14px;
float: right;
color: transparent;
text-shadow: 0 0 0 #fff;
position: absolute;
bottom: 5px;
right: 6px;
}
.accordion-header.active:after {
content: "\2796";
/* "minus" sign (-) */
}
2021-09-20 06:38:05 +02:00
.accordion-panel {
margin: 0 6px 6px 6px;
padding: 0 6px 6px 6px;
width: 75%;
margin-left: 5%;
display: none;
background-color: #555;
overflow-y: auto;
2021-10-11 22:38:50 +02:00
overflow-x: none;
}
.accordion-panel div,
.accordion-panel ul,
.accordion-panel p,
.accordion-panel ul > li {
background-color: #555;
}
2021-09-20 06:38:05 +02:00
/* override the global <span> styling */
#active-scripts-total-production-active,
#active-scripts-total-prod-aug-total,
#active-scripts-total-prod-aug-avg {
margin: 0;
2021-10-11 22:38:50 +02:00
padding: 0;
}
2021-09-20 06:38:05 +02:00
/* Helper Classes */
.hacker-green {
2021-10-11 22:38:50 +02:00
color: #adff2f;
}
2021-09-20 06:38:05 +02:00
.money-gold {
2021-10-11 22:38:50 +02:00
color: #ffd700;
}
2021-09-20 06:38:05 +02:00
.light-yellow {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.unbuyable {
2021-10-11 22:38:50 +02:00
color: #66cfbc;
}
2021-09-20 06:38:05 +02:00
.failure {
color: #ff2929;
2021-10-11 22:38:50 +02:00
text-shadow: 0 0 0 #ff2929;
}
2021-09-20 06:38:05 +02:00
.success {
color: #3adb76;
2021-10-11 22:38:50 +02:00
text-shadow: 0 0 0 #3adb76;
}
2021-09-20 06:38:05 +02:00
.physical-yellow {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.charisma-purple {
2021-10-11 22:38:50 +02:00
color: #a671d1;
}
2021-09-20 06:38:05 +02:00
.reputation {
2021-10-11 22:38:50 +02:00
color: #faffdf;
}
2021-09-20 06:38:05 +02:00
.smallfont {
2021-10-11 22:38:50 +02:00
font-size: 13px;
}
2021-09-20 06:38:05 +02:00
.samefont {
2021-10-11 22:38:50 +02:00
font-size: inherit;
}
2021-09-20 06:38:05 +02:00
.noscrollbar {
-ms-overflow-style: none;
/* IE and Edge */
/* stylelint-disable-next-line property-no-unknown */
scrollbar-width: none;
2021-10-11 22:38:50 +02:00
/* Firefox https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-width */
}
2021-09-20 06:38:05 +02:00
.noscrollbar::-webkit-scrollbar {
2021-10-11 22:38:50 +02:00
display: none;
}
2021-09-20 06:38:05 +02:00
input[type="checkbox"] {
2021-10-11 22:38:50 +02:00
filter: invert(1) sepia(1) hue-rotate(41deg) brightness(100%) saturate(10);
}
2021-09-20 06:38:05 +02:00
.optionCheckbox {
margin: 5px;
2021-10-11 22:38:50 +02:00
float: right;
}
2021-09-20 06:38:05 +02:00
.optionRange {
-webkit-appearance: none;
background: #777;
outline: none;
opacity: 0.7;
height: 10px;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
2021-10-11 22:38:50 +02:00
margin: 3px;
}
2021-09-20 06:38:05 +02:00
.optionRange::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 10px;
height: 10px;
background: var(--my-font-color);
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
.optionRange::-moz-range-thumb {
width: 10px;
height: 10px;
background: var(--my-font-color);
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
2021-10-11 22:38:50 +02:00
.noselect,
br,
.dialog-box-close-button {
2021-09-20 06:38:05 +02:00
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
2021-10-11 22:38:50 +02:00
user-select: none;
}
2021-09-20 06:38:05 +02:00
/* Pop-up boxes */
.popup-box-container {
display: none;
/* Initially hidden */
position: fixed;
/* Stay in place */
z-index: 1300;
/* Sit on top */
left: 0;
top: 0;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
2021-10-11 22:38:50 +02:00
background-color: rbga(var(--my-background-color), 0.4);
}
2021-09-20 06:38:05 +02:00
.popup-box-content {
background-color: var(--my-background-color);
padding: 12px;
2021-09-27 23:09:48 +02:00
border: 2px solid #adff2f;
2021-09-20 06:38:05 +02:00
width: 70%;
max-height: 80%;
overflow-y: auto;
z-index: 11;
/* Sit on top of the container */
2021-09-27 23:09:48 +02:00
color: var(--my-font-color);
2021-10-11 22:38:50 +02:00
box-shadow: 0 3px 5px -1px #090, 0 5px 8px 0 #090, 0 1px 14px 0 #090;
}
2021-09-20 06:38:05 +02:00
.popup-box-input-div {
2021-10-11 22:38:50 +02:00
margin: 2px;
}
2021-09-20 06:38:05 +02:00
.popup-box-button,
.popup-box-button-inactive {
color: #aaa;
float: right;
font-size: 16px;
font-weight: bold;
padding: 2px;
margin: 6px;
border: 1px solid #fff;
2021-10-11 22:38:50 +02:00
background-color: #000;
}
2021-09-20 06:38:05 +02:00
.popup-box-button:hover,
.popup-box-button:focus {
color: var(--my-font-color);
text-decoration: none;
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
.popupbox-button-inactive {
pointer-events: none;
2021-10-11 22:38:50 +02:00
cursor: default;
}
2021-09-20 06:38:05 +02:00
#yes-no-text-input-box-input {
color: var(--my-font-color);
border: 1px solid #fff;
2021-10-11 22:38:50 +02:00
background-color: #000;
}
2021-09-20 06:38:05 +02:00
.dialog-box-container {
display: block;
position: absolute;
z-index: 10;
width: 50%;
height: auto;
max-height: 50%;
top: 40%;
left: 50%;
margin: -10% 0 0 -25%;
overflow: auto;
background-color: var(--my-background-color);
2021-10-11 22:38:50 +02:00
border: 5px solid var(--my-highlight-color);
}
2021-09-20 06:38:05 +02:00
.log-box-container {
display: flex;
flex-flow: column;
background-color: gray;
width: 50%;
position: fixed;
left: 50%;
top: 40%;
margin: -10% 0 0 -25%;
height: auto;
max-height: 50%;
z-index: 10;
background-color: var(--my-background-color);
2021-10-11 22:38:50 +02:00
border: 2px solid #adff2f;
}
2021-09-20 06:38:05 +02:00
.log-box-header {
z-index: 1300;
background-color: #333;
2021-09-27 23:09:48 +02:00
border: 2px solid #adff2f;
2021-09-20 06:38:05 +02:00
display: flex;
flex: row nowrap;
align-items: center;
2021-09-25 17:23:56 +02:00
justify-content: space-between;
2021-10-11 22:38:50 +02:00
cursor: grab;
}
2021-09-20 06:38:05 +02:00
.log-box-log-container {
2021-10-11 22:38:50 +02:00
overflow-y: auto;
}
2021-09-20 06:38:05 +02:00
.log-box-button {
color: #aaa;
font-size: 16px;
font-weight: bold;
padding: 2px;
margin: 6px;
border: 1px solid #fff;
2021-10-11 22:38:50 +02:00
background-color: #000;
}
2021-09-20 06:38:05 +02:00
.log-box-button:hover,
.log-box-button:focus {
color: var(--my-font-color);
text-decoration: none;
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
.dialog-box-content {
z-index: 2;
background-color: var(--my-background-color);
2021-10-11 22:38:50 +02:00
padding: 10px;
}
.dialog-box-content p span {
padding: 0;
margin: 0;
}
2021-09-20 06:38:05 +02:00
.dialog-box-close-button {
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-webkit-box-shadow: 1px 1px 3px #000;
-moz-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
float: right;
color: #aaa;
font-size: 20px;
2021-10-11 22:38:50 +02:00
font-weight: bold;
}
2021-09-20 06:38:05 +02:00
#log-box-close {
position: fixed;
2021-10-11 22:38:50 +02:00
right: 27%;
}
2021-09-20 06:38:05 +02:00
#log-box-kill-script {
right: 11%;
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#log-box-close,
#log-box-kill-script {
float: right;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
2021-09-20 06:38:05 +02:00
.dialog-box-close-button:hover,
.dialog-box-close-button:focus {
color: #fff;
text-decoration: none;
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
/* Faction invitation box */
#faction-invitation-box-container {
2021-10-11 22:38:50 +02:00
transition: opacity 400ms ease-in;
}
2021-09-20 06:38:05 +02:00
#faction-invitation-box-warning {
margin: 4px;
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
/* Infiltration-box */
#infiltration-box-sell,
#infiltration-box-faction {
display: block;
padding: 8px;
2021-10-11 22:38:50 +02:00
margin: 8px;
}
2021-09-20 06:38:05 +02:00
#infiltration-box-content span {
padding: 0;
2021-10-11 22:38:50 +02:00
margin: 0;
}
2021-09-20 06:38:05 +02:00
#infiltration-faction-select {
2021-10-11 22:38:50 +02:00
background-color: #000;
}
2021-09-20 06:38:05 +02:00
/* Game Options */
#game-options-container {
2021-10-11 22:38:50 +02:00
transition: opacity 400ms ease-in;
}
2021-09-20 06:38:05 +02:00
#game-options-content {
background-color: var(--my-background-color);
padding: 10px;
border: 5px solid var(--my-highlight-color);
color: var(--my-font-color);
width: 80%;
max-height: 80%;
2021-10-11 22:38:50 +02:00
overflow-y: auto;
}
2021-09-20 06:38:05 +02:00
#game-options-left-panel,
#game-options-right-panel {
display: inline-block;
2021-10-11 22:38:50 +02:00
width: 49%;
}
2021-09-20 06:38:05 +02:00
#game-options-close-button {
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-webkit-box-shadow: 1px 1px 3px #000;
-moz-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
color: #aaa;
float: right;
margin: 4px;
padding: 4px;
font-size: 20px;
2021-10-11 22:38:50 +02:00
font-weight: bold;
}
2021-09-20 06:38:05 +02:00
#game-options-close-button:hover,
#game-options-close-button:focus {
color: #fff;
text-decoration: none;
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
#game-options-left-panel fieldset {
padding: 2px;
2021-10-11 22:38:50 +02:00
margin: 2px;
}
2021-09-20 06:38:05 +02:00
#import-game-file-selector {
2021-10-11 22:38:50 +02:00
display: none;
}
2021-09-20 06:38:05 +02:00
/* Styling for the game options/settings
*
* Styling for the actual Game Options popup box can be found in popupboxes.scss
* This stylesheet is for everything inside the Game Options pop-up box
*/
/* COLORS */
/* Attributes */
#game-options-right-panel a {
display: block;
2021-10-11 22:38:50 +02:00
width: 46%;
}
2021-09-20 06:38:05 +02:00
#game-options-right-panel button {
display: inline-block;
2021-10-11 22:38:50 +02:00
width: 46%;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/* interactivetutorial.css */
#interactive-tutorial-wrapper {
2021-10-11 22:38:50 +02:00
position: relative;
}
2021-09-20 06:38:05 +02:00
#interactive-tutorial-container {
display: none;
position: fixed;
/* Stay in place */
right: 0;
top: 0;
height: 450px;
padding: 10px;
border: 5px solid #fff;
width: 23%;
overflow: hidden;
background-color: #444;
/* Fallback color */
2021-10-11 22:38:50 +02:00
color: #fff;
}
#interactive-tutorial-container > strong {
background-color: #444;
}
2021-09-20 06:38:05 +02:00
#interactive-tutorial-text {
padding: 4px;
margin: 4px;
color: #fff;
background-color: #444;
font-size: 14px;
max-height: 350px;
2021-10-11 22:38:50 +02:00
overflow-y: auto;
}
2021-09-20 06:38:05 +02:00
#interactive-tutorial-exit,
#interactive-tutorial-next,
#interactive-tutorial-back {
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-webkit-box-shadow: 1px 1px 3px #000;
-moz-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
color: #aaa;
font-size: 18px;
font-weight: bold;
2021-10-11 22:38:50 +02:00
background-color: #000;
}
#interactive-tutorial-exit:hover,
#interactive-tutorial-exit:focus,
#interactive-tutorial-next:hover,
#interactive-tutorial-next:focus,
#interactive-tutorial-back:hover,
#interactive-tutorial-back:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
#interactive-tutorial-exit {
position: absolute;
bottom: 0;
left: 0;
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
#interactive-tutorial-back {
float: left;
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
#interactive-tutorial-next {
float: right;
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
.interactive-tutorial-command {
background-color: #000;
color: #adff2f;
2021-10-11 22:38:50 +02:00
white-space: nowrap;
}
2021-09-20 06:38:05 +02:00
.interactive-tutorial-code {
background-color: #272822;
color: white;
2021-10-11 22:38:50 +02:00
padding: 3px;
}
2021-09-20 06:38:05 +02:00
.interactive-tutorial-tab {
background-color: #555;
color: #e6e6e6;
padding: 3px;
2021-10-11 22:38:50 +02:00
box-shadow: 0 0 3px #000;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
* {
font-size: 16px;
2021-10-11 22:38:50 +02:00
font-family: "Lucida Console", "Lucida Sans Unicode", "Fira Mono", "Consolas", "Courier New", Courier, monospace,
"Times New Roman";
}
2021-09-20 06:38:05 +02:00
*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
2021-10-11 22:38:50 +02:00
vertical-align: middle;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
@-webkit-keyframes LOADERSPINNER {
0% {
2021-10-11 22:38:50 +02:00
-webkit-transform: translate(-50%, -50%) rotate(0deg);
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
-webkit-transform: translate(-50%, -50%) rotate(360deg);
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes LOADERSPINNER {
0% {
2021-10-11 22:38:50 +02:00
-moz-transform: translate(-50%, -50%) rotate(0deg);
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
-moz-transform: translate(-50%, -50%) rotate(360deg);
}
}
2021-09-20 06:38:05 +02:00
@-ms-keyframes LOADERSPINNER {
0% {
2021-10-11 22:38:50 +02:00
-ms-transform: translate(-50%, -50%) rotate(0deg);
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
-ms-transform: translate(-50%, -50%) rotate(360deg);
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes LOADERSPINNER {
0% {
2021-10-11 22:38:50 +02:00
-o-transform: translate(-50%, -50%) rotate(0deg);
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
-o-transform: translate(-50%, -50%) rotate(360deg);
}
}
2021-09-20 06:38:05 +02:00
@keyframes LOADERSPINNER {
0% {
2021-10-11 22:38:50 +02:00
transform: translate(-50%, -50%) rotate(0deg);
}
2021-09-20 06:38:05 +02:00
100% {
2021-10-11 22:38:50 +02:00
transform: translate(-50%, -50%) rotate(360deg);
}
}
2021-09-20 06:38:05 +02:00
@-webkit-keyframes LOADERLABEL {
0% {
opacity: 1;
2021-10-11 22:38:50 +02:00
-webkit-transform: translate(-50%, -50%) scale(1);
}
2021-09-20 06:38:05 +02:00
5% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
-webkit-transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
95% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
-webkit-transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
100% {
opacity: 1;
2021-10-11 22:38:50 +02:00
-webkit-transform: translate(-50%, -50%) scale(1);
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes LOADERLABEL {
0% {
opacity: 1;
2021-10-11 22:38:50 +02:00
-moz-transform: translate(-50%, -50%) scale(1);
}
2021-09-20 06:38:05 +02:00
5% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
-moz-transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
95% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
-moz-transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
100% {
opacity: 1;
2021-10-11 22:38:50 +02:00
-moz-transform: translate(-50%, -50%) scale(1);
}
}
2021-09-20 06:38:05 +02:00
@-ms-keyframes LOADERLABEL {
0% {
opacity: 1;
2021-10-11 22:38:50 +02:00
-ms-transform: translate(-50%, -50%) scale(1);
}
2021-09-20 06:38:05 +02:00
5% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
-ms-transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
95% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
-ms-transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
100% {
opacity: 1;
2021-10-11 22:38:50 +02:00
-ms-transform: translate(-50%, -50%) scale(1);
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes LOADERLABEL {
0% {
opacity: 1;
2021-10-11 22:38:50 +02:00
-o-transform: translate(-50%, -50%) scale(1);
}
2021-09-20 06:38:05 +02:00
5% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
-o-transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
95% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
-o-transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
100% {
opacity: 1;
2021-10-11 22:38:50 +02:00
-o-transform: translate(-50%, -50%) scale(1);
}
}
2021-09-20 06:38:05 +02:00
@keyframes LOADERLABEL {
0% {
opacity: 1;
2021-10-11 22:38:50 +02:00
transform: translate(-50%, -50%) scale(1);
}
2021-09-20 06:38:05 +02:00
5% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
95% {
opacity: 0.5;
2021-10-11 22:38:50 +02:00
transform: translate(-50%, -50%) scale(0.5);
}
2021-09-20 06:38:05 +02:00
100% {
opacity: 1;
2021-10-11 22:38:50 +02:00
transform: translate(-50%, -50%) scale(1);
}
}
2021-09-20 06:38:05 +02:00
.loaderoverlay {
position: absolute;
width: 100%;
height: 100%;
background: #000;
2021-10-11 22:38:50 +02:00
color: #0c0;
}
.loaderoverlay .loaderspinner,
.loaderoverlay .loaderspinner:before,
.loaderoverlay .loaderspinner:after {
border: 20px solid rgba(0, 0, 0, 0);
border-top-color: #0c0;
border-bottom-color: #0c0;
border-radius: 1000px;
position: absolute;
top: 50%;
left: 50%;
}
.loaderoverlay .loaderspinner:before,
.loaderoverlay .loaderspinner:after {
content: "";
}
.loaderoverlay .loaderspinner {
-webkit-animation: LOADERSPINNER 5s linear infinite;
-moz-animation: LOADERSPINNER 5s linear infinite;
-ms-animation: LOADERSPINNER 5s linear infinite;
-o-animation: LOADERSPINNER 5s linear infinite;
animation: LOADERSPINNER 5s linear infinite;
width: 200px;
height: 200px;
}
.loaderoverlay .loaderspinner:before {
-webkit-animation: LOADERSPINNER 10s linear infinite;
-moz-animation: LOADERSPINNER 10s linear infinite;
-ms-animation: LOADERSPINNER 10s linear infinite;
-o-animation: LOADERSPINNER 10s linear infinite;
animation: LOADERSPINNER 10s linear infinite;
width: 160px;
height: 160px;
}
.loaderoverlay .loaderspinner:after {
-webkit-animation: LOADERSPINNER 5s linear infinite;
-moz-animation: LOADERSPINNER 5s linear infinite;
-ms-animation: LOADERSPINNER 5s linear infinite;
-o-animation: LOADERSPINNER 5s linear infinite;
animation: LOADERSPINNER 5s linear infinite;
width: 120px;
height: 120px;
}
.loaderoverlay .loaderlabel {
-webkit-animation: LOADERLABEL 5s linear infinite;
-moz-animation: LOADERLABEL 5s linear infinite;
-ms-animation: LOADERLABEL 5s linear infinite;
-o-animation: LOADERLABEL 5s linear infinite;
animation: LOADERLABEL 5s linear infinite;
text-transform: uppercase;
font-family: sans-serif;
font-size: 22px;
font-weight: 700;
letter-spacing: 2px;
position: absolute;
top: 50%;
left: 50%;
}
2021-09-20 06:38:05 +02:00
.killAllMessage {
position: absolute;
top: 95%;
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
2021-10-11 22:38:50 +02:00
transform: translateX(-50%);
}
2021-09-20 06:38:05 +02:00
.killAllMessageWrapperHidden {
2021-10-11 22:38:50 +02:00
display: none;
}
2021-09-20 06:38:05 +02:00
.killAllMessageWrapperShow {
2021-10-11 22:38:50 +02:00
display: block;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/* css for Missions */
/* Hacking missions */
#mission-container {
2021-10-11 22:38:50 +02:00
overflow: hidden;
}
2021-09-20 06:38:05 +02:00
.hack-mission-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
grid-gap: 2.5%;
height: 90%;
position: absolute;
width: 100%;
overflow-y: auto;
2021-10-11 22:38:50 +02:00
padding-right: 10px;
}
.hack-mission-grid::-webkit-scrollbar {
display: none;
}
2021-09-20 06:38:05 +02:00
.hack-mission-node {
z-index: 5;
background-color: #808080;
align-self: center;
justify-self: center;
2021-10-11 22:38:50 +02:00
display: inline-block;
}
.hack-mission-node p {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin-top: 8px;
color: #fff;
font-size: 12px;
text-align: center;
}
2021-09-20 06:38:05 +02:00
.hack-mission-player-node {
color: #fff;
2021-10-11 22:38:50 +02:00
background-color: #00f;
}
2021-09-20 06:38:05 +02:00
.hack-mission-player-node-active {
border: 2px solid #fff;
2021-10-11 22:38:50 +02:00
background-color: #66f;
}
2021-09-20 06:38:05 +02:00
.hack-mission-enemy-node {
color: #fff;
2021-10-11 22:38:50 +02:00
background-color: #f00;
}
2021-09-20 06:38:05 +02:00
.hack-mission-cpu-node {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
width: 100%;
2021-10-11 22:38:50 +02:00
height: 100%;
}
2021-09-20 06:38:05 +02:00
.hack-mission-firewall-node {
width: 90%;
2021-10-11 22:38:50 +02:00
height: 100%;
}
2021-09-20 06:38:05 +02:00
.hack-mission-database-node {
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
-ms-transform: skew(20deg);
-o-transform: skew(20deg);
transform: skew(20deg);
width: 100%;
2021-10-11 22:38:50 +02:00
height: 90%;
}
.hack-mission-database-node p {
-webkit-transform: skew(-20deg);
-moz-transform: skew(-20deg);
-ms-transform: skew(-20deg);
-o-transform: skew(-20deg);
transform: skew(-20deg);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: #fff;
font-size: 12px;
margin-top: 8px;
text-align: center;
}
2021-09-20 06:38:05 +02:00
.hack-mission-transfer-node {
-webkit-transform: skew(-20deg);
-moz-transform: skew(-20deg);
-ms-transform: skew(-20deg);
-o-transform: skew(-20deg);
transform: skew(-20deg);
width: 100%;
2021-10-11 22:38:50 +02:00
height: 90%;
}
.hack-mission-transfer-node p {
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
-ms-transform: skew(20deg);
-o-transform: skew(20deg);
transform: skew(20deg);
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: #fff;
font-size: 12px;
margin-top: 8px;
text-align: center;
}
2021-09-20 06:38:05 +02:00
.hack-mission-spam-node,
.hack-mission-shield-node {
height: 100%;
2021-10-11 22:38:50 +02:00
width: 100%;
}
2021-09-20 06:38:05 +02:00
/* Non-map related DOM elements */
/* Element at the top of the Hacking Mission page (intro page, start button, guide buttons, etc.) */
.hack-mission-header-element {
2021-10-11 22:38:50 +02:00
margin: 6px;
}
2021-09-20 06:38:05 +02:00
.hack-mission-action-buttons-container {
2021-10-11 22:38:50 +02:00
border: 2px solid #fff;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/**
* Styling for Corporations
* The names/labels refer to "Company Management", which was the old name
* for the mechanic before it got changed to avoid confusion with normal
* companies
*/
.cmpy-mgmt-container p,
.cmpy-mgmt-container a,
.cmpy-mgmt-container div,
.cmpy-mgmt-container br {
2021-10-11 22:38:50 +02:00
font-size: 13px;
}
2021-09-20 06:38:05 +02:00
/* Header tabs */
.cmpy-mgmt-header-tab {
display: inline-block;
color: #fff;
background-color: #555;
border: 1px solid #fff;
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-header-tab:hover {
2021-10-11 22:38:50 +02:00
background-color: #666;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-header-tab.current {
2021-10-11 22:38:50 +02:00
background-color: #777;
}
2021-09-20 06:38:05 +02:00
/* Switch between Cities */
.cmpy-mgmt-city-tab {
display: inline-block;
color: #fff;
background-color: #555;
border: 1px solid #fff;
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-city-tab:hover {
2021-10-11 22:38:50 +02:00
background-color: #666;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-city-tab.current {
2021-10-11 22:38:50 +02:00
background-color: #777;
}
2021-09-20 06:38:05 +02:00
/* Panels */
#cmpy-mgmt-panel {
2021-10-11 22:38:50 +02:00
height: 90%;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-industry-left-panel,
.cmpy-mgmt-industry-right-panel {
display: inline-block;
height: 100%;
overflow-y: auto;
overflow-x: auto;
overflow: visible;
top: 10px;
width: 45%;
vertical-align: top;
2021-10-11 22:38:50 +02:00
margin-top: 10px;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-industry-overview-panel {
border: 1px solid #fff;
color: var(--my-font-color);
display: inline-block;
padding: 3px;
2021-10-11 22:38:50 +02:00
width: 100%;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-employee-panel {
border: 1px solid #fff;
display: block;
padding: 3px;
2021-10-11 22:38:50 +02:00
width: 100%;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-warehouse-panel {
border: 1px solid #fff;
display: inline-block;
padding: 3px;
2021-10-11 22:38:50 +02:00
width: 100%;
}
2021-09-20 06:38:05 +02:00
/* Hiring new employees */
.cmpy-mgmt-find-employee-option {
border: 1px solid #fff;
2021-10-11 22:38:50 +02:00
margin: 6px;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-find-employee-option:hover {
2021-10-11 22:38:50 +02:00
background-color: #3d4044;
}
2021-09-20 06:38:05 +02:00
/* Warehouse */
.cmpy-mgmt-warehouse-material-div {
padding: 2px;
2021-10-11 22:38:50 +02:00
border: 1px solid #fff;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-warehouse-product-div {
padding: 2px;
2021-10-11 22:38:50 +02:00
border: 1px solid #fff;
}
2021-09-20 06:38:05 +02:00
/* Exporting materials/products */
.cmpy-mgmt-existing-export {
border: 1px solid #fff;
border-radius: 25px;
margin: 4px;
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-existing-export:hover {
2021-10-11 22:38:50 +02:00
background-color: #333;
}
2021-09-20 06:38:05 +02:00
/* Corporation Upgrades */
.cmpy-mgmt-upgrade-container {
border: 1px solid #fff;
width: 60%;
2021-10-11 22:38:50 +02:00
margin: 4px;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-upgrade-header {
margin: 6px;
2021-10-11 22:38:50 +02:00
padding: 6px;
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-upgrade-div {
text-align: left;
display: inline-block;
border: 1px solid #fff;
margin: 2px;
padding: 6px;
border-radius: 25px;
font-size: 12px;
2021-10-11 22:38:50 +02:00
color: var(--my-font-color);
}
2021-09-20 06:38:05 +02:00
.cmpy-mgmt-upgrade-div:hover {
2021-10-11 22:38:50 +02:00
background-color: #333;
}
2021-09-20 06:38:05 +02:00
/* Industry Upgrades */
.industry-purchases-and-upgrades-header {
font-size: 14px;
margin: 2px;
2021-10-11 22:38:50 +02:00
padding: 2px;
}
2021-09-20 06:38:05 +02:00
/* Advertising */
.cmpy-mgmt-advertising-info {
2021-10-11 22:38:50 +02:00
font-size: 12px;
}
2021-09-20 06:38:05 +02:00
/* Research */
#corporation-research-popup-box-content {
overflow-x: auto !important;
2021-10-11 22:38:50 +02:00
overflow-y: auto !important;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
.bladeburner-container a,
.bladeburner-container div,
.bladeburner-container p,
.bladeburner-container pre,
.bladeburner-container td {
2021-10-11 22:38:50 +02:00
font-size: 13px;
}
2021-09-20 06:38:05 +02:00
.bladeburner-action {
border: 1px solid #fff;
margin: 7px;
padding: 7px;
2021-10-11 22:38:50 +02:00
white-space: pre-wrap;
}
.bladeburner-action pre {
white-space: pre-wrap;
}
2021-09-20 06:38:05 +02:00
/* Whatever action is currently active */
.bladeburner-active-action {
2021-10-11 22:38:50 +02:00
border: 4px solid #fff;
}
2021-09-20 06:38:05 +02:00
/* Action & Skills panel navigation button */
2021-10-11 22:38:50 +02:00
.bladeburner-nav-button,
.bladeburner-nav-button-inactive {
2021-09-20 06:38:05 +02:00
border: 1px solid #fff;
margin: 2px;
padding: 2px;
2021-10-11 22:38:50 +02:00
color: #fff;
}
2021-09-20 06:38:05 +02:00
.bladeburner-nav-button:hover {
2021-10-11 22:38:50 +02:00
background-color: #3d4044;
}
2021-09-20 06:38:05 +02:00
.bladeburner-nav-button-inactive {
text-decoration: none;
background-color: #555;
cursor: default;
2021-10-11 22:38:50 +02:00
pointer-events: none;
}
2021-09-20 06:38:05 +02:00
/* Checkbox for (de)selecting autoleveling */
.bbcheckbox {
position: relative;
2021-10-11 22:38:50 +02:00
display: inline;
}
.bbcheckbox label {
width: 20px;
height: 20px;
cursor: pointer;
position: absolute;
top: 0;
left: 0;
background: black;
border-width: 1px;
border-color: white;
border-style: solid;
}
.bbcheckbox label:after {
content: "";
width: 9px;
height: 5px;
position: absolute;
top: 5px;
left: 5px;
border: 3px solid white;
border-top: none;
border-right: none;
opacity: 0;
transform: rotate(-45deg);
}
.bbcheckbox input[type="checkbox"] {
margin: 3px;
visibility: hidden;
}
.bbcheckbox input[type="checkbox"]:checked + label:after {
opacity: 1;
}
2021-09-20 06:38:05 +02:00
/* Bladeburner Console */
.bladeburner-console-div {
display: inline-block;
width: 40%;
border: 1px solid #fff;
overflow: auto;
height: 100%;
2021-10-11 22:38:50 +02:00
position: absolute;
}
2021-09-20 06:38:05 +02:00
.bladeburner-console-table {
height: auto;
overflow: auto;
table-layout: fixed;
2021-10-11 22:38:50 +02:00
width: 100%;
}
2021-09-20 06:38:05 +02:00
.bladeburner-console-input-row {
transition: height 1s;
2021-10-11 22:38:50 +02:00
width: 100%;
}
2021-09-20 06:38:05 +02:00
.bladeburner-console-input-cell {
2021-10-11 22:38:50 +02:00
display: flex;
}
2021-09-20 06:38:05 +02:00
.bladeburner-console-input {
display: inline-block;
padding: 0 !important;
margin: 0 !important;
border: 0;
background-color: var(--my-background-color);
font-size: 13px;
outline: none;
color: var(--my-font-color);
2021-10-11 22:38:50 +02:00
flex: 1 1 auto;
}
2021-09-20 06:38:05 +02:00
.bladeburner-console-line {
word-wrap: break-word;
hyphens: auto;
-webkit-hyphens: auto;
2021-10-11 22:38:50 +02:00
-moz-hyphens: auto;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
/**
* Styling for the Gang mechanic UI (BitNode-2)
*/
.gang-container p,
.gang-container pre {
2021-10-11 22:38:50 +02:00
font-size: 15px;
}
2021-09-20 06:38:05 +02:00
.gang-container select {
background-color: black;
2021-10-11 22:38:50 +02:00
color: white;
}
2021-09-20 06:38:05 +02:00
#gang-management-subpage > p {
2021-10-11 22:38:50 +02:00
padding: 4px;
}
2021-09-20 06:38:05 +02:00
.gang-member-info-div {
background-color: #555;
display: inline;
float: left;
2021-10-11 22:38:50 +02:00
width: 30%;
}
2021-09-20 06:38:05 +02:00
/**
* Showing owned upgrades in the Equipment Box
*/
.gang-owned-upgrades-div {
display: inline-block;
margin-left: 6px;
2021-10-11 22:38:50 +02:00
width: 75%;
}
2021-09-20 06:38:05 +02:00
.gang-owned-upgrade {
border: 1px solid white;
font-size: 12px;
margin: 1px;
2021-10-11 22:38:50 +02:00
padding: 1px;
}
2021-09-20 06:38:05 +02:00
/**
* Styling for the Sleeves Management page
*/
/* COLORS */
/* Attributes */
.sleeve-elem {
border: 1px solid white;
margin: 4px;
2021-10-11 22:38:50 +02:00
display: block;
}
2021-09-20 06:38:05 +02:00
.sleeves-page-info {
display: "block";
2021-10-11 22:38:50 +02:00
width: 75%;
}
2021-09-20 06:38:05 +02:00
.sleeve-panel {
display: inline-block;
margin: 0;
2021-10-11 22:38:50 +02:00
padding: 2px;
}
.sleeve-panel select {
display: block;
}
2021-09-20 06:38:05 +02:00
/**
* Styling for the Re-Sleeving Page
*/
/* COLORS */
/* Attributes */
.resleeve-elem {
border: 1px solid white;
margin: 4px;
2021-10-11 22:38:50 +02:00
width: 75%;
}
.resleeve-elem p {
font-size: 13px;
}
2021-09-20 06:38:05 +02:00
.resleeve-panel {
display: inline-block;
margin: 0;
2021-10-11 22:38:50 +02:00
padding: 2px;
}
2021-09-20 06:38:05 +02:00
.resleeve-aug-selector {
2021-10-11 22:38:50 +02:00
font-size: 13px;
}
.resleeve-aug-selector option {
font-size: 13px;
}
2021-09-20 06:38:05 +02:00
/* required LIB STYLES */
/* .Treant se automatski dodaje na svaki chart conatiner */
.Treant {
position: relative;
overflow: hidden;
2021-10-11 22:38:50 +02:00
padding: 0 !important;
}
2021-09-20 06:38:05 +02:00
.Treant > .node,
.Treant > .pseudo {
position: absolute;
display: block;
2021-10-11 22:38:50 +02:00
visibility: hidden;
}
2021-09-20 06:38:05 +02:00
.Treant.Treant-loaded .node,
.Treant.Treant-loaded .pseudo {
2021-10-11 22:38:50 +02:00
visibility: visible;
}
2021-09-20 06:38:05 +02:00
.Treant > .pseudo {
width: 0;
height: 0;
border: none;
2021-10-11 22:38:50 +02:00
padding: 0;
}
2021-09-20 06:38:05 +02:00
.Treant .collapse-switch {
width: 3px;
height: 3px;
display: block;
border: 1px solid black;
position: absolute;
top: 1px;
right: 1px;
2021-10-11 22:38:50 +02:00
cursor: pointer;
}
2021-09-20 06:38:05 +02:00
.Treant .collapsed .collapse-switch {
2021-10-11 22:38:50 +02:00
background-color: #868dee;
}
2021-09-20 06:38:05 +02:00
.Treant > .node img {
border: none;
2021-10-11 22:38:50 +02:00
float: left;
}
2021-09-20 06:38:05 +02:00
.Treant > .node {
cursor: pointer;
padding: 4px;
min-width: 60px;
text-align: center;
border: 2px solid #e8e8e3;
border-radius: 2px;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
2021-10-11 22:38:50 +02:00
font-size: 12px;
}
2021-09-20 06:38:05 +02:00
.Treant > .researched {
background-color: #666;
2021-10-11 22:38:50 +02:00
font-size: 16px;
}
2021-09-20 06:38:05 +02:00
.Treant > .locked > div {
color: red;
2021-10-11 22:38:50 +02:00
pointer-events: none;
}
2021-09-20 06:38:05 +02:00
.Treant > .node > div {
2021-10-11 22:38:50 +02:00
font-size: 12px;
}
2021-09-20 06:38:05 +02:00
.Treant > .unlocked:hover {
2021-10-11 22:38:50 +02:00
background-color: #666;
}
2021-09-20 06:38:05 +02:00
/* stylelint-disable */
/*!
* Bootstrap Grid v4.1.2 (https://getbootstrap.com/)
* Copyright 2011-2018 The Bootstrap Authors
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
@-ms-viewport {
2021-10-11 22:38:50 +02:00
width: device-width;
}
2021-09-20 06:38:05 +02:00
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
2021-10-11 22:38:50 +02:00
-ms-overflow-style: scrollbar;
}
2021-09-20 06:38:05 +02:00
*,
*::before,
*::after {
-webkit-box-sizing: inherit;
2021-10-11 22:38:50 +02:00
box-sizing: inherit;
}
2021-09-20 06:38:05 +02:00
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
2021-10-11 22:38:50 +02:00
margin-left: auto;
}
2021-09-20 06:38:05 +02:00
@media (min-width: 576px) {
.container {
2021-10-11 22:38:50 +02:00
max-width: 540px;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 768px) {
.container {
2021-10-11 22:38:50 +02:00
max-width: 720px;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 992px) {
.container {
2021-10-11 22:38:50 +02:00
max-width: 960px;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 1200px) {
.container {
2021-10-11 22:38:50 +02:00
max-width: 1140px;
}
}
2021-09-20 06:38:05 +02:00
.container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
2021-10-11 22:38:50 +02:00
margin-left: auto;
}
2021-09-20 06:38:05 +02:00
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
2021-10-11 22:38:50 +02:00
margin-left: -15px;
}
2021-09-20 06:38:05 +02:00
.no-gutters {
margin-right: 0;
2021-10-11 22:38:50 +02:00
margin-left: 0;
}
2021-09-20 06:38:05 +02:00
.no-gutters > .col,
.no-gutters > [class*="col-"] {
padding-right: 0;
2021-10-11 22:38:50 +02:00
padding-left: 0;
}
2021-09-20 06:38:05 +02:00
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.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,
.col-sm-auto,
.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,
.col-md-auto,
.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,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
2021-10-11 22:38:50 +02:00
padding-left: 15px;
}
2021-09-20 06:38:05 +02:00
.col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
2021-10-11 22:38:50 +02:00
max-width: none;
}
2021-09-20 06:38:05 +02:00
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
2021-10-11 22:38:50 +02:00
max-width: 25%;
}
2021-09-20 06:38:05 +02:00
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
2021-10-11 22:38:50 +02:00
max-width: 50%;
}
2021-09-20 06:38:05 +02:00
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
2021-10-11 22:38:50 +02:00
max-width: 75%;
}
2021-09-20 06:38:05 +02:00
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 91.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.order-first {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
2021-10-11 22:38:50 +02:00
order: -1;
}
2021-09-20 06:38:05 +02:00
.order-last {
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
2021-10-11 22:38:50 +02:00
order: 13;
}
2021-09-20 06:38:05 +02:00
.order-0 {
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
2021-10-11 22:38:50 +02:00
order: 0;
}
2021-09-20 06:38:05 +02:00
.order-1 {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
2021-10-11 22:38:50 +02:00
order: 1;
}
2021-09-20 06:38:05 +02:00
.order-2 {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
2021-10-11 22:38:50 +02:00
order: 2;
}
2021-09-20 06:38:05 +02:00
.order-3 {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
2021-10-11 22:38:50 +02:00
order: 3;
}
2021-09-20 06:38:05 +02:00
.order-4 {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
2021-10-11 22:38:50 +02:00
order: 4;
}
2021-09-20 06:38:05 +02:00
.order-5 {
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
2021-10-11 22:38:50 +02:00
order: 5;
}
2021-09-20 06:38:05 +02:00
.order-6 {
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
2021-10-11 22:38:50 +02:00
order: 6;
}
2021-09-20 06:38:05 +02:00
.order-7 {
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
2021-10-11 22:38:50 +02:00
order: 7;
}
2021-09-20 06:38:05 +02:00
.order-8 {
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
2021-10-11 22:38:50 +02:00
order: 8;
}
2021-09-20 06:38:05 +02:00
.order-9 {
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
2021-10-11 22:38:50 +02:00
order: 9;
}
2021-09-20 06:38:05 +02:00
.order-10 {
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
2021-10-11 22:38:50 +02:00
order: 10;
}
2021-09-20 06:38:05 +02:00
.order-11 {
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
2021-10-11 22:38:50 +02:00
order: 11;
}
2021-09-20 06:38:05 +02:00
.order-12 {
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
2021-10-11 22:38:50 +02:00
order: 12;
}
2021-09-20 06:38:05 +02:00
.offset-1 {
2021-10-11 22:38:50 +02:00
margin-left: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-2 {
2021-10-11 22:38:50 +02:00
margin-left: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-3 {
2021-10-11 22:38:50 +02:00
margin-left: 25%;
}
2021-09-20 06:38:05 +02:00
.offset-4 {
2021-10-11 22:38:50 +02:00
margin-left: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-5 {
2021-10-11 22:38:50 +02:00
margin-left: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-6 {
2021-10-11 22:38:50 +02:00
margin-left: 50%;
}
2021-09-20 06:38:05 +02:00
.offset-7 {
2021-10-11 22:38:50 +02:00
margin-left: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-8 {
2021-10-11 22:38:50 +02:00
margin-left: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-9 {
2021-10-11 22:38:50 +02:00
margin-left: 75%;
}
2021-09-20 06:38:05 +02:00
.offset-10 {
2021-10-11 22:38:50 +02:00
margin-left: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-11 {
2021-10-11 22:38:50 +02:00
margin-left: 91.6666666667%;
}
2021-09-20 06:38:05 +02:00
@media (min-width: 576px) {
.col-sm {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
2021-10-11 22:38:50 +02:00
max-width: none;
}
2021-09-20 06:38:05 +02:00
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
2021-10-11 22:38:50 +02:00
max-width: 25%;
}
2021-09-20 06:38:05 +02:00
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
2021-10-11 22:38:50 +02:00
max-width: 50%;
}
2021-09-20 06:38:05 +02:00
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
2021-10-11 22:38:50 +02:00
max-width: 75%;
}
2021-09-20 06:38:05 +02:00
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 91.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.order-sm-first {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
2021-10-11 22:38:50 +02:00
order: -1;
}
2021-09-20 06:38:05 +02:00
.order-sm-last {
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
2021-10-11 22:38:50 +02:00
order: 13;
}
2021-09-20 06:38:05 +02:00
.order-sm-0 {
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
2021-10-11 22:38:50 +02:00
order: 0;
}
2021-09-20 06:38:05 +02:00
.order-sm-1 {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
2021-10-11 22:38:50 +02:00
order: 1;
}
2021-09-20 06:38:05 +02:00
.order-sm-2 {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
2021-10-11 22:38:50 +02:00
order: 2;
}
2021-09-20 06:38:05 +02:00
.order-sm-3 {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
2021-10-11 22:38:50 +02:00
order: 3;
}
2021-09-20 06:38:05 +02:00
.order-sm-4 {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
2021-10-11 22:38:50 +02:00
order: 4;
}
2021-09-20 06:38:05 +02:00
.order-sm-5 {
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
2021-10-11 22:38:50 +02:00
order: 5;
}
2021-09-20 06:38:05 +02:00
.order-sm-6 {
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
2021-10-11 22:38:50 +02:00
order: 6;
}
2021-09-20 06:38:05 +02:00
.order-sm-7 {
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
2021-10-11 22:38:50 +02:00
order: 7;
}
2021-09-20 06:38:05 +02:00
.order-sm-8 {
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
2021-10-11 22:38:50 +02:00
order: 8;
}
2021-09-20 06:38:05 +02:00
.order-sm-9 {
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
2021-10-11 22:38:50 +02:00
order: 9;
}
2021-09-20 06:38:05 +02:00
.order-sm-10 {
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
2021-10-11 22:38:50 +02:00
order: 10;
}
2021-09-20 06:38:05 +02:00
.order-sm-11 {
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
2021-10-11 22:38:50 +02:00
order: 11;
}
2021-09-20 06:38:05 +02:00
.order-sm-12 {
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
2021-10-11 22:38:50 +02:00
order: 12;
}
2021-09-20 06:38:05 +02:00
.offset-sm-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0;
}
2021-09-20 06:38:05 +02:00
.offset-sm-1 {
2021-10-11 22:38:50 +02:00
margin-left: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-2 {
2021-10-11 22:38:50 +02:00
margin-left: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-3 {
2021-10-11 22:38:50 +02:00
margin-left: 25%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-4 {
2021-10-11 22:38:50 +02:00
margin-left: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-5 {
2021-10-11 22:38:50 +02:00
margin-left: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-6 {
2021-10-11 22:38:50 +02:00
margin-left: 50%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-7 {
2021-10-11 22:38:50 +02:00
margin-left: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-8 {
2021-10-11 22:38:50 +02:00
margin-left: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-9 {
2021-10-11 22:38:50 +02:00
margin-left: 75%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-10 {
2021-10-11 22:38:50 +02:00
margin-left: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-sm-11 {
2021-10-11 22:38:50 +02:00
margin-left: 91.6666666667%;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 768px) {
.col-md {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.col-md-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
2021-10-11 22:38:50 +02:00
max-width: none;
}
2021-09-20 06:38:05 +02:00
.col-md-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-md-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-md-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
2021-10-11 22:38:50 +02:00
max-width: 25%;
}
2021-09-20 06:38:05 +02:00
.col-md-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-md-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-md-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
2021-10-11 22:38:50 +02:00
max-width: 50%;
}
2021-09-20 06:38:05 +02:00
.col-md-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-md-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-md-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
2021-10-11 22:38:50 +02:00
max-width: 75%;
}
2021-09-20 06:38:05 +02:00
.col-md-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-md-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 91.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-md-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.order-md-first {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
2021-10-11 22:38:50 +02:00
order: -1;
}
2021-09-20 06:38:05 +02:00
.order-md-last {
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
2021-10-11 22:38:50 +02:00
order: 13;
}
2021-09-20 06:38:05 +02:00
.order-md-0 {
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
2021-10-11 22:38:50 +02:00
order: 0;
}
2021-09-20 06:38:05 +02:00
.order-md-1 {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
2021-10-11 22:38:50 +02:00
order: 1;
}
2021-09-20 06:38:05 +02:00
.order-md-2 {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
2021-10-11 22:38:50 +02:00
order: 2;
}
2021-09-20 06:38:05 +02:00
.order-md-3 {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
2021-10-11 22:38:50 +02:00
order: 3;
}
2021-09-20 06:38:05 +02:00
.order-md-4 {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
2021-10-11 22:38:50 +02:00
order: 4;
}
2021-09-20 06:38:05 +02:00
.order-md-5 {
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
2021-10-11 22:38:50 +02:00
order: 5;
}
2021-09-20 06:38:05 +02:00
.order-md-6 {
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
2021-10-11 22:38:50 +02:00
order: 6;
}
2021-09-20 06:38:05 +02:00
.order-md-7 {
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
2021-10-11 22:38:50 +02:00
order: 7;
}
2021-09-20 06:38:05 +02:00
.order-md-8 {
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
2021-10-11 22:38:50 +02:00
order: 8;
}
2021-09-20 06:38:05 +02:00
.order-md-9 {
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
2021-10-11 22:38:50 +02:00
order: 9;
}
2021-09-20 06:38:05 +02:00
.order-md-10 {
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
2021-10-11 22:38:50 +02:00
order: 10;
}
2021-09-20 06:38:05 +02:00
.order-md-11 {
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
2021-10-11 22:38:50 +02:00
order: 11;
}
2021-09-20 06:38:05 +02:00
.order-md-12 {
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
2021-10-11 22:38:50 +02:00
order: 12;
}
2021-09-20 06:38:05 +02:00
.offset-md-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0;
}
2021-09-20 06:38:05 +02:00
.offset-md-1 {
2021-10-11 22:38:50 +02:00
margin-left: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-md-2 {
2021-10-11 22:38:50 +02:00
margin-left: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-md-3 {
2021-10-11 22:38:50 +02:00
margin-left: 25%;
}
2021-09-20 06:38:05 +02:00
.offset-md-4 {
2021-10-11 22:38:50 +02:00
margin-left: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-md-5 {
2021-10-11 22:38:50 +02:00
margin-left: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-md-6 {
2021-10-11 22:38:50 +02:00
margin-left: 50%;
}
2021-09-20 06:38:05 +02:00
.offset-md-7 {
2021-10-11 22:38:50 +02:00
margin-left: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-md-8 {
2021-10-11 22:38:50 +02:00
margin-left: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-md-9 {
2021-10-11 22:38:50 +02:00
margin-left: 75%;
}
2021-09-20 06:38:05 +02:00
.offset-md-10 {
2021-10-11 22:38:50 +02:00
margin-left: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-md-11 {
2021-10-11 22:38:50 +02:00
margin-left: 91.6666666667%;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 992px) {
.col-lg {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.col-lg-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
2021-10-11 22:38:50 +02:00
max-width: none;
}
2021-09-20 06:38:05 +02:00
.col-lg-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-lg-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-lg-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
2021-10-11 22:38:50 +02:00
max-width: 25%;
}
2021-09-20 06:38:05 +02:00
.col-lg-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-lg-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-lg-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
2021-10-11 22:38:50 +02:00
max-width: 50%;
}
2021-09-20 06:38:05 +02:00
.col-lg-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-lg-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-lg-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
2021-10-11 22:38:50 +02:00
max-width: 75%;
}
2021-09-20 06:38:05 +02:00
.col-lg-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-lg-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 91.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-lg-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.order-lg-first {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
2021-10-11 22:38:50 +02:00
order: -1;
}
2021-09-20 06:38:05 +02:00
.order-lg-last {
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
2021-10-11 22:38:50 +02:00
order: 13;
}
2021-09-20 06:38:05 +02:00
.order-lg-0 {
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
2021-10-11 22:38:50 +02:00
order: 0;
}
2021-09-20 06:38:05 +02:00
.order-lg-1 {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
2021-10-11 22:38:50 +02:00
order: 1;
}
2021-09-20 06:38:05 +02:00
.order-lg-2 {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
2021-10-11 22:38:50 +02:00
order: 2;
}
2021-09-20 06:38:05 +02:00
.order-lg-3 {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
2021-10-11 22:38:50 +02:00
order: 3;
}
2021-09-20 06:38:05 +02:00
.order-lg-4 {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
2021-10-11 22:38:50 +02:00
order: 4;
}
2021-09-20 06:38:05 +02:00
.order-lg-5 {
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
2021-10-11 22:38:50 +02:00
order: 5;
}
2021-09-20 06:38:05 +02:00
.order-lg-6 {
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
2021-10-11 22:38:50 +02:00
order: 6;
}
2021-09-20 06:38:05 +02:00
.order-lg-7 {
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
2021-10-11 22:38:50 +02:00
order: 7;
}
2021-09-20 06:38:05 +02:00
.order-lg-8 {
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
2021-10-11 22:38:50 +02:00
order: 8;
}
2021-09-20 06:38:05 +02:00
.order-lg-9 {
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
2021-10-11 22:38:50 +02:00
order: 9;
}
2021-09-20 06:38:05 +02:00
.order-lg-10 {
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
2021-10-11 22:38:50 +02:00
order: 10;
}
2021-09-20 06:38:05 +02:00
.order-lg-11 {
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
2021-10-11 22:38:50 +02:00
order: 11;
}
2021-09-20 06:38:05 +02:00
.order-lg-12 {
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
2021-10-11 22:38:50 +02:00
order: 12;
}
2021-09-20 06:38:05 +02:00
.offset-lg-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0;
}
2021-09-20 06:38:05 +02:00
.offset-lg-1 {
2021-10-11 22:38:50 +02:00
margin-left: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-2 {
2021-10-11 22:38:50 +02:00
margin-left: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-3 {
2021-10-11 22:38:50 +02:00
margin-left: 25%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-4 {
2021-10-11 22:38:50 +02:00
margin-left: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-5 {
2021-10-11 22:38:50 +02:00
margin-left: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-6 {
2021-10-11 22:38:50 +02:00
margin-left: 50%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-7 {
2021-10-11 22:38:50 +02:00
margin-left: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-8 {
2021-10-11 22:38:50 +02:00
margin-left: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-9 {
2021-10-11 22:38:50 +02:00
margin-left: 75%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-10 {
2021-10-11 22:38:50 +02:00
margin-left: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-lg-11 {
2021-10-11 22:38:50 +02:00
margin-left: 91.6666666667%;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 1200px) {
.col-xl {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.col-xl-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
2021-10-11 22:38:50 +02:00
max-width: none;
}
2021-09-20 06:38:05 +02:00
.col-xl-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-xl-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-xl-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
2021-10-11 22:38:50 +02:00
max-width: 25%;
}
2021-09-20 06:38:05 +02:00
.col-xl-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-xl-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-xl-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
2021-10-11 22:38:50 +02:00
max-width: 50%;
}
2021-09-20 06:38:05 +02:00
.col-xl-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-xl-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-xl-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
2021-10-11 22:38:50 +02:00
max-width: 75%;
}
2021-09-20 06:38:05 +02:00
.col-xl-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
2021-10-11 22:38:50 +02:00
max-width: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.col-xl-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
2021-10-11 22:38:50 +02:00
max-width: 91.6666666667%;
}
2021-09-20 06:38:05 +02:00
.col-xl-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
2021-10-11 22:38:50 +02:00
max-width: 100%;
}
2021-09-20 06:38:05 +02:00
.order-xl-first {
-webkit-box-ordinal-group: 0;
-ms-flex-order: -1;
2021-10-11 22:38:50 +02:00
order: -1;
}
2021-09-20 06:38:05 +02:00
.order-xl-last {
-webkit-box-ordinal-group: 14;
-ms-flex-order: 13;
2021-10-11 22:38:50 +02:00
order: 13;
}
2021-09-20 06:38:05 +02:00
.order-xl-0 {
-webkit-box-ordinal-group: 1;
-ms-flex-order: 0;
2021-10-11 22:38:50 +02:00
order: 0;
}
2021-09-20 06:38:05 +02:00
.order-xl-1 {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
2021-10-11 22:38:50 +02:00
order: 1;
}
2021-09-20 06:38:05 +02:00
.order-xl-2 {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
2021-10-11 22:38:50 +02:00
order: 2;
}
2021-09-20 06:38:05 +02:00
.order-xl-3 {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
2021-10-11 22:38:50 +02:00
order: 3;
}
2021-09-20 06:38:05 +02:00
.order-xl-4 {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
2021-10-11 22:38:50 +02:00
order: 4;
}
2021-09-20 06:38:05 +02:00
.order-xl-5 {
-webkit-box-ordinal-group: 6;
-ms-flex-order: 5;
2021-10-11 22:38:50 +02:00
order: 5;
}
2021-09-20 06:38:05 +02:00
.order-xl-6 {
-webkit-box-ordinal-group: 7;
-ms-flex-order: 6;
2021-10-11 22:38:50 +02:00
order: 6;
}
2021-09-20 06:38:05 +02:00
.order-xl-7 {
-webkit-box-ordinal-group: 8;
-ms-flex-order: 7;
2021-10-11 22:38:50 +02:00
order: 7;
}
2021-09-20 06:38:05 +02:00
.order-xl-8 {
-webkit-box-ordinal-group: 9;
-ms-flex-order: 8;
2021-10-11 22:38:50 +02:00
order: 8;
}
2021-09-20 06:38:05 +02:00
.order-xl-9 {
-webkit-box-ordinal-group: 10;
-ms-flex-order: 9;
2021-10-11 22:38:50 +02:00
order: 9;
}
2021-09-20 06:38:05 +02:00
.order-xl-10 {
-webkit-box-ordinal-group: 11;
-ms-flex-order: 10;
2021-10-11 22:38:50 +02:00
order: 10;
}
2021-09-20 06:38:05 +02:00
.order-xl-11 {
-webkit-box-ordinal-group: 12;
-ms-flex-order: 11;
2021-10-11 22:38:50 +02:00
order: 11;
}
2021-09-20 06:38:05 +02:00
.order-xl-12 {
-webkit-box-ordinal-group: 13;
-ms-flex-order: 12;
2021-10-11 22:38:50 +02:00
order: 12;
}
2021-09-20 06:38:05 +02:00
.offset-xl-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0;
}
2021-09-20 06:38:05 +02:00
.offset-xl-1 {
2021-10-11 22:38:50 +02:00
margin-left: 8.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-2 {
2021-10-11 22:38:50 +02:00
margin-left: 16.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-3 {
2021-10-11 22:38:50 +02:00
margin-left: 25%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-4 {
2021-10-11 22:38:50 +02:00
margin-left: 33.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-5 {
2021-10-11 22:38:50 +02:00
margin-left: 41.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-6 {
2021-10-11 22:38:50 +02:00
margin-left: 50%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-7 {
2021-10-11 22:38:50 +02:00
margin-left: 58.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-8 {
2021-10-11 22:38:50 +02:00
margin-left: 66.6666666667%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-9 {
2021-10-11 22:38:50 +02:00
margin-left: 75%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-10 {
2021-10-11 22:38:50 +02:00
margin-left: 83.3333333333%;
}
2021-09-20 06:38:05 +02:00
.offset-xl-11 {
2021-10-11 22:38:50 +02:00
margin-left: 91.6666666667%;
}
}
2021-09-20 06:38:05 +02:00
.d-none {
2021-10-11 22:38:50 +02:00
display: none !important;
}
2021-09-20 06:38:05 +02:00
.d-inline {
2021-10-11 22:38:50 +02:00
display: inline !important;
}
2021-09-20 06:38:05 +02:00
.d-inline-block {
2021-10-11 22:38:50 +02:00
display: inline-block !important;
}
2021-09-20 06:38:05 +02:00
.d-block {
2021-10-11 22:38:50 +02:00
display: block !important;
}
2021-09-20 06:38:05 +02:00
.d-table {
2021-10-11 22:38:50 +02:00
display: table !important;
}
2021-09-20 06:38:05 +02:00
.d-table-row {
2021-10-11 22:38:50 +02:00
display: table-row !important;
}
2021-09-20 06:38:05 +02:00
.d-table-cell {
2021-10-11 22:38:50 +02:00
display: table-cell !important;
}
2021-09-20 06:38:05 +02:00
.d-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
2021-10-11 22:38:50 +02:00
display: flex !important;
}
2021-09-20 06:38:05 +02:00
.d-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
2021-10-11 22:38:50 +02:00
display: inline-flex !important;
}
2021-09-20 06:38:05 +02:00
@media (min-width: 576px) {
.d-sm-none {
2021-10-11 22:38:50 +02:00
display: none !important;
}
2021-09-20 06:38:05 +02:00
.d-sm-inline {
2021-10-11 22:38:50 +02:00
display: inline !important;
}
2021-09-20 06:38:05 +02:00
.d-sm-inline-block {
2021-10-11 22:38:50 +02:00
display: inline-block !important;
}
2021-09-20 06:38:05 +02:00
.d-sm-block {
2021-10-11 22:38:50 +02:00
display: block !important;
}
2021-09-20 06:38:05 +02:00
.d-sm-table {
2021-10-11 22:38:50 +02:00
display: table !important;
}
2021-09-20 06:38:05 +02:00
.d-sm-table-row {
2021-10-11 22:38:50 +02:00
display: table-row !important;
}
2021-09-20 06:38:05 +02:00
.d-sm-table-cell {
2021-10-11 22:38:50 +02:00
display: table-cell !important;
}
2021-09-20 06:38:05 +02:00
.d-sm-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
2021-10-11 22:38:50 +02:00
display: flex !important;
}
2021-09-20 06:38:05 +02:00
.d-sm-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
2021-10-11 22:38:50 +02:00
display: inline-flex !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 768px) {
.d-md-none {
2021-10-11 22:38:50 +02:00
display: none !important;
}
2021-09-20 06:38:05 +02:00
.d-md-inline {
2021-10-11 22:38:50 +02:00
display: inline !important;
}
2021-09-20 06:38:05 +02:00
.d-md-inline-block {
2021-10-11 22:38:50 +02:00
display: inline-block !important;
}
2021-09-20 06:38:05 +02:00
.d-md-block {
2021-10-11 22:38:50 +02:00
display: block !important;
}
2021-09-20 06:38:05 +02:00
.d-md-table {
2021-10-11 22:38:50 +02:00
display: table !important;
}
2021-09-20 06:38:05 +02:00
.d-md-table-row {
2021-10-11 22:38:50 +02:00
display: table-row !important;
}
2021-09-20 06:38:05 +02:00
.d-md-table-cell {
2021-10-11 22:38:50 +02:00
display: table-cell !important;
}
2021-09-20 06:38:05 +02:00
.d-md-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
2021-10-11 22:38:50 +02:00
display: flex !important;
}
2021-09-20 06:38:05 +02:00
.d-md-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
2021-10-11 22:38:50 +02:00
display: inline-flex !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 992px) {
.d-lg-none {
2021-10-11 22:38:50 +02:00
display: none !important;
}
2021-09-20 06:38:05 +02:00
.d-lg-inline {
2021-10-11 22:38:50 +02:00
display: inline !important;
}
2021-09-20 06:38:05 +02:00
.d-lg-inline-block {
2021-10-11 22:38:50 +02:00
display: inline-block !important;
}
2021-09-20 06:38:05 +02:00
.d-lg-block {
2021-10-11 22:38:50 +02:00
display: block !important;
}
2021-09-20 06:38:05 +02:00
.d-lg-table {
2021-10-11 22:38:50 +02:00
display: table !important;
}
2021-09-20 06:38:05 +02:00
.d-lg-table-row {
2021-10-11 22:38:50 +02:00
display: table-row !important;
}
2021-09-20 06:38:05 +02:00
.d-lg-table-cell {
2021-10-11 22:38:50 +02:00
display: table-cell !important;
}
2021-09-20 06:38:05 +02:00
.d-lg-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
2021-10-11 22:38:50 +02:00
display: flex !important;
}
2021-09-20 06:38:05 +02:00
.d-lg-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
2021-10-11 22:38:50 +02:00
display: inline-flex !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 1200px) {
.d-xl-none {
2021-10-11 22:38:50 +02:00
display: none !important;
}
2021-09-20 06:38:05 +02:00
.d-xl-inline {
2021-10-11 22:38:50 +02:00
display: inline !important;
}
2021-09-20 06:38:05 +02:00
.d-xl-inline-block {
2021-10-11 22:38:50 +02:00
display: inline-block !important;
}
2021-09-20 06:38:05 +02:00
.d-xl-block {
2021-10-11 22:38:50 +02:00
display: block !important;
}
2021-09-20 06:38:05 +02:00
.d-xl-table {
2021-10-11 22:38:50 +02:00
display: table !important;
}
2021-09-20 06:38:05 +02:00
.d-xl-table-row {
2021-10-11 22:38:50 +02:00
display: table-row !important;
}
2021-09-20 06:38:05 +02:00
.d-xl-table-cell {
2021-10-11 22:38:50 +02:00
display: table-cell !important;
}
2021-09-20 06:38:05 +02:00
.d-xl-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
2021-10-11 22:38:50 +02:00
display: flex !important;
}
2021-09-20 06:38:05 +02:00
.d-xl-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
2021-10-11 22:38:50 +02:00
display: inline-flex !important;
}
}
2021-09-20 06:38:05 +02:00
@media print {
.d-print-none {
2021-10-11 22:38:50 +02:00
display: none !important;
}
2021-09-20 06:38:05 +02:00
.d-print-inline {
2021-10-11 22:38:50 +02:00
display: inline !important;
}
2021-09-20 06:38:05 +02:00
.d-print-inline-block {
2021-10-11 22:38:50 +02:00
display: inline-block !important;
}
2021-09-20 06:38:05 +02:00
.d-print-block {
2021-10-11 22:38:50 +02:00
display: block !important;
}
2021-09-20 06:38:05 +02:00
.d-print-table {
2021-10-11 22:38:50 +02:00
display: table !important;
}
2021-09-20 06:38:05 +02:00
.d-print-table-row {
2021-10-11 22:38:50 +02:00
display: table-row !important;
}
2021-09-20 06:38:05 +02:00
.d-print-table-cell {
2021-10-11 22:38:50 +02:00
display: table-cell !important;
}
2021-09-20 06:38:05 +02:00
.d-print-flex {
display: -webkit-box !important;
display: -ms-flexbox !important;
2021-10-11 22:38:50 +02:00
display: flex !important;
}
2021-09-20 06:38:05 +02:00
.d-print-inline-flex {
display: -webkit-inline-box !important;
display: -ms-inline-flexbox !important;
2021-10-11 22:38:50 +02:00
display: inline-flex !important;
}
}
2021-09-20 06:38:05 +02:00
.flex-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
2021-10-11 22:38:50 +02:00
flex-direction: row !important;
}
2021-09-20 06:38:05 +02:00
.flex-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
2021-10-11 22:38:50 +02:00
flex-direction: column !important;
}
2021-09-20 06:38:05 +02:00
.flex-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: row-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: column-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-wrap {
-ms-flex-wrap: wrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-nowrap {
-ms-flex-wrap: nowrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: nowrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
2021-10-11 22:38:50 +02:00
flex: 1 1 auto !important;
}
2021-09-20 06:38:05 +02:00
.flex-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 1 !important;
}
2021-09-20 06:38:05 +02:00
.flex-shrink-0 {
-ms-flex-negative: 0 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-shrink-1 {
-ms-flex-negative: 1 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 1 !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
2021-10-11 22:38:50 +02:00
justify-content: center !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
2021-10-11 22:38:50 +02:00
justify-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-around {
-ms-flex-pack: distribute !important;
2021-10-11 22:38:50 +02:00
justify-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-items-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
2021-10-11 22:38:50 +02:00
align-items: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-items-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
2021-10-11 22:38:50 +02:00
align-items: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-items-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
2021-10-11 22:38:50 +02:00
align-items: center !important;
}
2021-09-20 06:38:05 +02:00
.align-items-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-items: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-items-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-items: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-content-start {
-ms-flex-line-pack: start !important;
2021-10-11 22:38:50 +02:00
align-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-content-end {
-ms-flex-line-pack: end !important;
2021-10-11 22:38:50 +02:00
align-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-content-center {
-ms-flex-line-pack: center !important;
2021-10-11 22:38:50 +02:00
align-content: center !important;
}
2021-09-20 06:38:05 +02:00
.align-content-between {
-ms-flex-line-pack: justify !important;
2021-10-11 22:38:50 +02:00
align-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.align-content-around {
-ms-flex-line-pack: distribute !important;
2021-10-11 22:38:50 +02:00
align-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-content-stretch {
-ms-flex-line-pack: stretch !important;
2021-10-11 22:38:50 +02:00
align-content: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-self-auto {
-ms-flex-item-align: auto !important;
2021-10-11 22:38:50 +02:00
align-self: auto !important;
}
2021-09-20 06:38:05 +02:00
.align-self-start {
-ms-flex-item-align: start !important;
2021-10-11 22:38:50 +02:00
align-self: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-self-end {
-ms-flex-item-align: end !important;
2021-10-11 22:38:50 +02:00
align-self: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-self-center {
-ms-flex-item-align: center !important;
2021-10-11 22:38:50 +02:00
align-self: center !important;
}
2021-09-20 06:38:05 +02:00
.align-self-baseline {
-ms-flex-item-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-self: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-self-stretch {
-ms-flex-item-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-self: stretch !important;
}
2021-09-20 06:38:05 +02:00
@media (min-width: 576px) {
.flex-sm-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
2021-10-11 22:38:50 +02:00
flex-direction: row !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
2021-10-11 22:38:50 +02:00
flex-direction: column !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: row-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: column-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-wrap {
-ms-flex-wrap: wrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-nowrap {
-ms-flex-wrap: nowrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: nowrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
2021-10-11 22:38:50 +02:00
flex: 1 1 auto !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 1 !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-shrink-0 {
-ms-flex-negative: 0 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-sm-shrink-1 {
-ms-flex-negative: 1 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 1 !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-sm-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-sm-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-sm-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
2021-10-11 22:38:50 +02:00
justify-content: center !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-sm-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
2021-10-11 22:38:50 +02:00
justify-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-sm-around {
-ms-flex-pack: distribute !important;
2021-10-11 22:38:50 +02:00
justify-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-items-sm-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
2021-10-11 22:38:50 +02:00
align-items: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-items-sm-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
2021-10-11 22:38:50 +02:00
align-items: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-items-sm-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
2021-10-11 22:38:50 +02:00
align-items: center !important;
}
2021-09-20 06:38:05 +02:00
.align-items-sm-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-items: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-items-sm-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-items: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-content-sm-start {
-ms-flex-line-pack: start !important;
2021-10-11 22:38:50 +02:00
align-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-content-sm-end {
-ms-flex-line-pack: end !important;
2021-10-11 22:38:50 +02:00
align-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-content-sm-center {
-ms-flex-line-pack: center !important;
2021-10-11 22:38:50 +02:00
align-content: center !important;
}
2021-09-20 06:38:05 +02:00
.align-content-sm-between {
-ms-flex-line-pack: justify !important;
2021-10-11 22:38:50 +02:00
align-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.align-content-sm-around {
-ms-flex-line-pack: distribute !important;
2021-10-11 22:38:50 +02:00
align-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-content-sm-stretch {
-ms-flex-line-pack: stretch !important;
2021-10-11 22:38:50 +02:00
align-content: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-self-sm-auto {
-ms-flex-item-align: auto !important;
2021-10-11 22:38:50 +02:00
align-self: auto !important;
}
2021-09-20 06:38:05 +02:00
.align-self-sm-start {
-ms-flex-item-align: start !important;
2021-10-11 22:38:50 +02:00
align-self: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-self-sm-end {
-ms-flex-item-align: end !important;
2021-10-11 22:38:50 +02:00
align-self: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-self-sm-center {
-ms-flex-item-align: center !important;
2021-10-11 22:38:50 +02:00
align-self: center !important;
}
2021-09-20 06:38:05 +02:00
.align-self-sm-baseline {
-ms-flex-item-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-self: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-self-sm-stretch {
-ms-flex-item-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-self: stretch !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 768px) {
.flex-md-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
2021-10-11 22:38:50 +02:00
flex-direction: row !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
2021-10-11 22:38:50 +02:00
flex-direction: column !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: row-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: column-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-wrap {
-ms-flex-wrap: wrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-nowrap {
-ms-flex-wrap: nowrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: nowrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
2021-10-11 22:38:50 +02:00
flex: 1 1 auto !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 1 !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-shrink-0 {
-ms-flex-negative: 0 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-md-shrink-1 {
-ms-flex-negative: 1 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 1 !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-md-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-md-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-md-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
2021-10-11 22:38:50 +02:00
justify-content: center !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-md-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
2021-10-11 22:38:50 +02:00
justify-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-md-around {
-ms-flex-pack: distribute !important;
2021-10-11 22:38:50 +02:00
justify-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-items-md-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
2021-10-11 22:38:50 +02:00
align-items: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-items-md-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
2021-10-11 22:38:50 +02:00
align-items: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-items-md-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
2021-10-11 22:38:50 +02:00
align-items: center !important;
}
2021-09-20 06:38:05 +02:00
.align-items-md-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-items: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-items-md-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-items: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-content-md-start {
-ms-flex-line-pack: start !important;
2021-10-11 22:38:50 +02:00
align-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-content-md-end {
-ms-flex-line-pack: end !important;
2021-10-11 22:38:50 +02:00
align-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-content-md-center {
-ms-flex-line-pack: center !important;
2021-10-11 22:38:50 +02:00
align-content: center !important;
}
2021-09-20 06:38:05 +02:00
.align-content-md-between {
-ms-flex-line-pack: justify !important;
2021-10-11 22:38:50 +02:00
align-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.align-content-md-around {
-ms-flex-line-pack: distribute !important;
2021-10-11 22:38:50 +02:00
align-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-content-md-stretch {
-ms-flex-line-pack: stretch !important;
2021-10-11 22:38:50 +02:00
align-content: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-self-md-auto {
-ms-flex-item-align: auto !important;
2021-10-11 22:38:50 +02:00
align-self: auto !important;
}
2021-09-20 06:38:05 +02:00
.align-self-md-start {
-ms-flex-item-align: start !important;
2021-10-11 22:38:50 +02:00
align-self: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-self-md-end {
-ms-flex-item-align: end !important;
2021-10-11 22:38:50 +02:00
align-self: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-self-md-center {
-ms-flex-item-align: center !important;
2021-10-11 22:38:50 +02:00
align-self: center !important;
}
2021-09-20 06:38:05 +02:00
.align-self-md-baseline {
-ms-flex-item-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-self: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-self-md-stretch {
-ms-flex-item-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-self: stretch !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 992px) {
.flex-lg-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
2021-10-11 22:38:50 +02:00
flex-direction: row !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
2021-10-11 22:38:50 +02:00
flex-direction: column !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: row-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: column-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-wrap {
-ms-flex-wrap: wrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-nowrap {
-ms-flex-wrap: nowrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: nowrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
2021-10-11 22:38:50 +02:00
flex: 1 1 auto !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 1 !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-shrink-0 {
-ms-flex-negative: 0 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-lg-shrink-1 {
-ms-flex-negative: 1 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 1 !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-lg-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-lg-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-lg-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
2021-10-11 22:38:50 +02:00
justify-content: center !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-lg-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
2021-10-11 22:38:50 +02:00
justify-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-lg-around {
-ms-flex-pack: distribute !important;
2021-10-11 22:38:50 +02:00
justify-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-items-lg-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
2021-10-11 22:38:50 +02:00
align-items: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-items-lg-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
2021-10-11 22:38:50 +02:00
align-items: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-items-lg-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
2021-10-11 22:38:50 +02:00
align-items: center !important;
}
2021-09-20 06:38:05 +02:00
.align-items-lg-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-items: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-items-lg-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-items: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-content-lg-start {
-ms-flex-line-pack: start !important;
2021-10-11 22:38:50 +02:00
align-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-content-lg-end {
-ms-flex-line-pack: end !important;
2021-10-11 22:38:50 +02:00
align-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-content-lg-center {
-ms-flex-line-pack: center !important;
2021-10-11 22:38:50 +02:00
align-content: center !important;
}
2021-09-20 06:38:05 +02:00
.align-content-lg-between {
-ms-flex-line-pack: justify !important;
2021-10-11 22:38:50 +02:00
align-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.align-content-lg-around {
-ms-flex-line-pack: distribute !important;
2021-10-11 22:38:50 +02:00
align-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-content-lg-stretch {
-ms-flex-line-pack: stretch !important;
2021-10-11 22:38:50 +02:00
align-content: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-self-lg-auto {
-ms-flex-item-align: auto !important;
2021-10-11 22:38:50 +02:00
align-self: auto !important;
}
2021-09-20 06:38:05 +02:00
.align-self-lg-start {
-ms-flex-item-align: start !important;
2021-10-11 22:38:50 +02:00
align-self: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-self-lg-end {
-ms-flex-item-align: end !important;
2021-10-11 22:38:50 +02:00
align-self: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-self-lg-center {
-ms-flex-item-align: center !important;
2021-10-11 22:38:50 +02:00
align-self: center !important;
}
2021-09-20 06:38:05 +02:00
.align-self-lg-baseline {
-ms-flex-item-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-self: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-self-lg-stretch {
-ms-flex-item-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-self: stretch !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 1200px) {
.flex-xl-row {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: row !important;
2021-10-11 22:38:50 +02:00
flex-direction: row !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-column {
-webkit-box-orient: vertical !important;
-webkit-box-direction: normal !important;
-ms-flex-direction: column !important;
2021-10-11 22:38:50 +02:00
flex-direction: column !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-row-reverse {
-webkit-box-orient: horizontal !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: row-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: row-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-column-reverse {
-webkit-box-orient: vertical !important;
-webkit-box-direction: reverse !important;
-ms-flex-direction: column-reverse !important;
2021-10-11 22:38:50 +02:00
flex-direction: column-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-wrap {
-ms-flex-wrap: wrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-nowrap {
-ms-flex-wrap: nowrap !important;
2021-10-11 22:38:50 +02:00
flex-wrap: nowrap !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
2021-10-11 22:38:50 +02:00
flex-wrap: wrap-reverse !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
2021-10-11 22:38:50 +02:00
flex: 1 1 auto !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
2021-10-11 22:38:50 +02:00
flex-grow: 1 !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-shrink-0 {
-ms-flex-negative: 0 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 0 !important;
}
2021-09-20 06:38:05 +02:00
.flex-xl-shrink-1 {
-ms-flex-negative: 1 !important;
2021-10-11 22:38:50 +02:00
flex-shrink: 1 !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-xl-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-xl-end {
-webkit-box-pack: end !important;
-ms-flex-pack: end !important;
2021-10-11 22:38:50 +02:00
justify-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-xl-center {
-webkit-box-pack: center !important;
-ms-flex-pack: center !important;
2021-10-11 22:38:50 +02:00
justify-content: center !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-xl-between {
-webkit-box-pack: justify !important;
-ms-flex-pack: justify !important;
2021-10-11 22:38:50 +02:00
justify-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.justify-content-xl-around {
-ms-flex-pack: distribute !important;
2021-10-11 22:38:50 +02:00
justify-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-items-xl-start {
-webkit-box-align: start !important;
-ms-flex-align: start !important;
2021-10-11 22:38:50 +02:00
align-items: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-items-xl-end {
-webkit-box-align: end !important;
-ms-flex-align: end !important;
2021-10-11 22:38:50 +02:00
align-items: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-items-xl-center {
-webkit-box-align: center !important;
-ms-flex-align: center !important;
2021-10-11 22:38:50 +02:00
align-items: center !important;
}
2021-09-20 06:38:05 +02:00
.align-items-xl-baseline {
-webkit-box-align: baseline !important;
-ms-flex-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-items: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-items-xl-stretch {
-webkit-box-align: stretch !important;
-ms-flex-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-items: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-content-xl-start {
-ms-flex-line-pack: start !important;
2021-10-11 22:38:50 +02:00
align-content: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-content-xl-end {
-ms-flex-line-pack: end !important;
2021-10-11 22:38:50 +02:00
align-content: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-content-xl-center {
-ms-flex-line-pack: center !important;
2021-10-11 22:38:50 +02:00
align-content: center !important;
}
2021-09-20 06:38:05 +02:00
.align-content-xl-between {
-ms-flex-line-pack: justify !important;
2021-10-11 22:38:50 +02:00
align-content: space-between !important;
}
2021-09-20 06:38:05 +02:00
.align-content-xl-around {
-ms-flex-line-pack: distribute !important;
2021-10-11 22:38:50 +02:00
align-content: space-around !important;
}
2021-09-20 06:38:05 +02:00
.align-content-xl-stretch {
-ms-flex-line-pack: stretch !important;
2021-10-11 22:38:50 +02:00
align-content: stretch !important;
}
2021-09-20 06:38:05 +02:00
.align-self-xl-auto {
-ms-flex-item-align: auto !important;
2021-10-11 22:38:50 +02:00
align-self: auto !important;
}
2021-09-20 06:38:05 +02:00
.align-self-xl-start {
-ms-flex-item-align: start !important;
2021-10-11 22:38:50 +02:00
align-self: flex-start !important;
}
2021-09-20 06:38:05 +02:00
.align-self-xl-end {
-ms-flex-item-align: end !important;
2021-10-11 22:38:50 +02:00
align-self: flex-end !important;
}
2021-09-20 06:38:05 +02:00
.align-self-xl-center {
-ms-flex-item-align: center !important;
2021-10-11 22:38:50 +02:00
align-self: center !important;
}
2021-09-20 06:38:05 +02:00
.align-self-xl-baseline {
-ms-flex-item-align: baseline !important;
2021-10-11 22:38:50 +02:00
align-self: baseline !important;
}
2021-09-20 06:38:05 +02:00
.align-self-xl-stretch {
-ms-flex-item-align: stretch !important;
2021-10-11 22:38:50 +02:00
align-self: stretch !important;
}
}
2021-09-20 06:38:05 +02:00
.w-25 {
2021-10-11 22:38:50 +02:00
width: 25% !important;
}
2021-09-20 06:38:05 +02:00
.w-50 {
2021-10-11 22:38:50 +02:00
width: 50% !important;
}
2021-09-20 06:38:05 +02:00
.w-75 {
2021-10-11 22:38:50 +02:00
width: 75% !important;
}
2021-09-20 06:38:05 +02:00
.w-100 {
2021-10-11 22:38:50 +02:00
width: 100% !important;
}
2021-09-20 06:38:05 +02:00
.w-auto {
2021-10-11 22:38:50 +02:00
width: auto !important;
}
2021-09-20 06:38:05 +02:00
.h-25 {
2021-10-11 22:38:50 +02:00
height: 25% !important;
}
2021-09-20 06:38:05 +02:00
.h-50 {
2021-10-11 22:38:50 +02:00
height: 50% !important;
}
2021-09-20 06:38:05 +02:00
.h-75 {
2021-10-11 22:38:50 +02:00
height: 75% !important;
}
2021-09-20 06:38:05 +02:00
.h-100 {
2021-10-11 22:38:50 +02:00
height: 100% !important;
}
2021-09-20 06:38:05 +02:00
.h-auto {
2021-10-11 22:38:50 +02:00
height: auto !important;
}
2021-09-20 06:38:05 +02:00
.mw-100 {
2021-10-11 22:38:50 +02:00
max-width: 100% !important;
}
2021-09-20 06:38:05 +02:00
.mh-100 {
2021-10-11 22:38:50 +02:00
max-height: 100% !important;
}
2021-09-20 06:38:05 +02:00
.m-0 {
2021-10-11 22:38:50 +02:00
margin: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mt-0,
.my-0 {
2021-10-11 22:38:50 +02:00
margin-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mr-0,
.mx-0 {
2021-10-11 22:38:50 +02:00
margin-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mb-0,
.my-0 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.ml-0,
.mx-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.m-1 {
2021-10-11 22:38:50 +02:00
margin: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-1,
.my-1 {
2021-10-11 22:38:50 +02:00
margin-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-1,
.mx-1 {
2021-10-11 22:38:50 +02:00
margin-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-1,
.my-1 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-1,
.mx-1 {
2021-10-11 22:38:50 +02:00
margin-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.m-2 {
2021-10-11 22:38:50 +02:00
margin: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-2,
.my-2 {
2021-10-11 22:38:50 +02:00
margin-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-2,
.mx-2 {
2021-10-11 22:38:50 +02:00
margin-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-2,
.my-2 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-2,
.mx-2 {
2021-10-11 22:38:50 +02:00
margin-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-3 {
2021-10-11 22:38:50 +02:00
margin: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-3,
.my-3 {
2021-10-11 22:38:50 +02:00
margin-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-3,
.mx-3 {
2021-10-11 22:38:50 +02:00
margin-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-3,
.my-3 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-3,
.mx-3 {
2021-10-11 22:38:50 +02:00
margin-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.m-4 {
2021-10-11 22:38:50 +02:00
margin: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-4,
.my-4 {
2021-10-11 22:38:50 +02:00
margin-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-4,
.mx-4 {
2021-10-11 22:38:50 +02:00
margin-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-4,
.my-4 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-4,
.mx-4 {
2021-10-11 22:38:50 +02:00
margin-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-5 {
2021-10-11 22:38:50 +02:00
margin: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-5,
.my-5 {
2021-10-11 22:38:50 +02:00
margin-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-5,
.mx-5 {
2021-10-11 22:38:50 +02:00
margin-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-5,
.my-5 {
2021-10-11 22:38:50 +02:00
margin-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-5,
.mx-5 {
2021-10-11 22:38:50 +02:00
margin-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.p-0 {
2021-10-11 22:38:50 +02:00
padding: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pt-0,
.py-0 {
2021-10-11 22:38:50 +02:00
padding-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pr-0,
.px-0 {
2021-10-11 22:38:50 +02:00
padding-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pb-0,
.py-0 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pl-0,
.px-0 {
2021-10-11 22:38:50 +02:00
padding-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.p-1 {
2021-10-11 22:38:50 +02:00
padding: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-1,
.py-1 {
2021-10-11 22:38:50 +02:00
padding-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-1,
.px-1 {
2021-10-11 22:38:50 +02:00
padding-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-1,
.py-1 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-1,
.px-1 {
2021-10-11 22:38:50 +02:00
padding-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.p-2 {
2021-10-11 22:38:50 +02:00
padding: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-2,
.py-2 {
2021-10-11 22:38:50 +02:00
padding-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-2,
.px-2 {
2021-10-11 22:38:50 +02:00
padding-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-2,
.py-2 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-2,
.px-2 {
2021-10-11 22:38:50 +02:00
padding-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-3 {
2021-10-11 22:38:50 +02:00
padding: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-3,
.py-3 {
2021-10-11 22:38:50 +02:00
padding-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-3,
.px-3 {
2021-10-11 22:38:50 +02:00
padding-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-3,
.py-3 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-3,
.px-3 {
2021-10-11 22:38:50 +02:00
padding-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.p-4 {
2021-10-11 22:38:50 +02:00
padding: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-4,
.py-4 {
2021-10-11 22:38:50 +02:00
padding-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-4,
.px-4 {
2021-10-11 22:38:50 +02:00
padding-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-4,
.py-4 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-4,
.px-4 {
2021-10-11 22:38:50 +02:00
padding-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-5 {
2021-10-11 22:38:50 +02:00
padding: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-5,
.py-5 {
2021-10-11 22:38:50 +02:00
padding-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-5,
.px-5 {
2021-10-11 22:38:50 +02:00
padding-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-5,
.py-5 {
2021-10-11 22:38:50 +02:00
padding-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-5,
.px-5 {
2021-10-11 22:38:50 +02:00
padding-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.m-auto {
2021-10-11 22:38:50 +02:00
margin: auto !important;
}
2021-09-20 06:38:05 +02:00
.mt-auto,
.my-auto {
2021-10-11 22:38:50 +02:00
margin-top: auto !important;
}
2021-09-20 06:38:05 +02:00
.mr-auto,
.mx-auto {
2021-10-11 22:38:50 +02:00
margin-right: auto !important;
}
2021-09-20 06:38:05 +02:00
.mb-auto,
.my-auto {
2021-10-11 22:38:50 +02:00
margin-bottom: auto !important;
}
2021-09-20 06:38:05 +02:00
.ml-auto,
.mx-auto {
2021-10-11 22:38:50 +02:00
margin-left: auto !important;
}
2021-09-20 06:38:05 +02:00
@media (min-width: 576px) {
.m-sm-0 {
2021-10-11 22:38:50 +02:00
margin: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mt-sm-0,
.my-sm-0 {
2021-10-11 22:38:50 +02:00
margin-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mr-sm-0,
.mx-sm-0 {
2021-10-11 22:38:50 +02:00
margin-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mb-sm-0,
.my-sm-0 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.ml-sm-0,
.mx-sm-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.m-sm-1 {
2021-10-11 22:38:50 +02:00
margin: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-sm-1,
.my-sm-1 {
2021-10-11 22:38:50 +02:00
margin-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-sm-1,
.mx-sm-1 {
2021-10-11 22:38:50 +02:00
margin-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-sm-1,
.my-sm-1 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-sm-1,
.mx-sm-1 {
2021-10-11 22:38:50 +02:00
margin-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.m-sm-2 {
2021-10-11 22:38:50 +02:00
margin: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-sm-2,
.my-sm-2 {
2021-10-11 22:38:50 +02:00
margin-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-sm-2,
.mx-sm-2 {
2021-10-11 22:38:50 +02:00
margin-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-sm-2,
.my-sm-2 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-sm-2,
.mx-sm-2 {
2021-10-11 22:38:50 +02:00
margin-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-sm-3 {
2021-10-11 22:38:50 +02:00
margin: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-sm-3,
.my-sm-3 {
2021-10-11 22:38:50 +02:00
margin-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-sm-3,
.mx-sm-3 {
2021-10-11 22:38:50 +02:00
margin-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-sm-3,
.my-sm-3 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-sm-3,
.mx-sm-3 {
2021-10-11 22:38:50 +02:00
margin-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.m-sm-4 {
2021-10-11 22:38:50 +02:00
margin: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-sm-4,
.my-sm-4 {
2021-10-11 22:38:50 +02:00
margin-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-sm-4,
.mx-sm-4 {
2021-10-11 22:38:50 +02:00
margin-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-sm-4,
.my-sm-4 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-sm-4,
.mx-sm-4 {
2021-10-11 22:38:50 +02:00
margin-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-sm-5 {
2021-10-11 22:38:50 +02:00
margin: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-sm-5,
.my-sm-5 {
2021-10-11 22:38:50 +02:00
margin-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-sm-5,
.mx-sm-5 {
2021-10-11 22:38:50 +02:00
margin-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-sm-5,
.my-sm-5 {
2021-10-11 22:38:50 +02:00
margin-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-sm-5,
.mx-sm-5 {
2021-10-11 22:38:50 +02:00
margin-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.p-sm-0 {
2021-10-11 22:38:50 +02:00
padding: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pt-sm-0,
.py-sm-0 {
2021-10-11 22:38:50 +02:00
padding-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pr-sm-0,
.px-sm-0 {
2021-10-11 22:38:50 +02:00
padding-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pb-sm-0,
.py-sm-0 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pl-sm-0,
.px-sm-0 {
2021-10-11 22:38:50 +02:00
padding-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.p-sm-1 {
2021-10-11 22:38:50 +02:00
padding: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-sm-1,
.py-sm-1 {
2021-10-11 22:38:50 +02:00
padding-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-sm-1,
.px-sm-1 {
2021-10-11 22:38:50 +02:00
padding-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-sm-1,
.py-sm-1 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-sm-1,
.px-sm-1 {
2021-10-11 22:38:50 +02:00
padding-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.p-sm-2 {
2021-10-11 22:38:50 +02:00
padding: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-sm-2,
.py-sm-2 {
2021-10-11 22:38:50 +02:00
padding-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-sm-2,
.px-sm-2 {
2021-10-11 22:38:50 +02:00
padding-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-sm-2,
.py-sm-2 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-sm-2,
.px-sm-2 {
2021-10-11 22:38:50 +02:00
padding-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-sm-3 {
2021-10-11 22:38:50 +02:00
padding: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-sm-3,
.py-sm-3 {
2021-10-11 22:38:50 +02:00
padding-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-sm-3,
.px-sm-3 {
2021-10-11 22:38:50 +02:00
padding-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-sm-3,
.py-sm-3 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-sm-3,
.px-sm-3 {
2021-10-11 22:38:50 +02:00
padding-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.p-sm-4 {
2021-10-11 22:38:50 +02:00
padding: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-sm-4,
.py-sm-4 {
2021-10-11 22:38:50 +02:00
padding-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-sm-4,
.px-sm-4 {
2021-10-11 22:38:50 +02:00
padding-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-sm-4,
.py-sm-4 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-sm-4,
.px-sm-4 {
2021-10-11 22:38:50 +02:00
padding-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-sm-5 {
2021-10-11 22:38:50 +02:00
padding: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-sm-5,
.py-sm-5 {
2021-10-11 22:38:50 +02:00
padding-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-sm-5,
.px-sm-5 {
2021-10-11 22:38:50 +02:00
padding-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-sm-5,
.py-sm-5 {
2021-10-11 22:38:50 +02:00
padding-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-sm-5,
.px-sm-5 {
2021-10-11 22:38:50 +02:00
padding-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.m-sm-auto {
2021-10-11 22:38:50 +02:00
margin: auto !important;
}
2021-09-20 06:38:05 +02:00
.mt-sm-auto,
.my-sm-auto {
2021-10-11 22:38:50 +02:00
margin-top: auto !important;
}
2021-09-20 06:38:05 +02:00
.mr-sm-auto,
.mx-sm-auto {
2021-10-11 22:38:50 +02:00
margin-right: auto !important;
}
2021-09-20 06:38:05 +02:00
.mb-sm-auto,
.my-sm-auto {
2021-10-11 22:38:50 +02:00
margin-bottom: auto !important;
}
2021-09-20 06:38:05 +02:00
.ml-sm-auto,
.mx-sm-auto {
2021-10-11 22:38:50 +02:00
margin-left: auto !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 768px) {
.m-md-0 {
2021-10-11 22:38:50 +02:00
margin: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mt-md-0,
.my-md-0 {
2021-10-11 22:38:50 +02:00
margin-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mr-md-0,
.mx-md-0 {
2021-10-11 22:38:50 +02:00
margin-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mb-md-0,
.my-md-0 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.ml-md-0,
.mx-md-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.m-md-1 {
2021-10-11 22:38:50 +02:00
margin: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-md-1,
.my-md-1 {
2021-10-11 22:38:50 +02:00
margin-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-md-1,
.mx-md-1 {
2021-10-11 22:38:50 +02:00
margin-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-md-1,
.my-md-1 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-md-1,
.mx-md-1 {
2021-10-11 22:38:50 +02:00
margin-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.m-md-2 {
2021-10-11 22:38:50 +02:00
margin: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-md-2,
.my-md-2 {
2021-10-11 22:38:50 +02:00
margin-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-md-2,
.mx-md-2 {
2021-10-11 22:38:50 +02:00
margin-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-md-2,
.my-md-2 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-md-2,
.mx-md-2 {
2021-10-11 22:38:50 +02:00
margin-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-md-3 {
2021-10-11 22:38:50 +02:00
margin: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-md-3,
.my-md-3 {
2021-10-11 22:38:50 +02:00
margin-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-md-3,
.mx-md-3 {
2021-10-11 22:38:50 +02:00
margin-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-md-3,
.my-md-3 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-md-3,
.mx-md-3 {
2021-10-11 22:38:50 +02:00
margin-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.m-md-4 {
2021-10-11 22:38:50 +02:00
margin: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-md-4,
.my-md-4 {
2021-10-11 22:38:50 +02:00
margin-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-md-4,
.mx-md-4 {
2021-10-11 22:38:50 +02:00
margin-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-md-4,
.my-md-4 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-md-4,
.mx-md-4 {
2021-10-11 22:38:50 +02:00
margin-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-md-5 {
2021-10-11 22:38:50 +02:00
margin: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-md-5,
.my-md-5 {
2021-10-11 22:38:50 +02:00
margin-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-md-5,
.mx-md-5 {
2021-10-11 22:38:50 +02:00
margin-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-md-5,
.my-md-5 {
2021-10-11 22:38:50 +02:00
margin-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-md-5,
.mx-md-5 {
2021-10-11 22:38:50 +02:00
margin-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.p-md-0 {
2021-10-11 22:38:50 +02:00
padding: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pt-md-0,
.py-md-0 {
2021-10-11 22:38:50 +02:00
padding-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pr-md-0,
.px-md-0 {
2021-10-11 22:38:50 +02:00
padding-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pb-md-0,
.py-md-0 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pl-md-0,
.px-md-0 {
2021-10-11 22:38:50 +02:00
padding-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.p-md-1 {
2021-10-11 22:38:50 +02:00
padding: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-md-1,
.py-md-1 {
2021-10-11 22:38:50 +02:00
padding-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-md-1,
.px-md-1 {
2021-10-11 22:38:50 +02:00
padding-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-md-1,
.py-md-1 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-md-1,
.px-md-1 {
2021-10-11 22:38:50 +02:00
padding-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.p-md-2 {
2021-10-11 22:38:50 +02:00
padding: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-md-2,
.py-md-2 {
2021-10-11 22:38:50 +02:00
padding-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-md-2,
.px-md-2 {
2021-10-11 22:38:50 +02:00
padding-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-md-2,
.py-md-2 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-md-2,
.px-md-2 {
2021-10-11 22:38:50 +02:00
padding-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-md-3 {
2021-10-11 22:38:50 +02:00
padding: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-md-3,
.py-md-3 {
2021-10-11 22:38:50 +02:00
padding-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-md-3,
.px-md-3 {
2021-10-11 22:38:50 +02:00
padding-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-md-3,
.py-md-3 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-md-3,
.px-md-3 {
2021-10-11 22:38:50 +02:00
padding-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.p-md-4 {
2021-10-11 22:38:50 +02:00
padding: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-md-4,
.py-md-4 {
2021-10-11 22:38:50 +02:00
padding-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-md-4,
.px-md-4 {
2021-10-11 22:38:50 +02:00
padding-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-md-4,
.py-md-4 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-md-4,
.px-md-4 {
2021-10-11 22:38:50 +02:00
padding-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-md-5 {
2021-10-11 22:38:50 +02:00
padding: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-md-5,
.py-md-5 {
2021-10-11 22:38:50 +02:00
padding-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-md-5,
.px-md-5 {
2021-10-11 22:38:50 +02:00
padding-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-md-5,
.py-md-5 {
2021-10-11 22:38:50 +02:00
padding-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-md-5,
.px-md-5 {
2021-10-11 22:38:50 +02:00
padding-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.m-md-auto {
2021-10-11 22:38:50 +02:00
margin: auto !important;
}
2021-09-20 06:38:05 +02:00
.mt-md-auto,
.my-md-auto {
2021-10-11 22:38:50 +02:00
margin-top: auto !important;
}
2021-09-20 06:38:05 +02:00
.mr-md-auto,
.mx-md-auto {
2021-10-11 22:38:50 +02:00
margin-right: auto !important;
}
2021-09-20 06:38:05 +02:00
.mb-md-auto,
.my-md-auto {
2021-10-11 22:38:50 +02:00
margin-bottom: auto !important;
}
2021-09-20 06:38:05 +02:00
.ml-md-auto,
.mx-md-auto {
2021-10-11 22:38:50 +02:00
margin-left: auto !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 992px) {
.m-lg-0 {
2021-10-11 22:38:50 +02:00
margin: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mt-lg-0,
.my-lg-0 {
2021-10-11 22:38:50 +02:00
margin-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mr-lg-0,
.mx-lg-0 {
2021-10-11 22:38:50 +02:00
margin-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mb-lg-0,
.my-lg-0 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.ml-lg-0,
.mx-lg-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.m-lg-1 {
2021-10-11 22:38:50 +02:00
margin: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-lg-1,
.my-lg-1 {
2021-10-11 22:38:50 +02:00
margin-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-lg-1,
.mx-lg-1 {
2021-10-11 22:38:50 +02:00
margin-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-lg-1,
.my-lg-1 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-lg-1,
.mx-lg-1 {
2021-10-11 22:38:50 +02:00
margin-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.m-lg-2 {
2021-10-11 22:38:50 +02:00
margin: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-lg-2,
.my-lg-2 {
2021-10-11 22:38:50 +02:00
margin-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-lg-2,
.mx-lg-2 {
2021-10-11 22:38:50 +02:00
margin-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-lg-2,
.my-lg-2 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-lg-2,
.mx-lg-2 {
2021-10-11 22:38:50 +02:00
margin-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-lg-3 {
2021-10-11 22:38:50 +02:00
margin: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-lg-3,
.my-lg-3 {
2021-10-11 22:38:50 +02:00
margin-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-lg-3,
.mx-lg-3 {
2021-10-11 22:38:50 +02:00
margin-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-lg-3,
.my-lg-3 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-lg-3,
.mx-lg-3 {
2021-10-11 22:38:50 +02:00
margin-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.m-lg-4 {
2021-10-11 22:38:50 +02:00
margin: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-lg-4,
.my-lg-4 {
2021-10-11 22:38:50 +02:00
margin-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-lg-4,
.mx-lg-4 {
2021-10-11 22:38:50 +02:00
margin-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-lg-4,
.my-lg-4 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-lg-4,
.mx-lg-4 {
2021-10-11 22:38:50 +02:00
margin-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-lg-5 {
2021-10-11 22:38:50 +02:00
margin: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-lg-5,
.my-lg-5 {
2021-10-11 22:38:50 +02:00
margin-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-lg-5,
.mx-lg-5 {
2021-10-11 22:38:50 +02:00
margin-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-lg-5,
.my-lg-5 {
2021-10-11 22:38:50 +02:00
margin-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-lg-5,
.mx-lg-5 {
2021-10-11 22:38:50 +02:00
margin-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.p-lg-0 {
2021-10-11 22:38:50 +02:00
padding: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pt-lg-0,
.py-lg-0 {
2021-10-11 22:38:50 +02:00
padding-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pr-lg-0,
.px-lg-0 {
2021-10-11 22:38:50 +02:00
padding-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pb-lg-0,
.py-lg-0 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pl-lg-0,
.px-lg-0 {
2021-10-11 22:38:50 +02:00
padding-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.p-lg-1 {
2021-10-11 22:38:50 +02:00
padding: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-lg-1,
.py-lg-1 {
2021-10-11 22:38:50 +02:00
padding-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-lg-1,
.px-lg-1 {
2021-10-11 22:38:50 +02:00
padding-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-lg-1,
.py-lg-1 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-lg-1,
.px-lg-1 {
2021-10-11 22:38:50 +02:00
padding-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.p-lg-2 {
2021-10-11 22:38:50 +02:00
padding: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-lg-2,
.py-lg-2 {
2021-10-11 22:38:50 +02:00
padding-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-lg-2,
.px-lg-2 {
2021-10-11 22:38:50 +02:00
padding-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-lg-2,
.py-lg-2 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-lg-2,
.px-lg-2 {
2021-10-11 22:38:50 +02:00
padding-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-lg-3 {
2021-10-11 22:38:50 +02:00
padding: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-lg-3,
.py-lg-3 {
2021-10-11 22:38:50 +02:00
padding-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-lg-3,
.px-lg-3 {
2021-10-11 22:38:50 +02:00
padding-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-lg-3,
.py-lg-3 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-lg-3,
.px-lg-3 {
2021-10-11 22:38:50 +02:00
padding-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.p-lg-4 {
2021-10-11 22:38:50 +02:00
padding: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-lg-4,
.py-lg-4 {
2021-10-11 22:38:50 +02:00
padding-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-lg-4,
.px-lg-4 {
2021-10-11 22:38:50 +02:00
padding-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-lg-4,
.py-lg-4 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-lg-4,
.px-lg-4 {
2021-10-11 22:38:50 +02:00
padding-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-lg-5 {
2021-10-11 22:38:50 +02:00
padding: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-lg-5,
.py-lg-5 {
2021-10-11 22:38:50 +02:00
padding-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-lg-5,
.px-lg-5 {
2021-10-11 22:38:50 +02:00
padding-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-lg-5,
.py-lg-5 {
2021-10-11 22:38:50 +02:00
padding-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-lg-5,
.px-lg-5 {
2021-10-11 22:38:50 +02:00
padding-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.m-lg-auto {
2021-10-11 22:38:50 +02:00
margin: auto !important;
}
2021-09-20 06:38:05 +02:00
.mt-lg-auto,
.my-lg-auto {
2021-10-11 22:38:50 +02:00
margin-top: auto !important;
}
2021-09-20 06:38:05 +02:00
.mr-lg-auto,
.mx-lg-auto {
2021-10-11 22:38:50 +02:00
margin-right: auto !important;
}
2021-09-20 06:38:05 +02:00
.mb-lg-auto,
.my-lg-auto {
2021-10-11 22:38:50 +02:00
margin-bottom: auto !important;
}
2021-09-20 06:38:05 +02:00
.ml-lg-auto,
.mx-lg-auto {
2021-10-11 22:38:50 +02:00
margin-left: auto !important;
}
}
2021-09-20 06:38:05 +02:00
@media (min-width: 1200px) {
.m-xl-0 {
2021-10-11 22:38:50 +02:00
margin: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mt-xl-0,
.my-xl-0 {
2021-10-11 22:38:50 +02:00
margin-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mr-xl-0,
.mx-xl-0 {
2021-10-11 22:38:50 +02:00
margin-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.mb-xl-0,
.my-xl-0 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.ml-xl-0,
.mx-xl-0 {
2021-10-11 22:38:50 +02:00
margin-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.m-xl-1 {
2021-10-11 22:38:50 +02:00
margin: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-xl-1,
.my-xl-1 {
2021-10-11 22:38:50 +02:00
margin-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-xl-1,
.mx-xl-1 {
2021-10-11 22:38:50 +02:00
margin-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-xl-1,
.my-xl-1 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-xl-1,
.mx-xl-1 {
2021-10-11 22:38:50 +02:00
margin-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.m-xl-2 {
2021-10-11 22:38:50 +02:00
margin: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-xl-2,
.my-xl-2 {
2021-10-11 22:38:50 +02:00
margin-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-xl-2,
.mx-xl-2 {
2021-10-11 22:38:50 +02:00
margin-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-xl-2,
.my-xl-2 {
2021-10-11 22:38:50 +02:00
margin-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-xl-2,
.mx-xl-2 {
2021-10-11 22:38:50 +02:00
margin-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-xl-3 {
2021-10-11 22:38:50 +02:00
margin: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-xl-3,
.my-xl-3 {
2021-10-11 22:38:50 +02:00
margin-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-xl-3,
.mx-xl-3 {
2021-10-11 22:38:50 +02:00
margin-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-xl-3,
.my-xl-3 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-xl-3,
.mx-xl-3 {
2021-10-11 22:38:50 +02:00
margin-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.m-xl-4 {
2021-10-11 22:38:50 +02:00
margin: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-xl-4,
.my-xl-4 {
2021-10-11 22:38:50 +02:00
margin-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-xl-4,
.mx-xl-4 {
2021-10-11 22:38:50 +02:00
margin-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-xl-4,
.my-xl-4 {
2021-10-11 22:38:50 +02:00
margin-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-xl-4,
.mx-xl-4 {
2021-10-11 22:38:50 +02:00
margin-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.m-xl-5 {
2021-10-11 22:38:50 +02:00
margin: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mt-xl-5,
.my-xl-5 {
2021-10-11 22:38:50 +02:00
margin-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mr-xl-5,
.mx-xl-5 {
2021-10-11 22:38:50 +02:00
margin-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.mb-xl-5,
.my-xl-5 {
2021-10-11 22:38:50 +02:00
margin-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.ml-xl-5,
.mx-xl-5 {
2021-10-11 22:38:50 +02:00
margin-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.p-xl-0 {
2021-10-11 22:38:50 +02:00
padding: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pt-xl-0,
.py-xl-0 {
2021-10-11 22:38:50 +02:00
padding-top: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pr-xl-0,
.px-xl-0 {
2021-10-11 22:38:50 +02:00
padding-right: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pb-xl-0,
.py-xl-0 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0 !important;
}
2021-09-20 06:38:05 +02:00
.pl-xl-0,
.px-xl-0 {
2021-10-11 22:38:50 +02:00
padding-left: 0 !important;
}
2021-09-20 06:38:05 +02:00
.p-xl-1 {
2021-10-11 22:38:50 +02:00
padding: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-xl-1,
.py-xl-1 {
2021-10-11 22:38:50 +02:00
padding-top: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-xl-1,
.px-xl-1 {
2021-10-11 22:38:50 +02:00
padding-right: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-xl-1,
.py-xl-1 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-xl-1,
.px-xl-1 {
2021-10-11 22:38:50 +02:00
padding-left: 0.25rem !important;
}
2021-09-20 06:38:05 +02:00
.p-xl-2 {
2021-10-11 22:38:50 +02:00
padding: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-xl-2,
.py-xl-2 {
2021-10-11 22:38:50 +02:00
padding-top: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-xl-2,
.px-xl-2 {
2021-10-11 22:38:50 +02:00
padding-right: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-xl-2,
.py-xl-2 {
2021-10-11 22:38:50 +02:00
padding-bottom: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-xl-2,
.px-xl-2 {
2021-10-11 22:38:50 +02:00
padding-left: 0.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-xl-3 {
2021-10-11 22:38:50 +02:00
padding: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-xl-3,
.py-xl-3 {
2021-10-11 22:38:50 +02:00
padding-top: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-xl-3,
.px-xl-3 {
2021-10-11 22:38:50 +02:00
padding-right: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-xl-3,
.py-xl-3 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-xl-3,
.px-xl-3 {
2021-10-11 22:38:50 +02:00
padding-left: 1rem !important;
}
2021-09-20 06:38:05 +02:00
.p-xl-4 {
2021-10-11 22:38:50 +02:00
padding: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-xl-4,
.py-xl-4 {
2021-10-11 22:38:50 +02:00
padding-top: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-xl-4,
.px-xl-4 {
2021-10-11 22:38:50 +02:00
padding-right: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-xl-4,
.py-xl-4 {
2021-10-11 22:38:50 +02:00
padding-bottom: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-xl-4,
.px-xl-4 {
2021-10-11 22:38:50 +02:00
padding-left: 1.5rem !important;
}
2021-09-20 06:38:05 +02:00
.p-xl-5 {
2021-10-11 22:38:50 +02:00
padding: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pt-xl-5,
.py-xl-5 {
2021-10-11 22:38:50 +02:00
padding-top: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pr-xl-5,
.px-xl-5 {
2021-10-11 22:38:50 +02:00
padding-right: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pb-xl-5,
.py-xl-5 {
2021-10-11 22:38:50 +02:00
padding-bottom: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.pl-xl-5,
.px-xl-5 {
2021-10-11 22:38:50 +02:00
padding-left: 3rem !important;
}
2021-09-20 06:38:05 +02:00
.m-xl-auto {
2021-10-11 22:38:50 +02:00
margin: auto !important;
}
2021-09-20 06:38:05 +02:00
.mt-xl-auto,
.my-xl-auto {
2021-10-11 22:38:50 +02:00
margin-top: auto !important;
}
2021-09-20 06:38:05 +02:00
.mr-xl-auto,
.mx-xl-auto {
2021-10-11 22:38:50 +02:00
margin-right: auto !important;
}
2021-09-20 06:38:05 +02:00
.mb-xl-auto,
.my-xl-auto {
2021-10-11 22:38:50 +02:00
margin-bottom: auto !important;
}
2021-09-20 06:38:05 +02:00
.ml-xl-auto,
.mx-xl-auto {
2021-10-11 22:38:50 +02:00
margin-left: auto !important;
}
}
2021-09-20 06:38:05 +02:00
.visible {
2021-10-11 22:38:50 +02:00
visibility: visible !important;
}
2021-09-20 06:38:05 +02:00
.invisible {
2021-10-11 22:38:50 +02:00
visibility: hidden !important;
}
2021-09-20 06:38:05 +02:00
.add-exp-button {
2021-10-11 22:38:50 +02:00
margin-right: 0;
}
2021-09-20 06:38:05 +02:00
.remove-exp-button {
2021-10-11 22:38:50 +02:00
margin-left: 0;
}
2021-09-20 06:38:05 +02:00
.exp-input {
margin: 5px 0 5px 0;
2021-10-11 22:38:50 +02:00
padding: 2px 5px;
}
2021-09-20 06:38:05 +02:00
.text-center {
margin: auto;
text-align: center;
2021-10-11 22:38:50 +02:00
vertical-align: middle;
}
2021-09-20 06:38:05 +02:00
.touch-right {
2021-10-11 22:38:50 +02:00
margin-right: 0;
}
2021-09-20 06:38:05 +02:00
.touch-left {
2021-10-11 22:38:50 +02:00
margin-left: 0;
}
2021-09-20 06:38:05 +02:00
.touch-sides {
margin-left: 0;
2021-10-11 22:38:50 +02:00
margin-right: 0;
}
2021-09-20 06:38:05 +02:00
.casino-card {
padding: 10px;
border: solid 1px #808080;
background-color: white;
display: inline-block;
border-radius: 10px;
font-size: 18.5px;
text-align: center;
margin: 3px;
2021-10-11 22:38:50 +02:00
font-weight: bold;
}
2021-09-20 06:38:05 +02:00
.casino-card .value {
font-size: 20px;
2021-10-11 22:38:50 +02:00
font-family: sans-serif;
}
2021-09-20 06:38:05 +02:00
.casino-card.red {
2021-10-11 22:38:50 +02:00
color: red;
}
2021-09-20 06:38:05 +02:00
.casino-card.black {
2021-10-11 22:38:50 +02:00
color: black;
}
2021-09-20 06:38:05 +02:00
.milestones-container {
2021-10-11 22:38:50 +02:00
width: 60%;
}
2021-09-20 06:38:05 +02:00
/* COLORS */
/* Attributes */
.blinking-cursor {
font-weight: 100;
color: #2e3d48;
-webkit-animation: 1s cursorblink step-end infinite;
-moz-animation: 1s cursorblink step-end infinite;
-ms-animation: 1s cursorblink step-end infinite;
-o-animation: 1s cursorblink step-end infinite;
2021-10-11 22:38:50 +02:00
animation: 1s cursorblink step-end infinite;
}
2021-09-20 06:38:05 +02:00
@keyframes cursorblink {
from,
to {
2021-10-11 22:38:50 +02:00
color: transparent;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
color: #adff2f;
}
}
2021-09-20 06:38:05 +02:00
@-moz-keyframes cursorblink {
from,
to {
2021-10-11 22:38:50 +02:00
color: transparent;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
color: #adff2f;
}
}
2021-09-20 06:38:05 +02:00
@-webkit-keyframes cursorblink {
from,
to {
2021-10-11 22:38:50 +02:00
color: transparent;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
color: #adff2f;
}
}
2021-09-20 06:38:05 +02:00
@-ms-keyframes cursorblink {
from,
to {
2021-10-11 22:38:50 +02:00
color: transparent;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
color: #adff2f;
}
}
2021-09-20 06:38:05 +02:00
@-o-keyframes cursorblink {
from,
to {
2021-10-11 22:38:50 +02:00
color: transparent;
}
2021-09-20 06:38:05 +02:00
50% {
2021-10-11 22:38:50 +02:00
color: #adff2f;
}
}
2021-09-20 06:38:05 +02:00
2021-10-11 22:38:50 +02:00
/*# sourceMappingURL=main.css.map*/