From: Snapshot-Content-Location: https://author-ide.skills.network/render?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJtZF9pbnN0cnVjdGlvbnNfdXJsIjoiaHR0cHM6Ly9jZi1jb3Vyc2VzLWRhdGEuczMudXMuY2xvdWQtb2JqZWN0LXN0b3JhZ2UuYXBwZG9tYWluLmNsb3VkL0lCTURldmVsb3BlclNraWxsc05ldHdvcmstUFkwMTAxRU4tU2tpbGxzTmV0d29yay9sYWJzL21vZF8xL2Zvcm1hdF9TdHJpbmdzLm1kIiwidG9vbF90eXBlIjoiaW5zdHJ1Y3Rpb25hbC1sYWIiLCJhZG1pbiI6ZmFsc2UsImlhdCI6MTcxNDU1MTM3Nn0.aiHmquSnh-jiEbQZFYuyGgoiyyxZnCEhjcDVAXWJHaw Subject: Skills Network Editor Date: Wed, 18 Sep 2024 00:38:11 +0530 MIME-Version: 1.0 Content-Type: multipart/related; type=“text/html”; boundary=“----MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R----” ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/html Content-ID: Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/render?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJtZF9pbnN0cnVjdGlvbnNfdXJsIjoiaHR0cHM6Ly9jZi1jb3Vyc2VzLWRhdGEuczMudXMuY2xvdWQtb2JqZWN0LXN0b3JhZ2UuYXBwZG9tYWluLmNsb3VkL0lCTURldmVsb3BlclNraWxsc05ldHdvcmstUFkwMTAxRU4tU2tpbGxzTmV0d29yay9sYWJzL21vZF8xL2Zvcm1hdF9TdHJpbmdzLm1kIiwidG9vbF90eXBlIjoiaW5zdHJ1Y3Rpb25hbC1sYWIiLCJhZG1pbiI6ZmFsc2UsImlhdCI6MTcxNDU1MTM3Nn0.aiHmquSnh-jiEbQZFYuyGgoiyyxZnCEhjcDVAXWJHaw
Reading: Format Strings in Python Estimates effort: 5 mins Format strings are a way to inject variables into a string in Python. They are used to format strings and produce more human-readable outputs. There are several ways to format strings in Python: ## String interpolation (f-strings) Introduced in Python 3.6, f-strings are a new way to format strings in Python. They are prefixed with ‘f’ and use curly braces {} to enclose the variables that will be formatted. For example: python name = "John" age = 30 print(f"My name is {name} and I am {age} years old.") This will output: My name is John and I am 30 years old. ## str.format() This is another way to format strings in Python. It uses curly braces {} as placeholders for variables which are passed as arguments in the format() method. For example: python name = "John" age = 50 print("My name is {} and I am {} years old.".format(name, age)) This will output: My name is John and I am 50 years old. ## % Operator This is one of the oldest ways to format strings in Python. It uses the % operator to replace variables in the string. For example: python name = "Johnathan" age = 30 print("My name is %s and I am %d years old." % (name, age)) This will output: My name is Johnathan and I am 30 years old. Each of these methods has its own advantages and use cases. However, f-strings are generally considered the most modern and preferred way to format strings in Python due to their readability and performance. ## Additional capabilities F-strings are also able to evaluate expressions inside the curly braces, which can be very handy. For example: python x = 10 y = 20 print(f"The sum of x and y is {x+y}.") This will output: The sum of x and y is 30. ## Raw String (r”) In Python, raw strings are a powerful tool for handling textual data, especially when dealing with escape characters. By prefixing a string literal with the letter ‘r’, Python treats the string as raw, meaning it interprets backslashes as literal characters rather than escape sequences. Consider the following examples of regular string and raw string: Regular string: python regular_string = "C:\new_folder\file.txt" print("Regular String:", regular_string) This will output: Regular String: C: ew_folderile.txt In the regular string regular_string variable, the backslashes (\n) are interpreted as escape sequences. Therefore, \n represents a newline character, which would lead to an incorrect file path representation. Raw string: python raw_string = r"C:\new_folder\file.txt" print("Raw String:", raw_string) This will output: Raw String: C:\new_folder\file.txt However, in the raw string raw_string, the backslashes are treated as literal characters. This means that \n is not interpreted as a newline character, but rather as two separate characters, ” and ‘n’. Consequently, the file path is represented exactly as it appears.
#### Author: Abhishek Gagneja
xxxxxxxxxx
109
1
Reading: Format Strings in Python
2
3
Estimates effort: 5 mins
4
5
Format strings are a way to inject variables into a string in Python. They are used to format strings and produce more human-readable outputs. There are several ways to format strings in Python:
6
7
String interpolation (f-strings)
8
Introduced in Python 3.6, f-strings are a new way to format strings in Python. They are prefixed with ‘f’ and use curly braces {} to enclose the variables that will be formatted. For example:
9
10
11
name = "John"
12
age = 30
13
print(f"My name is {name} and I am {age} years old.")
14
15
16
This will output:
17
18
My name is John and I am 30 years old.
19
20
21
str.format()
22
23
This is another way to format strings in Python. It uses curly braces {} as placeholders for variables which are passed as arguments in the format() method. For example:
24
25
26
name = "John"
27
age = 50
28
print("My name is {} and I am {} years old.".format(name, age))
29
30
31
This will output:
32
33
My name is John and I am 50 years old.
34
35
36
% Operator
37
This is one of the oldest ways to format strings in Python. It uses the % operator to replace variables in the string. For example:
38
39
40
name = "Johnathan"
41
age = 30
42
print("My name is %s and I am %d years old." % (name, age))
43
44
This will output:
45
46
My name is Johnathan and I am 30 years old.
47
48
49
Each of these methods has its own advantages and use cases. However, f-strings are generally considered the most modern and preferred way to format strings in Python due to their readability and performance.
50
51
Additional capabilities
52
F-strings are also able to evaluate expressions inside the curly braces, which can be very handy. For example:
53
54
x = 10
55
y = 20
56
print(f"The sum of x and y is {x+y}.")
57
58
59
This will output:
60
61
The sum of x and y is 30.
62
63
64
Raw String (r”)
65
In Python, raw strings are a powerful tool for handling textual data, especially when dealing with escape characters. By prefixing a string literal with the letter ‘r’, Python treats the string as raw, meaning it interprets backslashes as literal characters rather than escape sequences.
66
67
Consider the following examples of regular string and raw string:
68
69
Regular string:
70
71
regular_string = "C:\new_folder\file.txt"
72
print("Regular String:", regular_string)
73
74
This will output:
75
76
Regular String: C:
77
ew_folder•ile.txt
78
79
In the regular string regular_string variable, the backslashes (\n) are interpreted as escape sequences. Therefore, \n represents a newline character, which would lead to an incorrect file path representation.
80
81
Raw string:
82
83
raw_string = r"C:\new_folder\file.txt"
84
print("Raw String:", raw_string)
85
86
This will output:
87
88
Raw String: C:\new_folder\file.txt
89
90
However, in the raw string raw_string, the backslashes are treated as literal characters. This means that \n is not interpreted as a newline character, but rather as two separate characters, ” and ‘n’. Consequently, the file path is represented exactly as it appears.
91
92
93
94
Author: Abhishek Gagneja
95
96
97
98
99
100
101
102
103
104
Table of Contents
PausePlay
% buffered00:00
02:50
UnmuteMute
Disable captionsEnable captions
Settings
PIPExit fullscreenEnter fullscreen
Play
Reading: Format Strings in Python
Estimates effort: 5 mins
Format strings are a way to inject variables into a string in Python. They are used to format strings and produce more human-readable outputs. There are several ways to format strings in Python:
String interpolation (f-strings)
Introduced in Python 3.6, f-strings are a new way to format strings in Python. They are prefixed with ‘f’ and use curly braces {} to enclose the variables that will be formatted. For example:
-
1
-
2
-
3
-
name = "John" -
age = 30 -
print(f"My name is {name} and I am {age} years old.")
Copied!
This will output:
-
1
-
My name is John and I am 30 years old.
Copied!
str.format()
This is another way to format strings in Python. It uses curly braces {} as placeholders for variables which are passed as arguments in the format() method. For example:
-
1
-
2
-
3
-
name = "John" -
age = 50 -
print("My name is {} and I am {} years old.".format(name, age))
Copied!
This will output:
-
1
-
My name is John and I am 50 years old.
Copied!
% Operator
This is one of the oldest ways to format strings in Python. It uses the % operator to replace variables in the string. For example:
-
1
-
2
-
3
-
name = "Johnathan" -
age = 30 -
print("My name is %s and I am %d years old." % (name, age))
Copied!
This will output:
-
1
-
My name is Johnathan and I am 30 years old.
Copied!
Each of these methods has its own advantages and use cases. However, f-strings are generally considered the most modern and preferred way to format strings in Python due to their readability and performance.
Additional capabilities
F-strings are also able to evaluate expressions inside the curly braces, which can be very handy. For example:
-
1
-
2
-
3
-
x = 10 -
y = 20 -
print(f"The sum of x and y is {x+y}.")
Copied!
This will output:
-
1
-
The sum of x and y is 30.
Copied!
Raw String (r’’)
In Python, raw strings are a powerful tool for handling textual data, especially when dealing with escape characters. By prefixing a string literal with the letter ‘r’, Python treats the string as raw, meaning it interprets backslashes as literal characters rather than escape sequences.
Consider the following examples of regular string and raw string:
Regular string:
-
1
-
2
-
regular_string = "C:\new_folder\file.txt" -
print("Regular String:", regular_string)
Copied!
This will output:
-
1
-
2
-
Regular String: C: -
ew_folderile.txt
Copied!
In the regular string regular_string variable, the backslashes (\n) are interpreted as escape sequences. Therefore, \n represents a newline character, which would lead to an incorrect file path representation.
Raw string:
-
1
-
2
-
raw_string = r"C:\new_folder\file.txt" -
print("Raw String:", raw_string)
Copied!
This will output:
-
1
-
Raw String: C:\new_folder\file.txt
Copied!
However, in the raw string raw_string, the backslashes are treated as literal characters. This means that \n is not interpreted as a newline character, but rather as two separate characters, ‘’ and ‘n’. Consequently, the file path is represented exactly as it appears.
Author: Abhishek Gagneja

------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/editormd/examples/css/style.css?version=3.3.3 @charset “utf-8”; * { padding: 0px; margin: 0px; } , ::before, ::after { box-sizing: border-box; } body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { margin: 0px; padding: 0px; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } audio, canvas, video { display: inline-block; } img { border: none; vertical-align: middle; } ul, ol { } .clear { } .clear::before, .clear::after { height: 0px; content: ""; font-size: 0px; display: table; line-height: 0; visibility: hidden; } .clear::after { clear: both; } body { font-size: 14px; color: rgb(102, 102, 102); font-family: “Microsoft YaHei”, 微软雅黑, Helvetica, Tahoma, STXihei, 华文细黑, STHeiti, “Helvetica Neue”, Helvetica, Tahoma, “Droid Sans”, “wenquanyi micro hei”, FreeSans, Arimo, Arial, SimSun, 宋体, Heiti, 黑体, sans-serif; background: rgb(255, 255, 255); text-align: center; } #layout { text-align: left; } #layout > header, .btns { padding: 15px 0px; width: 90%; margin: 0px auto; } .btns { padding-top: 0px; } .btns button { padding: 2px 8px; } #layout > header > h1 { font-size: 20px; margin-bottom: 10px; } .btns button, .btn { padding: 8px 10px; background: rgb(255, 255, 255); border: 1px solid rgb(221, 221, 221); border-radius: 3px; cursor: pointer; transition: background 300ms ease-out; } .btns button:hover, .btn:hover { background: rgb(246, 246, 246); } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/editormd/css/editormd.css?version=3.3.3 @charset “utf-8”; .editormd { width: 90%; height: 640px; margin: 0px auto 15px; text-align: left; overflow: hidden; position: relative; border: 1px solid rgb(221, 221, 221); font-family: “Meiryo UI”, “Microsoft YaHei”, “Malgun Gothic”, “Segoe UI”, “Trebuchet MS”, Helvetica, Monaco, monospace, Tahoma, STXihei, 华文细黑, STHeiti, “Helvetica Neue”, “Droid Sans”, “wenquanyi micro hei”, FreeSans, Arimo, Arial, SimSun, 宋体, Heiti, 黑体, sans-serif; } .editormd , .editormd ::before, .editormd ::after { box-sizing: border-box; } .editormd a { text-decoration: none; } .editormd img { border: none; vertical-align: middle; } .editormd > textarea, .editormd .editormd-html-textarea, .editormd .editormd-markdown-textarea { width: 0px; height: 0px; outline: 0px; resize: none; } .editormd .editormd-html-textarea, .editormd .editormd-markdown-textarea { display: none; } .editormd input[type=“text”], .editormd input[type=“button”], .editormd input[type=“submit”], .editormd select, .editormd textarea, .editormd button { appearance: none; } .editormd ::-webkit-scrollbar { height: 10px; width: 7px; background: rgba(0, 0, 0, 0.1); } .editormd ::-webkit-scrollbar:hover { background: rgba(0, 0, 0, 0.2); } .editormd ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.3); border-radius: 6px; } .editormd ::-webkit-scrollbar-thumb:hover { box-shadow: rgba(0, 0, 0, 0.25) 1px 1px 1px inset; background-color: rgba(0, 0, 0, 0.4); } .editormd-user-unselect { user-select: none; } .editormd-toolbar { width: 100%; min-height: 37px; background: rgb(255, 255, 255); display: flex; flex-direction: column; position: absolute; top: 0px; left: 0px; z-index: 10; border-bottom: 1px solid rgb(221, 221, 221); font-family: “IBM Plex Sans”; } .editormd-toolbar-container { padding: 6px 10px; min-height: 35px; background-color: rgb(43, 40, 39); user-select: none; } .editormd-titlebar-container { width: 100%; height: 57px; padding: 10px 25px; background-color: rgb(44, 44, 44); box-shadow: rgb(255, 255, 255) 0px 0px 5px 0px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; z-index: 1; } .editormd-titlebar-section { display: flex; align-items: center; gap: 0px 10px; position: relative; } span.editormd-titlebar { color: rgb(160, 166, 172); font-size: 0.8rem; } span.editormd-titlebar-dropdown-chevron { height: 15px; width: 15px; mask-position: center center; mask-repeat: no-repeat; mask-size: 100% 100%; background-color: rgb(255, 255, 255); mask-image: url(”../images/chevron-down.svg”); display: inline-block; vertical-align: text-top; } button.editormd-titlebar-button { border: none; background: none; color: rgb(221, 225, 230); padding: 2px 10px; display: flex; align-items: center; gap: 0px 5px; } .editormd-titlebar-section.right > button.editormd-titlebar-button:last-of-type { border: 2px solid rgb(242, 244, 248); border-radius: 6px; padding: 2px 20px; } .editormd-titlebar-section.right > button.editormd-titlebar-button:disabled { color: rgb(141, 141, 141); } .editormd-titlebar-section.right > button.editormd-titlebar-button:last-of-type:disabled { border-color: rgb(141, 141, 141); } .editormd-menu { margin: 0px; padding: 0px; list-style: none; } .editormd-menu > li { margin: 0px; padding: 5px 3px; display: inline-block; position: relative; } .editormd-menu > li.divider { display: inline-block; text-indent: -9999px; margin: 0px 10px; height: 20px; width: 1px; background: rgb(221, 221, 221); vertical-align: middle; padding: 0px; } .editormd-menu > li > a { outline: 0px; color: rgb(102, 102, 102); display: inline-block; min-width: 24px; font-size: 16px; text-decoration: none; text-align: center; border-radius: 2px; border: 1px solid rgb(255, 255, 255); transition: 300ms ease-out; } .editormd-menu > li > a:hover, .editormd-menu > li > a.active { border: 1px solid rgb(221, 221, 221); background: rgb(238, 238, 238); } .editormd-menu > li > a > .fa { text-align: center; display: block; padding: 5px; } .editormd-menu > li i.fa > span.icon-text { font-family: “IBM Plex Sans”; font-size: 0.9rem; color: rgb(221, 225, 230); font-weight: 500; } .editormd-menu > li i.fa > span.icon-text.dropdown { margin-left: 12px; } .editormd-menu > li > a > .editormd-bold { padding: 5px 2px; display: inline-block; font-weight: bold; } .editormd-menu > li:hover .editormd-dropdown-menu { display: block; } .editormd-menu > li + li > a { margin-left: 3px; } .editormd-dropdown-menu { display: none; background: rgb(255, 255, 255); border: 1px solid rgb(221, 221, 221); width: 148px; list-style: none; position: absolute; top: 33px; left: 0px; z-index: 100; box-shadow: rgba(0, 0, 0, 0.15) 1px 2px 6px; } .editormd-dropdown-menu::before, .editormd-dropdown-menu::after { width: 0px; height: 0px; display: block; content: ""; position: absolute; top: -11px; left: 8px; border: 5px solid transparent; } .editormd-dropdown-menu::before { border-bottom-color: rgb(204, 204, 204); } .editormd-dropdown-menu::after { border-bottom-color: rgb(255, 255, 255); top: -10px; } .editormd-dropdown-menu > li > a { color: rgb(102, 102, 102); display: block; text-decoration: none; padding: 8px 10px; } .editormd-dropdown-menu > li > a:hover { background: rgb(246, 246, 246); transition: 300ms ease-out; } .editormd-dropdown-menu > li + li { border-top: 1px solid rgb(221, 221, 221); } .editormd-container { margin: 0px; width: 100%; height: 100%; overflow: hidden; padding: 35px 0px 0px; position: relative; background: rgb(255, 255, 255); box-sizing: border-box; } .editormd-dialog { color: rgb(102, 102, 102); position: fixed; z-index: 99999; display: none; border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px; background: rgb(255, 255, 255); font-size: 14px; } .editormd-dialog-container { position: relative; padding: 28px; line-height: 1.4; } .editormd-dialog-container h1 { font-size: 24px; margin-bottom: 10px; } .editormd-dialog-container h1 .fa { color: rgb(44, 126, 234); padding-right: 5px; } .editormd-dialog-container h1 small { padding-left: 5px; font-weight: normal; font-size: 12px; color: rgb(153, 153, 153); } .editormd-dialog-container select { color: rgb(153, 153, 153); padding: 3px 8px; border: 1px solid rgb(221, 221, 221); border-radius: 3px; } .editormd-dialog-close { text-decoration: none; transition: 300ms ease-out; height: 12px; width: 12px; mask-position: center center; mask-repeat: no-repeat; mask-size: 100% 100%; background-color: rgb(141, 141, 141); mask-image: url(”../images/close-small.svg”); vertical-align: text-top; } .editormd-dialog-close:hover { background-color: rgb(204, 204, 204); text-decoration: none; } .editormd-dialog-header { margin: 0px 28px; padding-top: 20px; padding-bottom: 12px; border-bottom: 2px solid rgb(238, 238, 238); display: flex; align-items: center; justify-content: space-between; transition: background 300ms ease-out; } .editormd-dialog-header:hover { background: rgb(246, 246, 246); } .editormd-dialog-title { font-size: 14px; font-weight: bolder; } .editormd-dialog-footer { padding-top: 20px; text-align: right; } .editormd-dialog-info { width: 420px; } .editormd-dialog-info h1 { font-weight: normal; } .editormd-dialog-info .editormd-dialog-container { padding: 20px 25px 25px; } .editormd-dialog-info .editormd-dialog-close { top: 10px; right: 10px; } .editormd-dialog-info p > a, .editormd-dialog-info .hover-link:hover { color: rgb(33, 150, 243); } .editormd-dialog-info .hover-link { color: rgb(102, 102, 102); } .editormd-dialog-info a .fa-external-link { display: none; } .editormd-dialog-info a:hover { color: rgb(33, 150, 243); } .editormd-dialog-info a:hover .fa-external-link { display: inline-block; } .editormd-mask, .editormd-container-mask, .editormd-dialog-mask { display: none; width: 100%; height: 100%; position: absolute; top: 0px; left: 0px; } .editormd-mask, .editormd-dialog-mask-bg { background: rgb(255, 255, 255); opacity: 0.5; } .editormd-mask { position: fixed; background: rgb(0, 0, 0); opacity: 0.2; z-index: 99998; } .editormd-container-mask, .editormd-dialog-mask-con { background: url(”../images/loading.gif”) center center / 32px 32px no-repeat; } .editormd-container-mask { z-index: 20; display: block; background-color: rgb(255, 255, 255); } @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) { .editormd-container-mask, .editormd-dialog-mask-con { background-image: url(”../images/loading@2x.gif”); } } @media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min-device-pixel-ratio: 3) { .editormd-container-mask, .editormd-dialog-mask-con { background-image: url(”../images/loading@3x.gif”); } } .editormd-code-block-dialog textarea, .editormd-preformatted-text-dialog textarea { width: 100%; height: 400px; margin-bottom: 6px; overflow: auto; border: 1px solid rgb(238, 238, 238); background: rgb(255, 255, 255); padding: 15px; resize: none; } .editormd-code-toolbar { color: rgb(153, 153, 153); font-size: 14px; margin: -5px 0px 10px; } .editormd-grid-table { width: 99%; display: table; border: 1px solid rgb(221, 221, 221); border-collapse: collapse; } .editormd-grid-table-row { width: 100%; display: table-row; } .editormd-grid-table-row a { font-size: 1.4em; width: 5%; height: 36px; color: rgb(153, 153, 153); text-align: center; display: table-cell; vertical-align: middle; border: 1px solid rgb(221, 221, 221); text-decoration: none; transition: background-color 300ms ease-out, color 100ms ease-in; } .editormd-grid-table-row a.selected { color: rgb(102, 102, 102); background-color: rgb(238, 238, 238); } .editormd-grid-table-row a:hover { color: rgb(119, 119, 119); background-color: rgb(246, 246, 246); } .editormd-tab-head { list-style: none; border-bottom: 1px solid rgb(221, 221, 221); margin-bottom: 0px; } .editormd-tab-head li { display: inline-block; } .editormd-tab-head li a { color: rgb(153, 153, 153); display: block; padding: 6px 12px 5px; text-align: center; text-decoration: none; margin-bottom: -1px; border: 1px solid rgb(221, 221, 221); border-top-left-radius: 3px; border-top-right-radius: 3px; background: rgb(246, 246, 246); transition: 300ms ease-out; } .editormd-tab-head li a:hover { color: rgb(102, 102, 102); background: rgb(238, 238, 238); } .editormd-tab-head li.active a { color: rgb(102, 102, 102); background: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); } .editormd-tab-head li + li { margin-left: 3px; } .editormd-tab-box { padding: 20px 0px; } .editormd-form { color: rgb(102, 102, 102); display: flex; flex-direction: column; } .editormd-form label { float: left; display: block; text-align: left; padding-bottom: 7px; margin: 0px 0px 2px; font-weight: normal; font-size: 0.8rem; width: 100%; } .editormd-form br { clear: both; margin-bottom: 20px; } .editormd-form iframe { display: none; } .editormd-form input:focus { outline: 0px; } .editormd-form input[type=“text”], .editormd-form input[type=“number”] { color: rgb(153, 153, 153); padding: 8px; border: 1px solid rgb(221, 221, 221); border-radius: 3px; } .editormd-form input[type=“number”] { width: 40px; display: inline-block; padding: 6px 8px; } .editormd-form input[type=“text”] { display: inline-block; width: 100%; flex: 1 1 0%; } .editormd-form .fa-btns { display: inline-block; } .editormd-form .fa-btns a { color: rgb(153, 153, 153); padding: 7px 10px 0px 0px; display: inline-block; text-decoration: none; text-align: center; } .editormd-form .fa-btns .fa { font-size: 1.3em; } .editormd-form .fa-btns label { float: none; display: flex; gap: 0px 2px; width: auto; text-align: left; padding: 0px 0px 0px 5px; cursor: pointer; } .editormd-form input[type=“submit”], .editormd-form .editormd-btn, .editormd-form button, .editormd-dialog-container input[type=“submit”], .editormd-dialog-container .editormd-btn, .editormd-dialog-container button, .editormd-dialog-footer input[type=“submit”], .editormd-dialog-footer .editormd-btn, .editormd-dialog-footer button { color: rgb(102, 102, 102); min-width: 75px; cursor: pointer; background: rgb(255, 255, 255); padding: 7px 10px; border: 1px solid rgb(221, 221, 221); border-radius: 3px; transition: 300ms ease-out; } .editormd-form input[type=“submit”]:hover, .editormd-form .editormd-btn:hover, .editormd-form button:hover, .editormd-dialog-container input[type=“submit”]:hover, .editormd-dialog-container .editormd-btn:hover, .editormd-dialog-container button:hover, .editormd-dialog-footer input[type=“submit”]:hover, .editormd-dialog-footer .editormd-btn:hover, .editormd-dialog-footer button:hover { background: rgb(238, 238, 238); } .editormd-form .editormd-btn, .editormd-dialog-container .editormd-btn, .editormd-dialog-footer .editormd-btn { } .editormd-form .editormd-btn + .editormd-btn, .editormd-dialog-container .editormd-btn + .editormd-btn, .editormd-dialog-footer .editormd-btn + .editormd-btn { margin-left: 8px; } .editormd-dialog .form-flex { display: flex; align-items: center; } .editormd-file-input { width: 75px; height: 32px; margin-left: 8px; position: relative; display: inline-block; } .editormd-file-input input[type=“file”] { width: 75px; height: 32px; opacity: 0; cursor: pointer; background: rgb(0, 0, 0); display: inline-block; position: absolute; top: 0px; right: 0px; } .editormd-file-input input[type=“file”]::-webkit-file-upload-button { visibility: hidden; } .editormd-file-input:hover input[type=“submit”] { background: rgb(238, 238, 238); } .editormd .CodeMirror, .editormd-preview { display: inline-block; width: 50%; height: 100%; vertical-align: top; box-sizing: border-box; margin: 0px; } .editormd-preview { position: absolute; top: 35px; right: 0px; overflow: auto; line-height: 1.6; display: none; background: rgb(255, 255, 255); } .editormd .CodeMirror { z-index: 10; float: left; border-right: 1px solid rgb(221, 221, 221); font-size: 14px; font-family: Consolas, “YaHei Consolas Hybrid”, 微软雅黑, “Meiryo UI”, “Malgun Gothic”, “Segoe UI”, “Trebuchet MS”, Helvetica, Monaco, courier, monospace; line-height: 1.6; margin-top: 35px; } .editormd .CodeMirror pre.CodeMirror-line, .editormd .CodeMirror pre.CodeMirror-line-like { font-size: 14px; padding: 0px 12px; } .editormd .CodeMirror-linenumbers { padding: 0px 5px; } .editormd .CodeMirror, .editormd .CodeMirror-scroll, .editormd .editormd-preview { } .editormd .styled-background { background-color: rgb(255, 255, 119); } .editormd .CodeMirror-focused .cm-matchhighlight { background-image: url(“data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFklEQVQI12NgYGBgkKzc8x9CMDAwAAAmhwSbidEoSQAAAABJRU5ErkJggg==”); background-position: center bottom; background-repeat: repeat-x; } .editormd .CodeMirror-empty.CodeMirror-focused { outline: none; } .editormd .CodeMirror pre.CodeMirror-placeholder { color: rgb(153, 153, 153); } .editormd .cm-trailingspace { background-image: url(“data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QUXCToH00Y1UgAAACFJREFUCNdjPMDBUc/AwNDAAAFMTAwMDA0OP34wQgX/AQBYgwYEx4f9lQAAAABJRU5ErkJggg==”); background-position: left bottom; background-repeat: repeat-x; } .editormd .cm-tab { background: url(“data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=”) right center no-repeat; } @font-face { font-family: FontAwesome; src: url(”../fonts/fontawesome-webfont.woff2?v=4.3.0”) format(“woff2”), url(”../fonts/fontawesome-webfont.woff?v=4.3.0”) format(“woff”), url(”../fonts/fontawesome-webfont.ttf?v=4.3.0”) format(“truetype”); font-weight: normal; font-style: normal; } .fa { display: inline-block; font-style: normal; font-variant: normal; font-size-adjust: none; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-weight: normal; font-stretch: normal; line-height: 1; font-family: FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; transform: translate(0px, 0px); } .fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -15%; } .fa-2x { font-size: 2em; } .fa-3x { font-size: 3em; } .fa-4x { font-size: 4em; } .fa-5x { font-size: 5em; } .fa-fw { width: 1.28571em; text-align: center; } .fa-ul { padding-left: 0px; margin-left: 2.14286em; list-style-type: none; } .fa-ul > li { position: relative; } .fa-li { position: absolute; left: -2.14286em; width: 2.14286em; top: 0.142857em; text-align: center; } .fa-li.fa-lg { left: -1.85714em; } .fa-border { padding: 0.2em 0.25em 0.15em; border: 0.08em solid rgb(238, 238, 238); border-radius: 0.1em; } .pull-right { float: right; } .pull-left { float: left; } .fa.pull-left { margin-right: 0.3em; } .fa.pull-right { margin-left: 0.3em; } .fa-spin { animation: 2s linear 0s infinite normal none running fa-spin; } .fa-pulse { animation: 1s steps(8) 0s infinite normal none running fa-spin; } @-webkit-keyframes fa-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } @keyframes fa-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } .fa-rotate-90 { transform: rotate(90deg); } .fa-rotate-180 { transform: rotate(180deg); } .fa-rotate-270 { transform: rotate(270deg); } .fa-flip-horizontal { transform: scale(-1, 1); } .fa-flip-vertical { transform: scale(1, -1); } :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical { filter: none; } .fa-stack { position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: middle; } .fa-stack-1x, .fa-stack-2x { position: absolute; left: 0px; width: 100%; text-align: center; } .fa-stack-1x { line-height: inherit; } .fa-stack-2x { font-size: 2em; } .fa-inverse { color: rgb(255, 255, 255); } .fa-glass::before { content: ””; } .fa-music::before { content: ””; } .fa-search::before { content: ””; } .fa-envelope-o::before { content: ””; } .fa-heart::before { content: ””; } .fa-star::before { content: ””; } .fa-star-o::before { content: ””; } .fa-user::before { content: ””; } .fa-film::before { content: ””; } .fa-th-large::before { content: ””; } .fa-th::before { content: ””; } .fa-th-list::before { content: ””; } .fa-check::before { content: ””; } .fa-remove::before, .fa-close::before, .fa-times::before { content: ””; } .fa-search-plus::before { content: ””; } .fa-search-minus::before { content: ””; } .fa-power-off::before { content: ””; } .fa-signal::before { content: ””; } .fa-gear::before, .fa-cog::before { content: ””; } .fa-trash-o::before { content: ””; } .fa-home::before { content: ””; } .fa-file-o::before { content: ””; } .fa-clock-o::before { content: ””; } .fa-road::before { content: ””; } .fa-download::before { content: ””; } .fa-arrow-circle-o-down::before { content: ””; } .fa-arrow-circle-o-up::before { content: ””; } .fa-inbox::before { content: ””; } .fa-play-circle-o::before { content: ””; } .fa-rotate-right::before, .fa-repeat::before { content: ””; } .fa-refresh::before { content: ””; } .fa-list-alt::before { content: ””; } .fa-lock::before { content: ””; } .fa-flag::before { content: ””; } .fa-headphones::before { content: ””; } .fa-volume-off::before { content: ””; } .fa-volume-down::before { content: ””; } .fa-volume-up::before { content: ””; } .fa-qrcode::before { content: ””; } .fa-barcode::before { content: ””; } .fa-tag::before { content: ””; } .fa-tags::before { content: ””; } .fa-book::before { content: ””; } .fa-bookmark::before { content: ””; } .fa-print::before { content: ””; } .fa-camera::before { content: ””; } .fa-font::before { content: ””; } .fa-bold::before { content: ””; } .fa-italic::before { content: ””; } .fa-text-height::before { content: ””; } .fa-text-width::before { content: ””; } .fa-align-left::before { content: ””; } .fa-align-center::before { content: ””; } .fa-align-right::before { content: ””; } .fa-align-justify::before { content: ””; } .fa-list::before { content: ””; } .fa-dedent::before, .fa-outdent::before { content: ””; } .fa-indent::before { content: ””; } .fa-video-camera::before { content: ””; } .fa-photo::before, .fa-image::before, .fa-picture-o::before { content: ””; } .fa-pencil::before { content: ””; } .fa-map-marker::before { content: ””; } .fa-adjust::before { content: ””; } .fa-tint::before { content: ””; } .fa-edit::before, .fa-pencil-square-o::before { content: ””; } .fa-share-square-o::before { content: ””; } .fa-check-square-o::before { content: ””; } .fa-arrows::before { content: ””; } .fa-step-backward::before { content: ””; } .fa-fast-backward::before { content: ””; } .fa-backward::before { content: ””; } .fa-play::before { content: ””; } .fa-pause::before { content: ””; } .fa-stop::before { content: ””; } .fa-forward::before { content: ””; } .fa-fast-forward::before { content: ””; } .fa-step-forward::before { content: ””; } .fa-eject::before { content: ””; } .fa-chevron-left::before { content: ””; } .fa-chevron-right::before { content: ””; } .fa-plus-circle::before { content: ””; } .fa-minus-circle::before { content: ””; } .fa-times-circle::before { content: ””; } .fa-check-circle::before { content: ””; } .fa-question-circle::before { content: ””; } .fa-info-circle::before { content: ””; } .fa-crosshairs::before { content: ””; } .fa-times-circle-o::before { content: ””; } .fa-check-circle-o::before { content: ””; } .fa-ban::before { content: ””; } .fa-arrow-left::before { content: ””; } .fa-arrow-right::before { content: ””; } .fa-arrow-up::before { content: ””; } .fa-arrow-down::before { content: ””; } .fa-mail-forward::before, .fa-share::before { content: ””; } .fa-expand::before { content: ””; } .fa-compress::before { content: ””; } .fa-plus::before { content: ””; } .fa-minus::before { content: ””; } .fa-asterisk::before { content: ””; } .fa-exclamation-circle::before { content: ””; } .fa-gift::before { content: ””; } .fa-leaf::before { content: ””; } .fa-fire::before { content: ””; } .fa-eye::before { content: ””; } .fa-eye-slash::before { content: ””; } .fa-warning::before, .fa-exclamation-triangle::before { content: ””; } .fa-plane::before { content: ””; } .fa-calendar::before { content: ””; } .fa-random::before { content: ””; } .fa-comment::before { content: ””; } .fa-magnet::before { content: ””; } .fa-chevron-up::before { content: ””; } .fa-chevron-down::before { content: ””; } .fa-retweet::before { content: ””; } .fa-shopping-cart::before { content: ””; } .fa-folder::before { content: ””; } .fa-folder-open::before { content: ””; } .fa-arrows-v::before { content: ””; } .fa-arrows-h::before { content: ””; } .fa-bar-chart-o::before, .fa-bar-chart::before { content: ””; } .fa-twitter-square::before { content: ””; } .fa-facebook-square::before { content: ””; } .fa-camera-retro::before { content: ””; } .fa-key::before { content: ””; } .fa-gears::before, .fa-cogs::before { content: ””; } .fa-comments::before { content: ””; } .fa-thumbs-o-up::before { content: ””; } .fa-thumbs-o-down::before { content: ””; } .fa-star-half::before { content: ””; } .fa-heart-o::before { content: ””; } .fa-sign-out::before { content: ””; } .fa-linkedin-square::before { content: ””; } .fa-thumb-tack::before { content: ””; } .fa-external-link::before { content: ””; } .fa-sign-in::before { content: ””; } .fa-trophy::before { content: ””; } .fa-github-square::before { content: ””; } .fa-upload::before { content: ””; } .fa-lemon-o::before { content: ””; } .fa-phone::before { content: ””; } .fa-square-o::before { content: ””; } .fa-bookmark-o::before { content: ””; } .fa-phone-square::before { content: ””; } .fa-twitter::before { content: ””; } .fa-facebook-f::before, .fa-facebook::before { content: ””; } .fa-github::before { content: ””; } .fa-unlock::before { content: ””; } .fa-credit-card::before { content: ””; } .fa-rss::before { content: ””; } .fa-hdd-o::before { content: ””; } .fa-bullhorn::before { content: ””; } .fa-bell::before { content: ””; } .fa-certificate::before { content: ””; } .fa-hand-o-right::before { content: ””; } .fa-hand-o-left::before { content: ””; } .fa-hand-o-up::before { content: ””; } .fa-hand-o-down::before { content: ””; } .fa-arrow-circle-left::before { content: ””; } .fa-arrow-circle-right::before { content: ””; } .fa-arrow-circle-up::before { content: ””; } .fa-arrow-circle-down::before { content: ””; } .fa-globe::before { content: ””; } .fa-wrench::before { content: ””; } .fa-tasks::before { content: ””; } .fa-filter::before { content: ””; } .fa-briefcase::before { content: ””; } .fa-arrows-alt::before { content: ””; } .fa-group::before, .fa-users::before { content: ””; } .fa-chain::before, .fa-link::before { content: ””; } .fa-cloud::before { content: ””; } .fa-flask::before { content: ””; } .fa-cut::before, .fa-scissors::before { content: ””; } .fa-copy::before, .fa-files-o::before { content: ””; } .fa-paperclip::before { content: ””; } .fa-save::before, .fa-floppy-o::before { content: ””; } .fa-square::before { content: ””; } .fa-navicon::before, .fa-reorder::before, .fa-bars::before { content: ””; } .fa-list-ul::before { content: ””; } .fa-list-ol::before { content: ””; } .fa-strikethrough::before { content: ””; } .fa-underline::before { content: ””; } .fa-table::before { content: ””; } .fa-magic::before { content: ””; } .fa-truck::before { content: ””; } .fa-pinterest::before { content: ””; } .fa-pinterest-square::before { content: ””; } .fa-google-plus-square::before { content: ””; } .fa-google-plus::before { content: ””; } .fa-money::before { content: ””; } .fa-caret-down::before { content: ””; } .fa-caret-up::before { content: ””; } .fa-caret-left::before { content: ””; } .fa-caret-right::before { content: ””; } .fa-columns::before { content: ””; } .fa-unsorted::before, .fa-sort::before { content: ””; } .fa-sort-down::before, .fa-sort-desc::before { content: ””; } .fa-sort-up::before, .fa-sort-asc::before { content: ””; } .fa-envelope::before { content: ””; } .fa-linkedin::before { content: ””; } .fa-rotate-left::before, .fa-undo::before { content: ””; } .fa-legal::before, .fa-gavel::before { content: ””; } .fa-dashboard::before, .fa-tachometer::before { content: ””; } .fa-comment-o::before { content: ””; } .fa-comments-o::before { content: ””; } .fa-flash::before, .fa-bolt::before { content: ””; } .fa-sitemap::before { content: ””; } .fa-umbrella::before { content: ””; } .fa-paste::before, .fa-clipboard::before { content: ””; } .fa-lightbulb-o::before { content: ””; } .fa-exchange::before { content: ””; } .fa-cloud-download::before { content: ””; } .fa-cloud-upload::before { content: ””; } .fa-user-md::before { content: ””; } .fa-stethoscope::before { content: ””; } .fa-suitcase::before { content: ””; } .fa-bell-o::before { content: ””; } .fa-coffee::before { content: ””; } .fa-cutlery::before { content: ””; } .fa-file-text-o::before { content: ””; } .fa-building-o::before { content: ””; } .fa-hospital-o::before { content: ””; } .fa-ambulance::before { content: ””; } .fa-medkit::before { content: ””; } .fa-fighter-jet::before { content: ””; } .fa-beer::before { content: ””; } .fa-h-square::before { content: ””; } .fa-plus-square::before { content: ””; } .fa-angle-double-left::before { content: ””; } .fa-angle-double-right::before { content: ””; } .fa-angle-double-up::before { content: ””; } .fa-angle-double-down::before { content: ””; } .fa-angle-left::before { content: ””; } .fa-angle-right::before { content: ””; } .fa-angle-up::before { content: ””; } .fa-angle-down::before { content: ””; } .fa-desktop::before { content: ””; } .fa-laptop::before { content: ””; } .fa-tablet::before { content: ””; } .fa-mobile-phone::before, .fa-mobile::before { content: ””; } .fa-circle-o::before { content: ””; } .fa-quote-left::before { content: ””; } .fa-quote-right::before { content: ””; } .fa-spinner::before { content: ””; } .fa-circle::before { content: ””; } .fa-mail-reply::before, .fa-reply::before { content: ””; } .fa-github-alt::before { content: ””; } .fa-folder-o::before { content: ””; } .fa-folder-open-o::before { content: ””; } .fa-smile-o::before { content: ””; } .fa-frown-o::before { content: ””; } .fa-meh-o::before { content: ””; } .fa-gamepad::before { content: ””; } .fa-keyboard-o::before { content: ””; } .fa-flag-o::before { content: ””; } .fa-flag-checkered::before { content: ””; } .fa-terminal::before { content: ””; } .fa-code::before { content: ””; } .fa-mail-reply-all::before, .fa-reply-all::before { content: ””; } .fa-star-half-empty::before, .fa-star-half-full::before, .fa-star-half-o::before { content: ””; } .fa-location-arrow::before { content: ””; } .fa-crop::before { content: ””; } .fa-code-fork::before { content: ””; } .fa-unlink::before, .fa-chain-broken::before { content: ””; } .fa-question::before { content: ””; } .fa-info::before { content: ””; } .fa-exclamation::before { content: ””; } .fa-superscript::before { content: ””; } .fa-subscript::before { content: ””; } .fa-eraser::before { content: ””; } .fa-puzzle-piece::before { content: ””; } .fa-microphone::before { content: ””; } .fa-microphone-slash::before { content: ””; } .fa-shield::before { content: ””; } .fa-calendar-o::before { content: ””; } .fa-fire-extinguisher::before { content: ””; } .fa-rocket::before { content: ””; } .fa-maxcdn::before { content: ””; } .fa-chevron-circle-left::before { content: ””; } .fa-chevron-circle-right::before { content: ””; } .fa-chevron-circle-up::before { content: ””; } .fa-chevron-circle-down::before { content: ””; } .fa-html5::before { content: ””; } .fa-css3::before { content: ””; } .fa-anchor::before { content: ””; } .fa-unlock-alt::before { content: ””; } .fa-bullseye::before { content: ””; } .fa-ellipsis-h::before { content: ””; } .fa-ellipsis-v::before { content: ””; } .fa-rss-square::before { content: ””; } .fa-play-circle::before { content: ””; } .fa-ticket::before { content: ””; } .fa-minus-square::before { content: ””; } .fa-minus-square-o::before { content: ””; } .fa-level-up::before { content: ””; } .fa-level-down::before { content: ””; } .fa-check-square::before { content: ””; } .fa-pencil-square::before { content: ””; } .fa-external-link-square::before { content: ””; } .fa-share-square::before { content: ””; } .fa-compass::before { content: ””; } .fa-toggle-down::before, .fa-caret-square-o-down::before { content: ””; } .fa-toggle-up::before, .fa-caret-square-o-up::before { content: ””; } .fa-toggle-right::before, .fa-caret-square-o-right::before { content: ””; } .fa-euro::before, .fa-eur::before { content: ””; } .fa-gbp::before { content: ””; } .fa-dollar::before, .fa-usd::before { content: ””; } .fa-rupee::before, .fa-inr::before { content: ””; } .fa-cny::before, .fa-rmb::before, .fa-yen::before, .fa-jpy::before { content: ””; } .fa-ruble::before, .fa-rouble::before, .fa-rub::before { content: ””; } .fa-won::before, .fa-krw::before { content: ””; } .fa-bitcoin::before, .fa-btc::before { content: ””; } .fa-file::before { content: ””; } .fa-file-text::before { content: ””; } .fa-sort-alpha-asc::before { content: ””; } .fa-sort-alpha-desc::before { content: ””; } .fa-sort-amount-asc::before { content: ””; } .fa-sort-amount-desc::before { content: ””; } .fa-sort-numeric-asc::before { content: ””; } .fa-sort-numeric-desc::before { content: ””; } .fa-thumbs-up::before { content: ””; } .fa-thumbs-down::before { content: ””; } .fa-youtube-square::before { content: ””; } .fa-youtube::before { content: ””; } .fa-xing::before { content: ””; } .fa-xing-square::before { content: ””; } .fa-youtube-play::before { content: ””; } .fa-dropbox::before { content: ””; } .fa-stack-overflow::before { content: ””; } .fa-instagram::before { content: ””; } .fa-flickr::before { content: ””; } .fa-adn::before { content: ””; } .fa-bitbucket::before { content: ””; } .fa-bitbucket-square::before { content: ””; } .fa-tumblr::before { content: ””; } .fa-tumblr-square::before { content: ””; } .fa-long-arrow-down::before { content: ””; } .fa-long-arrow-up::before { content: ””; } .fa-long-arrow-left::before { content: ””; } .fa-long-arrow-right::before { content: ””; } .fa-apple::before { content: ””; } .fa-windows::before { content: ””; } .fa-android::before { content: ””; } .fa-linux::before { content: ””; } .fa-dribbble::before { content: ””; } .fa-skype::before { content: ””; } .fa-foursquare::before { content: ””; } .fa-trello::before { content: ””; } .fa-female::before { content: ””; } .fa-male::before { content: ””; } .fa-gittip::before, .fa-gratipay::before { content: ””; } .fa-sun-o::before { content: ””; } .fa-moon-o::before { content: ””; } .fa-archive::before { content: ””; } .fa-bug::before { content: ””; } .fa-vk::before { content: ””; } .fa-weibo::before { content: ””; } .fa-renren::before { content: ””; } .fa-pagelines::before { content: ””; } .fa-stack-exchange::before { content: ””; } .fa-arrow-circle-o-right::before { content: ””; } .fa-arrow-circle-o-left::before { content: ””; } .fa-toggle-left::before, .fa-caret-square-o-left::before { content: ””; } .fa-dot-circle-o::before { content: ””; } .fa-wheelchair::before { content: ””; } .fa-vimeo-square::before { content: ””; } .fa-turkish-lira::before, .fa-try::before { content: ””; } .fa-plus-square-o::before { content: ””; } .fa-space-shuttle::before { content: ””; } .fa-slack::before { content: ””; } .fa-envelope-square::before { content: ””; } .fa-wordpress::before { content: ””; } .fa-openid::before { content: ””; } .fa-institution::before, .fa-bank::before, .fa-university::before { content: ””; } .fa-mortar-board::before, .fa-graduation-cap::before { content: ””; } .fa-yahoo::before { content: ””; } .fa-google::before { content: ””; } .fa-reddit::before { content: ””; } .fa-reddit-square::before { content: ””; } .fa-stumbleupon-circle::before { content: ””; } .fa-stumbleupon::before { content: ””; } .fa-delicious::before { content: ””; } .fa-digg::before { content: ””; } .fa-pied-piper::before { content: ””; } .fa-pied-piper-alt::before { content: ””; } .fa-drupal::before { content: ””; } .fa-joomla::before { content: ””; } .fa-language::before { content: ””; } .fa-fax::before { content: ””; } .fa-building::before { content: ””; } .fa-child::before { content: ””; } .fa-paw::before { content: ””; } .fa-spoon::before { content: ””; } .fa-cube::before { content: ””; } .fa-cubes::before { content: ””; } .fa-behance::before { content: ””; } .fa-behance-square::before { content: ””; } .fa-steam::before { content: ””; } .fa-steam-square::before { content: ””; } .fa-recycle::before { content: ””; } .fa-automobile::before, .fa-car::before { content: ””; } .fa-cab::before, .fa-taxi::before { content: ””; } .fa-tree::before { content: ””; } .fa-spotify::before { content: ””; } .fa-deviantart::before { content: ””; } .fa-soundcloud::before { content: ””; } .fa-database::before { content: ””; } .fa-file-pdf-o::before { content: ””; } .fa-file-word-o::before { content: ””; } .fa-file-excel-o::before { content: ””; } .fa-file-powerpoint-o::before { content: ””; } .fa-file-photo-o::before, .fa-file-picture-o::before, .fa-file-image-o::before { content: ””; } .fa-file-zip-o::before, .fa-file-archive-o::before { content: ””; } .fa-file-sound-o::before, .fa-file-audio-o::before { content: ””; } .fa-file-movie-o::before, .fa-file-video-o::before { content: ””; } .fa-file-code-o::before { content: ””; } .fa-vine::before { content: ””; } .fa-codepen::before { content: ””; } .fa-jsfiddle::before { content: ””; } .fa-life-bouy::before, .fa-life-buoy::before, .fa-life-saver::before, .fa-support::before, .fa-life-ring::before { content: ””; } .fa-circle-o-notch::before { content: ””; } .fa-ra::before, .fa-rebel::before { content: ””; } .fa-ge::before, .fa-empire::before { content: ””; } .fa-git-square::before { content: ””; } .fa-git::before { content: ””; } .fa-hacker-news::before { content: ””; } .fa-tencent-weibo::before { content: ””; } .fa-qq::before { content: ””; } .fa-wechat::before, .fa-weixin::before { content: ””; } .fa-send::before, .fa-paper-plane::before { content: ””; } .fa-send-o::before, .fa-paper-plane-o::before { content: ””; } .fa-history::before { content: ””; } .fa-genderless::before, .fa-circle-thin::before { content: ””; } .fa-header::before { content: ””; } .fa-paragraph::before { content: ””; } .fa-sliders::before { content: ””; } .fa-share-alt::before { content: ””; } .fa-share-alt-square::before { content: ””; } .fa-bomb::before { content: ””; } .fa-soccer-ball-o::before, .fa-futbol-o::before { content: ””; } .fa-tty::before { content: ””; } .fa-binoculars::before { content: ””; } .fa-plug::before { content: ””; } .fa-slideshare::before { content: ””; } .fa-twitch::before { content: ””; } .fa-yelp::before { content: ””; } .fa-newspaper-o::before { content: ””; } .fa-wifi::before { content: ””; } .fa-calculator::before { content: ””; } .fa-paypal::before { content: ””; } .fa-google-wallet::before { content: ””; } .fa-cc-visa::before { content: ””; } .fa-cc-mastercard::before { content: ””; } .fa-cc-discover::before { content: ””; } .fa-cc-amex::before { content: ””; } .fa-cc-paypal::before { content: ””; } .fa-cc-stripe::before { content: ””; } .fa-bell-slash::before { content: ””; } .fa-bell-slash-o::before { content: ””; } .fa-trash::before { content: ””; } .fa-copyright::before { content: ””; } .fa-at::before { content: ””; } .fa-eyedropper::before { content: ””; } .fa-paint-brush::before { content: ””; } .fa-birthday-cake::before { content: ””; } .fa-area-chart::before { content: ””; } .fa-pie-chart::before { content: ””; } .fa-line-chart::before { content: ””; } .fa-lastfm::before { content: ””; } .fa-lastfm-square::before { content: ””; } .fa-toggle-off::before { content: ””; } .fa-toggle-on::before { content: ””; } .fa-bicycle::before { content: ””; } .fa-bus::before { content: ””; } .fa-ioxhost::before { content: ””; } .fa-angellist::before { content: ””; } .fa-cc::before { content: ””; } .fa-shekel::before, .fa-sheqel::before, .fa-ils::before { content: ””; } .fa-meanpath::before { content: ””; } .fa-buysellads::before { content: ””; } .fa-connectdevelop::before { content: ””; } .fa-dashcube::before { content: ””; } .fa-forumbee::before { content: ””; } .fa-leanpub::before { content: ””; } .fa-sellsy::before { content: ””; } .fa-shirtsinbulk::before { content: ””; } .fa-simplybuilt::before { content: ””; } .fa-skyatlas::before { content: ””; } .fa-cart-plus::before { content: ””; } .fa-cart-arrow-down::before { content: ””; } .fa-diamond::before { content: ””; } .fa-ship::before { content: ””; } .fa-user-secret::before { content: ””; } .fa-motorcycle::before { content: ””; } .fa-street-view::before { content: ””; } .fa-heartbeat::before { content: ””; } .fa-venus::before { content: ””; } .fa-mars::before { content: ””; } .fa-mercury::before { content: ””; } .fa-transgender::before { content: ””; } .fa-transgender-alt::before { content: ””; } .fa-venus-double::before { content: ””; } .fa-mars-double::before { content: ””; } .fa-venus-mars::before { content: ””; } .fa-mars-stroke::before { content: ””; } .fa-mars-stroke-v::before { content: ””; } .fa-mars-stroke-h::before { content: ””; } .fa-neuter::before { content: ””; } .fa-facebook-official::before { content: ””; } .fa-pinterest-p::before { content: ””; } .fa-whatsapp::before { content: ””; } .fa-server::before { content: ””; } .fa-user-plus::before { content: ””; } .fa-user-times::before { content: ””; } .fa-hotel::before, .fa-bed::before { content: ””; } .fa-viacoin::before { content: ””; } .fa-train::before { content: ””; } .fa-subway::before { content: ””; } .fa-medium::before { content: ””; } @font-face { font-family: editormd-logo; src: url(”../fonts/editormd-logo.woff?-5y8q6h”) format(“woff”), url(”../fonts/editormd-logo.ttf?-5y8q6h”) format(“truetype”); font-weight: normal; font-style: normal; } .editormd-logo, .editormd-logo-1x, .editormd-logo-2x, .editormd-logo-3x, .editormd-logo-4x, .editormd-logo-5x, .editormd-logo-6x, .editormd-logo-7x, .editormd-logo-8x { font-family: editormd-logo; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; font-size: inherit; line-height: 1; display: inline-block; text-rendering: auto; vertical-align: inherit; -webkit-font-smoothing: antialiased; } .editormd-logo::before, .editormd-logo-1x::before, .editormd-logo-2x::before, .editormd-logo-3x::before, .editormd-logo-4x::before, .editormd-logo-5x::before, .editormd-logo-6x::before, .editormd-logo-7x::before, .editormd-logo-8x::before { content: ””; } .editormd-logo-1x { font-size: 1em; } .editormd-logo-lg { font-size: 1.2em; } .editormd-logo-2x { font-size: 2em; } .editormd-logo-3x { font-size: 3em; } .editormd-logo-4x { font-size: 4em; } .editormd-logo-5x { font-size: 5em; } .editormd-logo-6x { font-size: 6em; } .editormd-logo-7x { font-size: 7em; } .editormd-logo-8x { font-size: 8em; } .editormd-logo-color { color: rgb(33, 150, 243); } @font-face { font-family: octicons-anchor; src: url(“data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAYcAA0AAAAACjQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABMAAAABwAAAAca8vGTk9TLzIAAAFMAAAARAAAAFZG1VHVY21hcAAAAZAAAAA+AAABQgAP9AdjdnQgAAAB0AAAAAQAAAAEACICiGdhc3AAAAHUAAAACAAAAAj//wADZ2x5ZgAAAdwAAADRAAABEKyikaNoZWFkAAACsAAAAC0AAAA2AtXoA2hoZWEAAALgAAAAHAAAACQHngNFaG10eAAAAvwAAAAQAAAAEAwAACJsb2NhAAADDAAAAAoAAAAKALIAVG1heHAAAAMYAAAAHwAAACABEAB2bmFtZQAAAzgAAALBAAAFu3I9x/Nwb3N0AAAF/AAAAB0AAAAvaoFvbwAAAAEAAAAAzBdyYwAAAADP2IQvAAAAAM/bz7t4nGNgZGFgnMDAysDB1Ml0hoGBoR9CM75mMGLkYGBgYmBlZsAKAtJcUxgcPsR8iGF2+O/AEMPsznAYKMwIkgMA5REMOXicY2BgYGaAYBkGRgYQsAHyGMF8FgYFIM0ChED+h5j//yEk/3KoSgZGNgYYk4GRCUgwMaACRoZhDwCs7QgGAAAAIgKIAAAAAf//AAJ4nHWMMQrCQBBF/0zWrCCIKUQsTDCL2EXMohYGSSmorScInsRGL2DOYJe0Ntp7BK+gJ1BxF1stZvjz/v8DRghQzEc4kIgKwiAppcA9LtzKLSkdNhKFY3HF4lK69ExKslx7Xa+vPRVS43G98vG1DnkDMIBUgFN0MDXflU8tbaZOUkXUH0+U27RoRpOIyCKjbMCVejwypzJJG4jIwb43rfl6wbwanocrJm9XFYfskuVC5K/TPyczNU7b84CXcbxks1Un6H6tLH9vf2LRnn8Ax7A5WQAAAHicY2BkYGAA4teL1+yI57f5ysDNwgAC529f0kOmWRiYVgEpDgYmEA8AUzEKsQAAAHicY2BkYGB2+O/AEMPCAAJAkpEBFbAAADgKAe0EAAAiAAAAAAQAAAAEAAAAAAAAKgAqACoAiAAAeJxjYGRgYGBhsGFgYgABEMkFhAwM/xn0QAIAD6YBhwB4nI1Ty07cMBS9QwKlQapQW3VXySvEqDCZGbGaHULiIQ1FKgjWMxknMfLEke2A+IJu+wntrt/QbVf9gG75jK577Lg8K1qQPCfnnnt8fX1NRC/pmjrk/zprC+8D7tBy9DHgBXoWfQ44Av8t4Bj4Z8CLtBL9CniJluPXASf0Lm4CXqFX8Q84dOLnMB17N4c7tBo1AS/Qi+hTwBH4rwHHwN8DXqQ30XXAS7QaLwSc0Gn8NuAVWou/gFmnjLrEaEh9GmDdDGgL3B4JsrRPDU2hTOiMSuJUIdKQQayiAth69r6akSSFqIJuA19TrzCIaY8sIoxyrNIrL//pw7A2iMygkX5vDj+G+kuoLdX4GlGK/8Lnlz6/h9MpmoO9rafrz7ILXEHHaAx95s9lsI7AHNMBWEZHULnfAXwG9/ZqdzLI08iuwRloXE8kfhXYAvE23+23DU3t626rbs8/8adv+9DWknsHp3E17oCf+Z48rvEQNZ78paYM38qfk3v/u3l3u3GXN2Dmvmvpf1Srwk3pB/VSsp512bA/GG5i2WJ7wu430yQ5K3nFGiOqgtmSB5pJVSizwaacmUZzZhXLlZTq8qGGFY2YcSkqbth6aW1tRmlaCFs2016m5qn36SbJrqosG4uMV4aP2PHBmB3tjtmgN2izkGQyLWprekbIntJFing32a5rKWCN/SdSoga45EJykyQ7asZvHQ8PTm6cslIpwyeyjbVltNikc2HTR7YKh9LBl9DADC0U/jLcBZDKrMhUBfQBvXRzLtFtjU9eNHKin0x5InTqb8lNpfKv1s1xHzTXRqgKzek/mb7nB8RZTCDhGEX3kK/8Q75AmUM/eLkfA+0Hi908Kx4eNsMgudg5GLdRD7a84npi+YxNr5i5KIbW5izXas7cHXIMAau1OueZhfj+cOcP3P8MNIWLyYOBuxL6DRylJ4cAAAB4nGNgYoAALjDJyIAOWMCiTIxMLDmZedkABtIBygAAAA==”) format(“woff”); } .markdown-body { text-size-adjust: 100%; color: rgb(51, 51, 51); overflow: hidden; font-family: “Microsoft YaHei”, Helvetica, “Meiryo UI”, “Malgun Gothic”, “Segoe UI”, “Trebuchet MS”, Monaco, monospace, Tahoma, STXihei, 华文细黑, STHeiti, “Helvetica Neue”, “Droid Sans”, “wenquanyi micro hei”, FreeSans, Arimo, Arial, SimSun, 宋体, Heiti, 黑体, sans-serif; font-size: 16px; line-height: 1.6; overflow-wrap: break-word; } .markdown-body a { background: transparent; } .markdown-body a:active, .markdown-body a:hover { outline: 0px; } .markdown-body strong { font-weight: bold; } .markdown-body h1 { font-size: 2em; margin: 0.67em 0px; } .markdown-body img { border: 0px; } .markdown-body hr { box-sizing: content-box; height: 0px; } .markdown-body pre { overflow: auto; } .markdown-body code, .markdown-body kbd, .markdown-body pre { font-family: “Meiryo UI”, “YaHei Consolas Hybrid”, Consolas, “Malgun Gothic”, “Segoe UI”, “Trebuchet MS”, Helvetica, monospace, monospace; font-size: 1em; } .markdown-body input { color: inherit; font: inherit; margin: 0px; } .markdown-body html input[disabled] { cursor: default; } .markdown-body input { line-height: normal; } .markdown-body input[type=“checkbox”] { box-sizing: border-box; padding: 0px; } .markdown-body table { border-collapse: collapse; border-spacing: 0px; } .markdown-body td, .markdown-body th { padding: 0px; } .markdown-body * { box-sizing: border-box; } .markdown-body input { font: 13px / 1.4 Helvetica, arial, freesans, clean, sans-serif, “Segoe UI Emoji”, “Segoe UI Symbol”; } .markdown-body a { color: rgb(65, 131, 196); text-decoration: none; } .markdown-body a:hover, .markdown-body a:active { text-decoration: underline; } .markdown-body hr { height: 0px; margin: 15px 0px; overflow: hidden; background: transparent; border-width: 0px 0px 1px; border-top-style: initial; border-right-style: initial; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-left-color: initial; border-image: initial; border-bottom-style: solid; border-bottom-color: rgb(221, 221, 221); } .markdown-body hr::before { display: table; content: ""; } .markdown-body hr::after { display: table; clear: both; content: ""; } .markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4, .markdown-body h5, .markdown-body h6 { margin-top: 15px; margin-bottom: 15px; line-height: 1.1; } .markdown-body h1 { font-size: 30px; } .markdown-body h2 { font-size: 21px; } .markdown-body h3 { font-size: 16px; } .markdown-body h4 { font-size: 14px; } .markdown-body h5 { font-size: 12px; } .markdown-body h6 { font-size: 11px; } .markdown-body blockquote { margin: 0px; } .markdown-body ul, .markdown-body ol { padding: 0px; margin-top: 0px; margin-bottom: 0px; } .markdown-body ol ol, .markdown-body ul ol { list-style-type: lower-roman; } .markdown-body ul ul ol, .markdown-body ul ol ol, .markdown-body ol ul ol, .markdown-body ol ol ol { list-style-type: lower-alpha; } .markdown-body dd { margin-left: 0px; } .markdown-body code { font-family: Consolas, “Liberation Mono”, Menlo, Courier, monospace; font-size: 12px; } .markdown-body pre { margin-top: 0px; margin-bottom: 0px; font: 12px Consolas, “Liberation Mono”, Menlo, Courier, monospace; } .markdown-body .octicon { font: 16px / 1 octicons-anchor; display: inline-block; text-decoration: none; -webkit-font-smoothing: antialiased; user-select: none; } .markdown-body .octicon-link::before { content: ””; } .markdown-body > :first-child { margin-top: 0px !important; } .markdown-body > :last-child { margin-bottom: 0px !important; } .markdown-body .anchor { position: absolute; top: 0px; left: 0px; display: block; padding-right: 6px; padding-left: 30px; margin-left: -30px; } .markdown-body .anchor:focus { outline: none; } .markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4, .markdown-body h5, .markdown-body h6 { position: relative; margin-top: 1em; margin-bottom: 16px; font-weight: bold; line-height: 1.4; } .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link, .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link, .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link { display: none; color: rgb(0, 0, 0); vertical-align: middle; } .markdown-body h1:hover .anchor, .markdown-body h2:hover .anchor, .markdown-body h3:hover .anchor, .markdown-body h4:hover .anchor, .markdown-body h5:hover .anchor, .markdown-body h6:hover .anchor { padding-left: 8px; margin-left: -30px; text-decoration: none; } .markdown-body h1:hover .anchor .octicon-link, .markdown-body h2:hover .anchor .octicon-link, .markdown-body h3:hover .anchor .octicon-link, .markdown-body h4:hover .anchor .octicon-link, .markdown-body h5:hover .anchor .octicon-link, .markdown-body h6:hover .anchor .octicon-link { display: inline-block; } .markdown-body h1 { padding-bottom: 0.3em; font-size: 2.25em; line-height: 1.2; border-bottom: 1px solid rgb(238, 238, 238); } .markdown-body h1 .anchor { line-height: 1; } .markdown-body h2 { padding-bottom: 0.3em; font-size: 1.75em; line-height: 1.225; border-bottom: 1px solid rgb(238, 238, 238); } .markdown-body h2 .anchor { line-height: 1; } .markdown-body h3 { font-size: 1.5em; line-height: 1.43; } .markdown-body h3 .anchor { line-height: 1.2; } .markdown-body h4 { font-size: 1.25em; } .markdown-body h4 .anchor { line-height: 1.2; } .markdown-body h5 { font-size: 1em; } .markdown-body h5 .anchor { line-height: 1.1; } .markdown-body h6 { font-size: 1em; color: rgb(119, 119, 119); } .markdown-body h6 .anchor { line-height: 1.1; } .markdown-body p, .markdown-body blockquote, .markdown-body ul, .markdown-body ol, .markdown-body dl, .markdown-body table, .markdown-body pre { margin-top: 0px; margin-bottom: 16px; } .markdown-body ul, .markdown-body ol { padding-left: 2em; } .markdown-body ul ul, .markdown-body ul ol, .markdown-body ol ol, .markdown-body ol ul { margin-top: 0px; margin-bottom: 0px; } .markdown-body li > p { margin-top: 16px; } .markdown-body dl { padding: 0px; } .markdown-body dl dt { padding: 0px; margin-top: 16px; font-size: 1em; font-style: italic; font-weight: bold; } .markdown-body dl dd { padding: 0px 16px; margin-bottom: 16px; } .markdown-body blockquote { padding: 0px 15px; color: rgb(119, 119, 119); border-left: 4px solid rgb(221, 221, 221); } .markdown-body blockquote > :first-child { margin-top: 0px; } .markdown-body blockquote > :last-child { margin-bottom: 0px; } .markdown-body table { display: block; width: 100%; overflow: auto; word-break: keep-all; } .markdown-body table th { font-weight: bold; } .markdown-body table th, .markdown-body table td { padding: 6px 13px; border: 1px solid rgb(221, 221, 221); } .markdown-body table tr { background-color: rgb(255, 255, 255); border-top: 1px solid rgb(204, 204, 204); } .markdown-body table tr:nth-child(2n) { background-color: rgb(248, 248, 248); } .markdown-body img { max-width: 100%; box-sizing: border-box; } .markdown-body code { padding: 0.2em 0px; margin: 0px; font-size: 85%; background-color: rgba(0, 0, 0, 0.04); border-radius: 3px; } .markdown-body code::before, .markdown-body code::after { letter-spacing: -0.2em; content: ” ”; } .markdown-body pre > code { padding: 0px; margin: 0px; font-size: 100%; word-break: normal; white-space: pre; background: transparent; border: 0px; } .markdown-body .highlight { margin-bottom: 16px; } .markdown-body .highlight pre, .markdown-body pre { padding: 16px; overflow: auto; font-size: 85%; line-height: 1.45; background-color: rgb(247, 247, 247); border-radius: 3px; } .markdown-body .highlight pre { margin-bottom: 0px; word-break: normal; } .markdown-body pre { overflow-wrap: normal; } .markdown-body pre code { display: inline; max-width: initial; padding: 0px; margin: 0px; overflow: initial; line-height: inherit; overflow-wrap: normal; background-color: transparent; border: 0px; } .markdown-body pre code::before, .markdown-body pre code::after { content: normal; } .markdown-body kbd { display: inline-block; padding: 3px 5px; font-size: 11px; line-height: 10px; color: rgb(85, 85, 85); vertical-align: middle; background-color: rgb(252, 252, 252); border-width: 1px; border-style: solid; border-color: rgb(204, 204, 204) rgb(204, 204, 204) rgb(187, 187, 187); border-image: initial; border-radius: 3px; box-shadow: rgb(187, 187, 187) 0px -1px 0px inset; } .markdown-body .pl-c { color: rgb(150, 152, 150); } .markdown-body .pl-c1, .markdown-body .pl-mdh, .markdown-body .pl-mm, .markdown-body .pl-mp, .markdown-body .pl-mr, .markdown-body .pl-s1 .pl-v, .markdown-body .pl-s3, .markdown-body .pl-sc, .markdown-body .pl-sv { color: rgb(0, 134, 179); } .markdown-body .pl-e, .markdown-body .pl-en { color: rgb(121, 93, 163); } .markdown-body .pl-s1 .pl-s2, .markdown-body .pl-smi, .markdown-body .pl-smp, .markdown-body .pl-stj, .markdown-body .pl-vo, .markdown-body .pl-vpf { color: rgb(51, 51, 51); } .markdown-body .pl-ent { color: rgb(99, 163, 92); } .markdown-body .pl-k, .markdown-body .pl-s, .markdown-body .pl-st { color: rgb(167, 29, 93); } .markdown-body .pl-pds, .markdown-body .pl-s1, .markdown-body .pl-s1 .pl-pse .pl-s2, .markdown-body .pl-sr, .markdown-body .pl-sr .pl-cce, .markdown-body .pl-sr .pl-sra, .markdown-body .pl-sr .pl-sre, .markdown-body .pl-src { color: rgb(223, 80, 0); } .markdown-body .pl-mo, .markdown-body .pl-v { color: rgb(29, 62, 129); } .markdown-body .pl-id { color: rgb(181, 42, 29); } .markdown-body .pl-ii { background-color: rgb(181, 42, 29); color: rgb(248, 248, 248); } .markdown-body .pl-sr .pl-cce { color: rgb(99, 163, 92); font-weight: bold; } .markdown-body .pl-ml { color: rgb(105, 58, 23); } .markdown-body .pl-mh, .markdown-body .pl-mh .pl-en, .markdown-body .pl-ms { color: rgb(29, 62, 129); font-weight: bold; } .markdown-body .pl-mq { color: rgb(0, 128, 128); } .markdown-body .pl-mi { color: rgb(51, 51, 51); font-style: italic; } .markdown-body .pl-mb { color: rgb(51, 51, 51); font-weight: bold; } .markdown-body .pl-md, .markdown-body .pl-mdhf { background-color: rgb(255, 236, 236); color: rgb(189, 44, 0); } .markdown-body .pl-mdht, .markdown-body .pl-mi1 { background-color: rgb(234, 255, 234); color: rgb(85, 165, 50); } .markdown-body .pl-mdr { color: rgb(121, 93, 163); font-weight: bold; } .markdown-body kbd { display: inline-block; padding: 3px 5px; font: 11px / 10px Consolas, “Liberation Mono”, Menlo, Courier, monospace; color: rgb(85, 85, 85); vertical-align: middle; background-color: rgb(252, 252, 252); border-width: 1px; border-style: solid; border-color: rgb(204, 204, 204) rgb(204, 204, 204) rgb(187, 187, 187); border-image: initial; border-radius: 3px; box-shadow: rgb(187, 187, 187) 0px -1px 0px inset; } .markdown-body .task-list-item { list-style-type: none; } .markdown-body .task-list-item + .task-list-item { margin-top: 3px; } .markdown-body .task-list-item input { float: left; margin: 0.3em 0px 0.25em -1.6em; vertical-align: middle; } .markdown-body :checked + .radio-label { z-index: 1; position: relative; border-color: rgb(65, 131, 196); } .editormd-preview-container, .editormd-html-preview { text-align: left; font-size: 14px; line-height: 1.6; padding: 20px; overflow: auto; width: 100%; background-color: rgb(255, 255, 255); } .editormd-preview-container blockquote, .editormd-html-preview blockquote { color: rgb(102, 102, 102); border-left: 4px solid rgb(221, 221, 221); padding-left: 20px; margin-left: 0px; font-size: 14px; font-style: italic; } .editormd-preview-container p code, .editormd-html-preview p code { margin-left: 5px; margin-right: 4px; } .editormd-preview-container abbr, .editormd-html-preview abbr { background: rgb(255, 255, 221); } .editormd-preview-container hr, .editormd-html-preview hr { height: 1px; border-right: none; border-bottom: none; border-left: none; border-image: initial; border-top: 1px solid rgb(221, 221, 221); background: none; } .editormd-preview-container code, .editormd-html-preview code { border: 1px solid rgb(221, 221, 221); background: rgb(246, 246, 246); padding: 3px; border-radius: 3px; font-size: 14px; } .editormd-preview-container pre, .editormd-html-preview pre { border: 1px solid rgb(221, 221, 221); background: rgb(246, 246, 246); padding: 10px; border-radius: 3px; } .editormd-preview-container pre code, .editormd-html-preview pre code { padding: 0px; } .editormd-preview-container pre, .editormd-preview-container code, .editormd-preview-container kbd, .editormd-html-preview pre, .editormd-html-preview code, .editormd-html-preview kbd { font-family: Consolas, “YaHei Consolas Hybrid”, “Meiryo UI”, “Malgun Gothic”, “Segoe UI”, “Trebuchet MS”, Helvetica, monospace, monospace; } .editormd-preview-container table thead tr, .editormd-html-preview table thead tr { background-color: rgb(248, 248, 248); } .editormd-preview-container p.editormd-tex, .editormd-html-preview p.editormd-tex { text-align: center; } .editormd-preview-container span.editormd-tex, .editormd-html-preview span.editormd-tex { margin: 0px 5px; } .editormd-preview-container .emoji, .editormd-html-preview .emoji { width: 24px; height: 24px; } .editormd-preview-container .katex, .editormd-html-preview .katex { font-size: 1.4em; } .editormd-preview-container .sequence-diagram, .editormd-preview-container .flowchart, .editormd-html-preview .sequence-diagram, .editormd-html-preview .flowchart { margin: 0px auto; text-align: center; } .editormd-preview-container .sequence-diagram svg, .editormd-preview-container .flowchart svg, .editormd-html-preview .sequence-diagram svg, .editormd-html-preview .flowchart svg { margin: 0px auto; } .editormd-preview-container .sequence-diagram text, .editormd-preview-container .flowchart text, .editormd-html-preview .sequence-diagram text, .editormd-html-preview .flowchart text { font-size: 15px !important; font-family: Consolas, “YaHei Consolas Hybrid”, “Microsoft YaHei”, “Malgun Gothic”, “Segoe UI”, Helvetica, Arial !important; } .pln { color: rgb(0, 0, 0); } @media screen { .str { color: rgb(0, 136, 0); } .kwd { color: rgb(0, 0, 136); } .com { color: rgb(136, 0, 0); } .typ { color: rgb(102, 0, 102); } .lit { color: rgb(0, 102, 102); } .pun, .opn, .clo { color: rgb(102, 102, 0); } .tag { color: rgb(0, 0, 136); } .atn { color: rgb(102, 0, 102); } .atv { color: rgb(0, 136, 0); } .dec, .var { color: rgb(102, 0, 102); } .fun { color: red; } } @media print, projection { .str { color: rgb(0, 102, 0); } .kwd { color: rgb(0, 0, 102); font-weight: bold; } .com { color: rgb(102, 0, 0); font-style: italic; } .typ { color: rgb(68, 0, 68); font-weight: bold; } .lit { color: rgb(0, 68, 68); } .pun, .opn, .clo { color: rgb(68, 68, 0); } .tag { color: rgb(0, 0, 102); font-weight: bold; } .atn { color: rgb(68, 0, 68); } .atv { color: rgb(0, 102, 0); } } pre.prettyprint { padding: 2px; border: 1px solid rgb(136, 136, 136); } ol.linenums { margin-top: 0px; margin-bottom: 0px; } li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 { list-style-type: none; } li.L1, li.L3, li.L5, li.L7, li.L9 { background: rgb(238, 238, 238); } .editormd-preview-container pre.prettyprint, .editormd-html-preview pre.prettyprint { padding: 10px; border: 1px solid rgb(221, 221, 221); overflow-wrap: break-word; } .editormd-preview-container ol.linenums, .editormd-html-preview ol.linenums { color: rgb(153, 153, 153); padding-left: 2.5em; } .editormd-preview-container ol.linenums li, .editormd-html-preview ol.linenums li { list-style-type: decimal; } .editormd-preview-container ol.linenums li code, .editormd-html-preview ol.linenums li code { border: none; background: none; padding: 0px; } .editormd-preview-container .editormd-toc-menu, .editormd-html-preview .editormd-toc-menu { margin: 8px 0px 12px; display: inline-block; } .editormd-preview-container .editormd-toc-menu > .markdown-toc, .editormd-html-preview .editormd-toc-menu > .markdown-toc { position: relative; border-radius: 4px; border: 1px solid rgb(221, 221, 221); display: inline-block; font-size: 1em; } .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul { width: 160%; min-width: 180px; position: absolute; left: -1px; top: -2px; z-index: 100; padding: 0px 10px 10px; display: none; background: rgb(255, 255, 255); border: 1px solid rgb(221, 221, 221); border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px; } .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li ul { width: 100%; min-width: 180px; border: 1px solid rgb(221, 221, 221); display: none; background: rgb(255, 255, 255); border-radius: 4px; } .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li a, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li a { color: rgb(102, 102, 102); padding: 6px 10px; display: block; transition: background-color 500ms ease-out; } .editormd-preview-container .editormd-toc-menu > .markdown-toc > ul > li a:hover, .editormd-html-preview .editormd-toc-menu > .markdown-toc > ul > li a:hover { background-color: rgb(246, 246, 246); } .editormd-preview-container .editormd-toc-menu > .markdown-toc li, .editormd-html-preview .editormd-toc-menu > .markdown-toc li { position: relative; } .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul { position: absolute; top: 32px; left: 10%; display: none; box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px; } .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul::before, .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul::after, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul::before, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul::after { position: absolute; left: 15px; top: -6px; display: block; content: ""; width: 0px; height: 0px; border-style: solid; border-color: transparent; border-image: initial; border-width: 0px 6px 6px; z-index: 10; } .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul::before, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul::before { border-bottom-color: rgb(204, 204, 204); } .editormd-preview-container .editormd-toc-menu > .markdown-toc li > ul::after, .editormd-html-preview .editormd-toc-menu > .markdown-toc li > ul::after { border-bottom-color: rgb(255, 255, 255); top: -5px; } .editormd-preview-container .editormd-toc-menu ul, .editormd-html-preview .editormd-toc-menu ul { list-style: none; } .editormd-preview-container .editormd-toc-menu a, .editormd-html-preview .editormd-toc-menu a { text-decoration: none; } .editormd-preview-container .editormd-toc-menu h1, .editormd-html-preview .editormd-toc-menu h1 { font-size: 16px; padding: 5px 0px 10px 10px; line-height: 1; border-bottom: 1px solid rgb(238, 238, 238); } .editormd-preview-container .editormd-toc-menu h1 .fa, .editormd-html-preview .editormd-toc-menu h1 .fa { padding-left: 10px; } .editormd-preview-container .editormd-toc-menu .toc-menu-btn, .editormd-html-preview .editormd-toc-menu .toc-menu-btn { color: rgb(102, 102, 102); min-width: 180px; padding: 5px 10px; border-radius: 4px; display: inline-block; transition: background-color 500ms ease-out; } .editormd-preview-container .editormd-toc-menu .toc-menu-btn:hover, .editormd-html-preview .editormd-toc-menu .toc-menu-btn:hover { background-color: rgb(246, 246, 246); } .editormd-preview-container .editormd-toc-menu .toc-menu-btn .fa, .editormd-html-preview .editormd-toc-menu .toc-menu-btn .fa { float: right; padding: 3px 0px 0px 10px; font-size: 1.3em; } .markdown-body .editormd-toc-menu ul { padding-left: 0px; } .markdown-body .highlight pre, .markdown-body pre { line-height: 1.6; } hr.editormd-page-break { border: 1px dotted rgb(204, 204, 204); font-size: 0px; height: 2px; } @media only print { hr.editormd-page-break { background: none; border: none; height: 0px; } } .editormd-html-preview textarea { display: none; } .editormd-html-preview hr.editormd-page-break { background: none; border: none; height: 0px; } .editormd-preview-close-btn { color: rgb(255, 255, 255); padding: 4px 6px; font-size: 18px; border-radius: 500px; display: none; background-color: rgb(204, 204, 204); position: absolute; top: 25px; right: 35px; z-index: 19; transition: background-color 300ms ease-out; } .editormd-preview-close-btn:hover { background-color: rgb(153, 153, 153); } .editormd-preview-active { width: 100%; padding: 40px; } .editormd-preview-theme-dark { color: rgb(119, 119, 119); background: rgb(44, 40, 39); } .editormd-preview-theme-dark .editormd-preview-container { color: rgb(136, 136, 136); background-color: rgb(44, 40, 39); } .editormd-preview-theme-dark .editormd-preview-container blockquote { color: rgb(85, 85, 85); padding: 0.5em; background: rgb(34, 34, 34); border-color: rgb(51, 51, 51); } .editormd-preview-theme-dark .editormd-preview-container abbr { color: rgb(255, 255, 255); padding: 1px 3px; border-radius: 3px; background: rgb(255, 153, 0); } .editormd-preview-theme-dark .editormd-preview-container code { color: rgb(255, 255, 255); border: none; padding: 1px 3px; border-radius: 3px; background: rgb(90, 150, 0); } .editormd-preview-theme-dark .editormd-preview-container table { border: none; } .editormd-preview-theme-dark .editormd-preview-container .fa-emoji { color: rgb(180, 191, 66); } .editormd-preview-theme-dark .editormd-preview-container .katex { color: rgb(254, 201, 63); } .editormd-preview-theme-dark .editormd-toc-menu > .markdown-toc { background: rgb(255, 255, 255); border: none; } .editormd-preview-theme-dark .editormd-toc-menu > .markdown-toc h1 { border-color: rgb(221, 221, 221); } .editormd-preview-theme-dark .markdown-body h1, .editormd-preview-theme-dark .markdown-body h2, .editormd-preview-theme-dark .markdown-body hr { border-color: rgb(34, 34, 34); } .editormd-preview-theme-dark pre { color: rgb(153, 153, 153); background-color: rgba(0, 0, 0, 0.4); } .editormd-preview-theme-dark pre .pln { color: rgb(153, 153, 153); } .editormd-preview-theme-dark li.L1, .editormd-preview-theme-dark li.L3, .editormd-preview-theme-dark li.L5, .editormd-preview-theme-dark li.L7, .editormd-preview-theme-dark li.L9 { background: none; } .editormd-preview-theme-dark [class=“editormd-logo”] { color: rgb(33, 150, 243); } .editormd-preview-theme-dark .sequence-diagram text { fill: rgb(255, 255, 255); } .editormd-preview-theme-dark .sequence-diagram rect, .editormd-preview-theme-dark .sequence-diagram path { color: rgb(255, 255, 255); fill: rgb(100, 209, 203); stroke: rgb(100, 209, 203); } .editormd-preview-theme-dark .flowchart rect, .editormd-preview-theme-dark .flowchart path { stroke: rgb(166, 198, 255); } .editormd-preview-theme-dark .flowchart rect { fill: rgb(166, 198, 255); } .editormd-preview-theme-dark .flowchart text { fill: rgb(88, 121, 180); } @media screen { .editormd-preview-theme-dark { } .editormd-preview-theme-dark .str { color: rgb(0, 136, 0); } .editormd-preview-theme-dark .kwd { color: rgb(255, 153, 0); } .editormd-preview-theme-dark .com { color: rgb(68, 68, 68); } .editormd-preview-theme-dark .typ { color: rgb(102, 0, 102); } .editormd-preview-theme-dark .lit { color: rgb(0, 102, 102); } .editormd-preview-theme-dark .pun, .editormd-preview-theme-dark .opn, .editormd-preview-theme-dark .clo { color: rgb(102, 102, 0); } .editormd-preview-theme-dark .tag { color: rgb(255, 153, 0); } .editormd-preview-theme-dark .atn { color: rgb(108, 149, 245); } .editormd-preview-theme-dark .atv { color: rgb(0, 136, 0); } .editormd-preview-theme-dark .dec, .editormd-preview-theme-dark .var { color: rgb(0, 139, 167); } .editormd-preview-theme-dark .fun { color: red; } } .editormd-onlyread .editormd-toolbar { display: none; } .editormd-onlyread .CodeMirror { margin-top: 0px; } .editormd-onlyread .editormd-preview { top: 0px; } .editormd-fullscreen { position: fixed; top: 0px; left: 0px; border: none; margin: 0px auto; } .editormd-theme-dark { border-color: rgb(26, 26, 23); } .editormd-theme-dark .editormd-toolbar { background: rgb(26, 26, 23); border-color: rgb(26, 26, 23); } .editormd-theme-dark .editormd-menu > li > a { color: rgb(221, 225, 230); border-color: rgb(43, 40, 39); } .editormd-theme-dark .editormd-menu > li > a:hover, .editormd-theme-dark .editormd-menu > li > a.active { border-color: rgb(43, 40, 39); background: rgb(63, 63, 63); } .editormd-theme-dark .editormd-menu > li.divider { background: rgb(105, 112, 119); } .editormd-theme-dark .CodeMirror { border-right: 1px solid rgba(0, 0, 0, 0.1); } .editormd-theme-dark .editormd-dialog { font-family: Inter; background: rgb(44, 44, 44); color: rgb(244, 244, 244); box-shadow: rgba(0, 0, 0, 0.75) 0px 3px 15px 0px; } .editormd-theme-dark .editormd-dialog-header { border-bottom-color: rgb(68, 68, 68); } .editormd-theme-dark .editormd-dialog-header:hover { background: rgb(44, 44, 44); } .editormd-theme-dark .editormd-form { color: rgb(244, 244, 244); } .editormd-theme-dark .editormd-form input[type=“text”], .editormd-theme-dark .editormd-form input[type=“number”] { color: rgb(141, 141, 141); background: rgb(44, 44, 44); border-color: rgb(141, 141, 141); } .editormd-theme-dark .editormd-dialog-footer .editormd-btn.editormd-enter-btn { background: rgb(69, 121, 178); border-color: rgb(69, 121, 178); color: rgb(255, 255, 255); } .editormd-theme-dark .editormd-dialog-footer .editormd-btn.editormd-enter-btn:hover { background: rgb(87, 149, 217); border-color: rgb(87, 149, 217); } .editormd-theme-dark .editormd-form input[type=“submit”], .editormd-theme-dark .editormd-form .editormd-btn, .editormd-theme-dark .editormd-form button, .editormd-theme-dark .editormd-dialog-container input[type=“submit”], .editormd-theme-dark .editormd-dialog-container .editormd-btn, .editormd-theme-dark .editormd-dialog-container button, .editormd-theme-dark .editormd-dialog-footer input[type=“submit”], .editormd-theme-dark .editormd-dialog-footer .editormd-btn, .editormd-theme-dark .editormd-dialog-footer button { background: rgb(57, 57, 57); border-color: rgb(57, 57, 57); color: rgb(198, 198, 198); } .editormd-theme-dark .editormd-form input[type=“submit”]:hover, .editormd-theme-dark .editormd-form .editormd-btn:hover, .editormd-theme-dark .editormd-form button:hover, .editormd-theme-dark .editormd-dialog-container input[type=“submit”]:hover, .editormd-theme-dark .editormd-dialog-container .editormd-btn:hover, .editormd-theme-dark .editormd-dialog-container button:hover, .editormd-theme-dark .editormd-dialog-footer input[type=“submit”]:hover, .editormd-theme-dark .editormd-dialog-footer .editormd-btn:hover, .editormd-theme-dark .editormd-dialog-footer button:hover { background: rgb(141, 141, 141); border-color: rgb(141, 141, 141); } .editormd-theme-dark .editormd-file-input:hover input[type=“submit”] { background: rgb(141, 141, 141); border-color: rgb(141, 141, 141); } .editormd-theme-dark .editormd-dialog-title { font-weight: normal; } .editormd-theme-dark .editormd-tab-head { border-bottom: 1px solid rgb(68, 68, 68); } .editormd-theme-dark .editormd-tab-box { padding-top: 20px; padding-bottom: 0px; } .editormd-theme-dark .editormd-grid-table { border: none; } .editormd-theme-dark .editormd-tab-head li a { color: rgb(141, 141, 141); background: rgb(57, 57, 57); border-top: none; border-right: none; border-left: none; border-image: initial; border-bottom: 1px solid rgb(68, 68, 68); } .editormd-theme-dark .editormd-tab-head li a:hover { color: rgb(244, 244, 244); background: rgb(82, 81, 81); } .editormd-theme-dark .editormd-tab-head li.active a { color: rgb(244, 244, 244); background: rgb(82, 81, 81); border-bottom-color: rgb(68, 68, 68); } .editormd-theme-dark .editormd-grid-table-row a { border: none; } .editormd-theme-dark .editormd-grid-table-row a:hover { color: rgb(204, 204, 204); background-color: rgb(57, 57, 57); } .editormd-theme-dark .editormd-form input[type=“textarea”], .editormd-theme-dark .editormd-form textarea { color: rgb(141, 141, 141); background: rgb(44, 44, 44); border: 1px solid rgb(141, 141, 141); border-radius: 3px; padding: 8px; } .editormd-theme-dark .CodeMirror-activeline-background { background: rgba(50, 121, 198, 0.26); } .editormd-theme-dark .CodeMirror pre.CodeMirror-placeholder { color: rgb(160, 166, 172); } .editormd-theme-dark .editormd-code-toolbar { color: rgb(244, 244, 244); } .editormd-theme-dark .editormd-dialog-container select { padding: 6px 8px; width: 220px; color: rgb(255, 255, 255); border-color: rgb(141, 141, 141); appearance: none; background: url(”../images/chevron-down.svg”) calc(100% - 3px) 9px / 20px 15px no-repeat rgb(44, 44, 44); } .editormd-theme-dark .editormd-dialog-container select option { font-size: inherit; background: rgb(44, 44, 44); color: rgb(204, 204, 204); } .editormd-theme-dark .editormd-dialog-container .markdown-body { color: rgb(244, 244, 244); border: none; } @font-face { font-family: “IBM Plex Sans”; src: url(”../fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf”) format(“truetype”); font-weight: normal; font-style: normal; } @font-face { font-family: “IBM Plex Sans”; src: url(”../fonts/IBM_Plex_Sans/IBMPlexSans-Medium.ttf”) format(“truetype”); font-weight: 500; font-style: normal; } @font-face { font-family: “IBM Plex Sans”; src: url(”../fonts/IBM_Plex_Sans/IBMPlexSans-SemiBold.ttf”) format(“truetype”); font-weight: 600; font-style: normal; } @font-face { font-family: Inter; src: url(”../fonts/Inter/static/Inter-Regular.ttf”) format(“truetype”); font-weight: normal; font-style: normal; } @font-face { font-family: Consolas; src: url(”../fonts/Consolas-Font/CONSOLA.TTF”) format(“truetype”); font-weight: normal; font-style: normal; } img.sn-logo { height: 35px; margin-right: 2px; width: 35px; content: url(”../images/IBM/SN_grayscale_darkmode_tree.svg”); } span.home-title { pointer-events: none; overflow: hidden; white-space: nowrap; color: rgb(255, 255, 255); line-height: 100%; } .editormd-titlebar-section .status-text { position: absolute; left: 100%; white-space: nowrap; margin-left: 10px; } .editormd-dialog-container .dialog-warning { display: flex; gap: 0px 12px; color: rgb(141, 141, 141); margin-top: 10px; align-items: center; } .editormd-dialog-container .dialog-warning > span.warning-sign { height: 15px; width: 15px; background: rgb(141, 141, 141); mask-position: center center; mask-repeat: no-repeat; mask-size: 100% 100%; mask-image: url(”../images/warning.svg”); display: inline-block; } div.toolbar-dropdown-content { display: none; position: absolute; z-index: 11; background-color: rgb(28, 30, 31); width: max-content; max-width: 250px; color: rgba(204, 204, 204, 0.54); box-shadow: rgba(0, 0, 0, 0.5) 0px 6.68103px 6.68103px 0px; border-radius: 4px; } .editormd-menu > li.dropdown:hover div.toolbar-dropdown-content, .editormd-titlebar-dropdown:hover > div.toolbar-dropdown-content { display: block; } div.toolbar-dropdown-content > a { color: rgb(204, 204, 204); padding: 8px 16px; text-decoration: none; display: block; } div.toolbar-dropdown-content > a:first-of-type { border-top-left-radius: 4px; border-top-right-radius: 4px; } div.toolbar-dropdown-content > a:last-of-type { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } div.toolbar-dropdown-content > a:hover { background-color: rgb(57, 57, 57); } div.toolbar-dropdown-content > a > i.fa > span.icon-text { font-family: Inter; font-size: 0.85rem; } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: image/gif Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/editormd/images/loading@2x.gif GIF89a@@�����4��������d��\�����<����������\��L��4��������������,��t��|��L��d��d�����������D�����������������4��t�����l��\��$�����d��L��4��������L��l����������<��l��d�����$�����\��T��4�����������,��|��T��d��l�����������D��������������4��|�����l��������������!�NETSCAPE2.0!� S,@@��S�������E4������.�.�����.>����6����D/K�����8#39=��/BB!���)+;+I��D�Θ�Ç-���˃8��ʆ����I��8څ(�/E�ԅJ�+�8��.�m�q��ip� E�y��4� a� �eTPh��B=��p��AN�9C�b�V�lt��nΜ(PB�c�%Q���� �9��k2�<��q���J�B��”+썔D;����’��˺ u��T�“҇ ��a�q��L��/bIEqIp�w؈2 i�׃���� �$%=k^�Kj��{�� ���:�چ4v� �P ,a_ꍂ��%� �H��N ����eW�}���R�.�$�$N5��E���Eds�5�(�1>!�,��<���4�dDi�����D�>.�c�'=q�EN��X6�#�5�@%����ZBiѐ_I� ���'��E�hg O�P�|�9H��:J!�&IAġ�(P�p��!�.8��2�Y�B:@��|���r:g*�B��e���n����$Z���.*���۫���*�E�g�x�ڪ*_��۩��Z"����HlN ��V)�������j��C=�Q��*"������ꈮ��gl�fn�j��d��eS�D8�����������C�h[J�f�Į[��C��dk�SP���ڊ�� �jf������Z��V����84�oM�Zk�P��ī0�a�"��;[��(��� �j1ŨZ�K�Ȫ������)�(?Rt�,Ҫ���l� �:����=H���-��[��Ў��.�}������8��)�CBD�u�!� Y,@@�����<�����\�����d��4��������L�������������t��d��L��L�����$��d��t��������D�����l���������D�����l��4�����\����������������d��l��D�����T�������|��|��T��\��,������������<��������d��<��������L�������������|��l��L��T�����$��|�����������l����D�����������������d�������Y�������O117������&�U����W�/������B��� N/#�����@?.P���#�1�����F �T��U��1���ÄO���ʂ@��N��TX� A�ڄ'��O���/� 6ꅼ1����Y��0G�߽D�b��Pz��D�����Bo8��L�cp%��AT�k����L�;)� =ʨ$0h(��^C>jD��� �+N��\�-ƻ�W���be z��!BJD/�\Y{�D�A���������Y�4@�, Dkժ͚����n#Q���XWCJ"���� ��[R�����Fx�ʑ�D���h�������1]����<)ҶmDs�b�����($�Frb�鑲\u.l��b�s+l\��#�!�&��y�D#������HDGi����B 䂞m��(”�n��d ����6�� E�n��snlyC���GعR�o��p��������D[��9�^��?�M��d��J�6���@���Th�!P����Ȁ$�h”��\b���‘�C�h�)�8�p z(��(Ip�9RC�.&���w(1��F��X$��Z�e�RȀ�)f�3H0@�h��� ���q����1! )�a7W���pc�p��3B,�Ƀ �2���O< ���<��Dc�8��l����b�(~>pE�y�x�d�8��,��~�0�#N�*hTm�(!=$Qk����C�rE[h�I�&#tP@U ��~.���'H�gJ�%P� 4�A�����8�� 硨�����7��*�TsYqt�����ÿ����H$Z�� ���a%��҃���P�#PT�,)����I��f���t�D83��<���Y2�"�) � ;���܀� �L^L��L c�;�}&�ϳa-�8+�ȡ�e�gL���5���U���Hۈ��� !�Xބ}ヨ�o�(� ��]2" 8PC)�iuբ�B������X~� RT x3�!� P,@@��������<�����l��d�����<��������T����������L�����d�����4��������L��t�����D��\��,��|��������D��d�����T�����������������L��������4��t��l�������<�����l��������\��$��������L�����l�����4��������|�����l��,�����D��d�����\��������������T�����|�������P�������733*������ J$� ����K�JJ����������4K%?G�K����!)J���G%�%����
J@�N���4�3��ß�ƃ7�)��͂!��K̅���N@��!ޅ?%�э�����%���%���2b�6'��R�j��HF�BBGZ5,�05P�ThSG�E( �E3f�Fd��;I���݈ �cd�͎��h+܌q�A9��b �h�0� � �����cI� Kn���G4qaf9��K�����#$b.����)���!�%�(�j�� ’�,��v���~D���7�-�Ĥ’���Q�7��1�[}��� ��B 4ʎW���R�“6���t+�T0�r������j��~w���F�؛���ۯ�n��ϻX�/�������HӀ� 7���� 6x�[� ��V8!b!�φ� �@ �(��K�“OC’n�M��b�h��+��Ë/�P�(���E�8�Y �� �?$�� �3X��5(�S x�7������ "b��0�P#����@G�"%f#�E$%eJS�!�^&w��K�/�2��lN�?\�%����gώ��(E���$�>jB��ΚF�0�7���K9�YY��5�δBJ��F@�쒛"x#��UR�5��(��m�����ߏhG��\��p#&�<���Q�9���VX!�|��;��M�H�k=��̀(b�(���T7��+Z��D�V\��� Ʉ��i$�����(���M&䰤$��4�0P�I�t�����@@�YF@�$#����A�l7W�V�(#p���jk�5�oF��Q���0H I���lk�����7dI��o����CPI4oAtS����ՌT� �-�R����8TP� #P����k�8�k+�05���,r�� ��0�(l�!#lH'����S��@��0�3x���pH��m���JL/܃[>;]����s/*�"L��H�)�ú �#ekm �0�ʒDK|-H�� ��t�r���%+�I��8)O�0C�#!� b,@@�����T��������\��4�����l����������t��������L�����$�����L��d�����<��t���������l�����l�����,�����\�������t��������,��L�����D���������d�����d��D��������$��������l��4��|������\�����4�����t����������|��������\�����$��T��d�����<��|���������l�����t�����������|��������,��T�����������d����������b������� ZZ ������ &�&A����Y&U�L������U����AZ&YW���&��“�E���W�&E����E�����A����ǵ����ʃ”�&ZɅ����WZ��“��ǟ]д�L�����݃�ą��&�肺D{eh����,4���s�L}z�߶�P;,”-���f-#!c� �(m��hY�] Q�S����)h��5o�8�����|4�PL�,Y�di��Z ���kW��~�Y�� �eݭ�� E>���wr������D�����,Gw�,�b�����H]��z�/;��ԩ���x�������XpПv�h�U���6� |�\^� � ����N�U����qSL��TQ���|Z�“z4ֈy��8�9���&“�j,6���X��>y$ �qFKR0�l�$p��R�Y.��U:“B,� � in$��I� wn�H4�)%6��8$,�‘�KQ�A���:tT��L���v B�< �0���"����fڹ����' O�C�����0���E�e��� f�QA$�+�M�w��Z@���y����: �%!1�#D1�ND��3RC��֠�u�0.6H�������6Ћ����/Ę;��rp���@��0�������N�t��^\B� +���%�Ё!�E˃�� �%��#$1W�:/��@�L%C�!���!B��I �;��8E5��P[- ��Ҁ�&�P�!�� E�<�“8;0ʈ������,�$���b(�H?p!��5n�D�6�B�����D� ���J(�wF�!� J,@@��������<�����l��D�����d����������4��T��������������l��,��������t�����T�����L��l�����4��|�����������d�����$�����������t��4�����\����������<�����L��l��������<��\��������,��������|��T�����L��|�����<��l�����$��������t����������J������� II ������ �3����;4�������4����3I;A���������A����������3����ǵ����ʃ�IɅ����AI����ǟ7д������݃�ą����nD{eh����,4�مs�L}z7�߶�P;,”-���f-#!c� �(m��h;��Q�S����)h�G5o��8���� |��Pɍ; �h��2��?>}�7H�߯�� �x}4$��EW�|�7�4�w {�E�}Ju�u�ݑ7���6݉(�tΑ��B��ID��[9$���D% 1��B��( D�0>���2��� ��?��$ZiEi��,���8��#� 5�i$E��d$"��?f��!34p� $�BIkfrO6>���*aÝ:���;APB��-0�?3��<Ѐ�g2��!0tЁ’�(�”��!���qf���� �sA��“X�h�����E$���8 �&B��p��檮�6���&�X��� +�hP�?������CЋ�k�H���¯�R��f�� w���<�o�=��n�B���������l�<�)� w��!+�<�#�t3��R�l�?��f.�������.��j�QF��J���* �uA#�0�5�06�fG�s!DPm�̒��CHp+�َe0�k���܆�����RAԍ5���sF�!� U,@@��������<�����T�����l��4����������L�����������l��l��L�����L�����t���������4��,�����������\�����|�����|������D��d�����D�����$��T��������|��T���������������������D�����d�����l��4�������T��������|��l��\�����L�����t������4��,��������|�������������������U������� SS ������ �>����OQ�������Q����>SON������F���N�F����F�����>����ǵ����ʃ�SɅ����NS����ǟRд������݃�ą���肤D{eh����,4�مs�L}z�߶�P;,"-���f-#!c� �(m��hO�y���֯(����)h��(y��q�%j(���*R����g2�@SP&�n�cK�D�hy�Q���S*&����(tɘ�p��f5�h��D�� !����� ��ZB�g��/T��L��r�!wVj�[�D�:��A�Be�H����”��z��J�gNp l a]c�R""���:�A���0H� ;kS{���x�& �+.�"��vC� ��@H��ۀ�����:p���s����h�/21��D����:|��'l�r��$*<�!,�j�rƅ��D�'d��$FM6:�!� \,@@�����T��������T��4�����������l����l��L�����������4�����,��L�����l��������d�����,�����|������\�����d��D�����������$��|�����D�����<��t��$��l��L�����<��T���������L��������\��4�����������l�������������,��L�����|��������d�����,��|������d�����d�����������������t��T�����<�������\������� ZZ ������ 1�1>����V1K�H������K����Y������&�A���>N� ���1��A�ZU���������ė̅ 5�.ˆV�ƃUZ�1&مY�5��ŇH����>�N��Õ�2a��u�t%\A��fU��p�w8"ڋq���* �p�F{ƪ��ҟ�A#� d* !J��j����š,'�:G&|4�� X\��0� V� �BQP���<�21��j�9B'F�&U,1C�u��攏]#A���:���p@Vb�#>t�h�E�*��x��Pĥ4&HG,��J�2�F�FȨ�� � Z(��{�I�+\��M畆�u��]&X���J�\\���%|��'�DžJ8�A1��)Yq� +�*�'�"b� �����z�G|D��{��W�+HR�2E�Ξ0 �앵[̡��NQ�GP�q�[k�K��[�� W\��^�j�1@{��L�ƸsX����8�����pÐ��oc~�ȥ�{E�������s�%_!.)Hp|.�:�� 4(��¤4�� �x]7�پD � .�T۫�K����R��Ł’> 1���.�!� K,@@��������<�����d�����l��<��������T����������������d��l��\�����������L��T��4�����t��L��T��������,��������D�����d��D��������������l��|�����\����������D��������<��������\�����$��d��t��l�����������T�����|�����,�����l����������������K�������’: �������J�����=���������&:%6�����D@!���E//8�����7!!D��1/����ą6�ع˃ ��5ʆ�ՃDF!���ۃG���Ç(��9� :�/:��3D۱d� ����C�Lʁ� ���< �A����AI��R� ����l�H��nb�Ch�À�a+7�t"����x��{�v�Pkbؐi +���!d���9a�F#>T��[(@�� CK�����[Ps.Q���/��.a��k �?���!D!S,��pf� �K�� L���D��I�f;�� �<�!@��f'Y�r��M\�ł�Ðܠr�Hbt���1;6��o!�%˅ Cp� .{�HƄ雝� 8��ΈX�ӎ$����-2�o�bD� NM�����5⒠P��2���7�P !� ,@@�����<��������T��l��4����������������l��L�����l�����$�����L�����t����������|��L�����d��|��\�����d��4��������L����������������d����t�����t��\��|�������T���������<��������\��<����������������l��T�����,�����T����������L�����|�����d��<��������T�����������l�����t��|����������\�������PP������FJJA3����W�3AZ����W�33���’Y$�+J���?9��$8”���3���<��A���U�ԙ����:��‘х ��R�����$�6?߅Y��L������ �PO@�BWR]RGH� w�Eĸa �����7&���ڸQe4�_s” E�’�!t I9�Q�B+hF�i+� ’�(D#�@�!,����r�2.$X�����S =��� h�@Д1�� -�V�d��uUL�E[HHٲL��C�EC”!“�AR�蝌��� ��(��HR�h������B�˗(���cH$LI��&4����)����W���#QLI�ewP�^2��&�8u$%���p�D5x�X��C���SW��K��!,��E����PA��M$Yx�DBO�7�T<!)^�Ӈ �X�>�h�&6�T��.��Tt�8������d h��7��s�%���� I�F~��>RQ�9�(�wL.i�lD��>T�!2���“��曂tȉ�����Q�DU��(9����.���I� �BB������L�~s"����j�u�p{Fj��������� ��A�JXL�xj�ڪ�>�‘��tJQ�t�!qj~�!�Iq�IX�C��Hq�^�6D x�$��ЮcŻ�F!��R�ݩf���& ���v+h>Т��<\��0�x:aA��v��T��ư����Xј��Wt��� b�n�Q�c)K�۩O$��;��z����m�c�V�+�wBsQŴ%�D������d,B�T�� �����L?�c�K�����L96*��D�R].!@Wk��9�"E�V�lH�&�-��z��QXѵ#W����y� �4e_Nʔ�k�����yH�S !� \,@@�����D��������4��T�������������d�����L��l��,����������,�����|�����L�����4��$��l��$��������D��d�����l�����\������������������T�����<��������l��L��|����t�����T��|��$���������4��d�������d�����l��,��������������T�����<��t��������d�����������������\�����������T����|��$�������\�������HHD�������'����Z�C5������G���#B6 !�����?T��!� �4���+�C�����R��CDžI�>��΄?пO��Ƈ!<�Y>>?݅ 6�L���5���!�hFH�=B4����?BV�]�Ƞ5A”����Г��T�b�l�2��H��D#-U�( ��,�X�!�H�r�v,�A�Y(A��c%S�������H h�’ :p-DA��AFh9B�� ���j�J”�,��(N �’$��J2;�C�� bC_7F*�GÇ���n�! C��e��A�H*�ЏBT8Hժ���/X'�p����U7�mH���Ɨ|��$E��9������|���-���“�_kJ��a����cuMPg� ��g�j-T�MK���C)Z���2�*"��*'��6���>��;OĹ"�Q�9H%�j��� r�� f ��l���0V�#�Jh���P�(�I��2ai!qV �D���{l��0q��S$�$�“n��l �#��:3�ʈ_�9B2��#���E:e������!�0m!E��o�(n���ӤD���-��D̺K��V�Es 6s��%,���V�s�\�I��[hKcMr�Q��J�[�“�7��.�Z)u!a���ˎ<���‘3�p�F��t��6�R�w�����L��E^��5��J߇k �(Z�#PDQ��; ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/public/css/custom.css?version=3.3.3 @charset “utf-8”; #test-editormd { width: 100% !important; } summary { cursor: pointer; display: list-item; margin-bottom: 10px; } details { margin-bottom: 16px; margin-left: 30px; color: rgb(160, 166, 172); } details br:nth-of-type(2) { display: none; } details br:nth-of-type(3) { display: none; } fieldset { border: none; margin-bottom: -20px; } fieldset > input { margin-top: 10px; } div.editormd-preview { display: flex; flex-direction: column; —preview-container-background: #fff; —background-1: #DDDDDD; —open-toc-button: #333333; —toolbar-icons: #333333; —toolbar-icons-hover: #707070; —progress-bar-bg: #E8E8E8; —progress-bar-bg-filled: #4579B2; —table-of-contents-bg: #F3F3F3; —table-of-contents-inactive: #697077; —table-of-contents-inactive-hover: #4579B2; —table-of-contents-active: #4579B2; —footer-button-hover: #3e6ca0; —copy-multiple-lines-button-bg: #f9f9f9; —copy-popup-bg: #333; —copy-popup-text: #FFFFFF; —code-block-outline: rgba(141, 141, 141, 0.5); —code-block-bg: #F4F4F4; —code-block-linenums-bg: #C6C6C6; —code-block-linenums: #262626; } div.editormd-preview div.temp-page-wrapper { padding: 0px 20px; } div.editormd-preview > div.editormd-preview-container, div.editormd-preview > div.editormd-preview-active { padding: 0px !important; } div.editormd-preview-theme-dark { —preview-container-background: #222222; —background-1: #3C3C3C; —open-toc-button: #A4A4A4; —toolbar-icons: #FFFFFF; —toolbar-icons-hover: #A4A4A4; —progress-bar-bg: #333333; —progress-bar-bg-filled: #1177BB; —table-of-contents-bg: #333333; —table-of-contents-inactive: #858585; —table-of-contents-inactive-hover: #6DB2FE; —table-of-contents-active: #1177BB; —footer-button-hover: #0f6ba8; —copy-multiple-lines-button-bg: #333333; —copy-popup-bg: #383838; —copy-popup-text: #FFFFFF; —code-block-outline: rgba(141, 141, 141, 0.5); —code-block-bg: #2C2C2C; —code-block-linenums-bg: #262626; —code-block-linenums: #C6C6C6; } .editormd-preview-theme-dark .editormd-preview-container { color: rgb(255, 255, 255); background-color: rgb(34, 34, 34); } .editormd-preview-theme-dark .markdown-body h1, .editormd-preview-theme-dark .markdown-body h2, .editormd-preview-theme-dark .markdown-body hr, .editormd-theme-dark .editormd-dialog-container .markdown-body hr { border-color: rgb(56, 56, 56); } .editormd-preview-theme-dark .markdown-body h1 { color: rgb(255, 255, 255); } .editormd-preview-theme-dark .markdown-body h2, .editormd-preview-theme-dark .markdown-body h3, .editormd-preview-theme-dark .markdown-body h4, .editormd-preview-theme-dark .markdown-body h5, .editormd-preview-theme-dark .markdown-body h6 { color: rgb(109, 178, 254); } .editormd-preview-theme-dark .markdown-body h6 { color: rgb(87, 142, 203); } .editormd-preview-theme-dark .markdown-body table tr, .editormd-theme-dark .editormd-dialog-container .markdown-body table tr { background-color: rgb(34, 34, 34); } .editormd-preview-theme-dark .markdown-body thead tr, .editormd-theme-dark .editormd-dialog-container .markdown-body thead tr { background-color: rgb(56, 56, 56); } .editormd-preview-theme-dark .markdown-body table tr:nth-child(2n), .editormd-theme-dark .editormd-dialog-container .markdown-body table tr:nth-child(2n) { background-color: rgb(56, 56, 56); } .editormd-preview-theme-dark .editormd-preview-container blockquote, .editormd-theme-dark .editormd-dialog-container .markdown-body blockquote { color: rgb(178, 178, 178); border-color: rgb(56, 56, 56); padding: 0px 0px 0px 20px; } .editormd-preview-theme-dark .editormd-preview-container code { color: rgb(255, 153, 0); border: 1px solid rgb(100, 100, 100); padding: 3px; border-radius: 3px; background: transparent; } .editormd-preview-theme-dark pre .pln { color: rgb(137, 222, 255); } .editormd-preview-theme-dark .str { color: rgb(216, 142, 115); } .editormd-preview-theme-dark .kwd { color: rgb(59, 157, 219); } .editormd-preview-theme-dark .com { color: rgb(91, 155, 76); } .editormd-preview-theme-dark .typ { color: rgb(208, 130, 195); } .editormd-preview-theme-dark .lit { color: rgb(218, 219, 163); } .editormd-preview-theme-dark .pun, .editormd-preview-theme-dark .opn, .editormd-preview-theme-dark .clo { color: rgb(219, 242, 255); } .editormd-preview-theme-dark .tag { color: rgb(255, 153, 0); } .editormd-preview-theme-dark .atn { color: rgb(108, 149, 245); } .editormd-preview-theme-dark .atv { color: rgb(234, 102, 219); } .editormd-preview-theme-dark .dec, .editormd-preview-theme-dark .var { color: rgb(0, 202, 174); } .editormd-preview-theme-dark .fun { color: rgb(0, 226, 239); } .editormd-preview-theme-dark .editormd-preview-container .fa-emoji { color: rgb(143, 129, 217); } .editormd-theme-dark .editormd-dialog i.question-circle-outline { display: block; height: 20px; width: 20px; margin-left: 16px; mask-position: center center; mask-repeat: no-repeat; mask-size: 100% 100%; background-color: rgb(141, 141, 141); mask-image: url(”../images/help-circle-outline.svg”); } .editormd-theme-dark .editormd-form input[type=“text”], .editormd-theme-dark .editormd-form input[type=“number”] { color: rgb(198, 198, 198); } div.md-header { left: 0px; width: 100%; background: var(—background-1); font-size: 16px; position: sticky; top: 0px; } .editormd-preview-theme-dark div.sticky-header { color: rgb(255, 255, 255); background-color: rgb(34, 34, 34); } div.sticky-header { width: 100%; padding-left: 20px; padding-bottom: 0px; font-size: 16px; position: sticky; top: 0px; font-family: “Microsoft YaHei”, Helvetica, “Meiryo UI”, “Malgun Gothic”, “Segoe UI”, “Trebuchet MS”, Monaco, monospace, Tahoma, STXihei, 华文细黑, STHeiti, “Helvetica Neue”, “Droid Sans”, “wenquanyi micro hei”, FreeSans, Arimo, Arial, SimSun, 宋体, Heiti, 黑体, sans-serif; } .textarea-markdown { height: 250px; width: 500px; } div.toolbar { width: 100%; height: 32px; display: flex; flex-direction: row; align-items: center; justify-content: space-between; } div.toolbar-dropdown-content > a.disabled { color: rgb(141, 141, 141); pointer-events: none; cursor: default; } button.toc { display: block; background: none; padding: 0px; border: none; margin: 0px 20px; color: var(—open-toc-button); font-size: 13px; font-weight: lighter; } button.toc p { margin: 0px; padding: 0px; text-align: left; display: inline; } div.tools { display: flex; flex-direction: row; align-items: center; width: max-content; height: 100%; gap: 0px 6px; margin: 0px 12px; } button.tool-icon { width: 30px; height: 30px; background: none; border: none; padding: 0px; color: var(—toolbar-icons); font-size: 13px !important; } #togglePreviewTheme { width: 45px; } button.tool-icon > sup { font-size: 13px; vertical-align: sub; } button.tool-icon > i { font-size: 13px; } button.tool-icon:hover:not(:disabled) { color: var(—toolbar-icons-hover); } nav.instruction-progress-bar { height: 6px; width: 100%; position: relative; background: var(—progress-bar-bg); overflow-x: hidden; } ul.pagination { width: 100%; padding: 0px; height: 6px; display: flex; align-items: flex-start; justify-content: space-between; z-index: 5; position: absolute; top: 0px; left: 0px; } div.instruction-progress-fill { z-index: 4; height: 100%; background: var(—progress-bar-bg-filled); position: absolute; top: 0px; left: 0px; transition: 0.5s; } li.page-item { flex-grow: 1; height: 100%; cursor: pointer; transition: 0.7s; } li.page-divider { width: 2px; height: 100%; } li.page-divider:last-child { width: 0px; display: none; } div.table-of-contents { z-index: 99; position: absolute; bottom: 0px; left: 0px; height: calc(100% - 38px); width: 50%; background-color: var(—table-of-contents-bg); overflow-y: auto; display: flex; flex-direction: column; justify-content: flex-start; transform: translate3d(-100%, 0px, 0px); visibility: visible; transition: 0.5s; } div.opened.table-of-contents { transform: translate3d(0px, 0px, 0px); visibility: visible; } button.chapter { margin: 15px 25px; border: none; background: none; color: var(—table-of-contents-inactive); width: calc(100% - 50px); display: flex; flex-direction: row; transition: 0.3s; } button.chapter:first-child { margin-top: 30px; } button.chapter:last-child { margin-bottom: 30px; } button.chapter:hover > span.chapter-title { color: var(—table-of-contents-inactive-hover); } button.chapter:hover > span.chapter-num { border: 1px solid var(—table-of-contents-inactive-hover); color: var(—table-of-contents-inactive-hover); } button.chapter.active { color: var(—table-of-contents-active); } button.chapter.active > span.chapter-num { border: 1px solid var(—table-of-contents-active); background-color: var(—table-of-contents-active); color: rgb(255, 255, 255); } span.chapter-num { display: block; border-radius: 50%; width: 2em; height: 2em; text-align: center; line-height: calc(2em - 2px); border: 1px solid rgb(105, 112, 119); transition: 0.3s; } span.chapter-title { display: inline-block; padding-left: 15px; width: calc(100% - 2em); margin-top: 0.2em; text-align: left; transition: 0.3s; } div.pages { max-height: calc(100% - 38px); position: relative; padding: 0px 20px; } div.page-footer { width: 100%; display: flex; justify-content: space-between; margin: 30px 0px 10px; padding-bottom: 20px; flex-wrap: wrap; } div.page-footer > button { background-color: var(—progress-bar-bg-filled); color: rgb(255, 255, 255); border-radius: 3px; margin: 0px; padding: 7px 20px; border: none; text-align: center; font-weight: lighter; transition: 0.3s; } div.page-footer > button:hover:not(:disabled) { background-color: var(—footer-button-hover); } div.page-footer > button.hidden { width: 0px; height: 0px; padding: 0px; margin: 0px; border: 0px; pointer-events: none; } .diff-container { height: 300px; white-space: pre-wrap; } .editormd-preview-container pre.prettyprint, .editormd-html-preview pre.prettyprint { position: relative; overflow: visible; display: flex; border: 1px solid var(—code-block-outline); background-color: var(—code-block-bg); border-radius: 0px; padding: 0px; } .markdown-body .highlight pre, .markdown-body pre { font-size: 100%; } .editormd-preview-theme-dark .markdown-body pre, .editormd-theme-dark .editormd-dialog-container .markdown-body pre { background: rgb(28, 30, 31); color: rgb(204, 204, 204); } .editormd-preview::-webkit-scrollbar { width: 0px; background: transparent; overflow: hidden scroll; } .editormd-preview-theme-dark::-webkit-scrollbar { width: 0px; background: transparent; overflow: hidden scroll; } .editormd-preview-container ol.linenums, .editormd-html-preview ol.linenums { overflow-x: auto; flex: 1 1 0%; padding: 5px 15px; line-height: 1.75em; } .editormd-preview-container ol.linenums li, .editormd-html-preview ol.linenums li { list-style-type: ""; } .editormd-preview-container ol.linenums li code, .editormd-html-preview ol.linenums li code { font-size: inherit; } div.markdown-body.editormd-preview-container { height: 100%; } div.editormd-preview > div.editormd-preview-container { padding: 30px 15px 0px !important; } button.action-code-block { border: none; margin: 0px; line-height: 100%; font-size: 13px; position: absolute; bottom: 10px; transition: 0.3s; } button.plugin { background-color: var(—progress-bar-bg-filled); color: rgb(255, 255, 255); border-radius: 3px; margin: 0px; padding: 3px 10px; border: none; text-align: center; font-weight: lighter; box-sizing: border-box; } span.plugin-text { padding-left: 2px; display: inline; } button.action-code-block.multiple-lines { padding: 9px; background-color: var(—copy-multiple-lines-button-bg); color: var(—toolbar-icons); border-radius: 50%; box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 20px; } button.action-code-block.multiple-lines:hover:not(:disabled) { color: var(—toolbar-icons-hover); opacity: 0.6; } button.action-code-block.one-line { background-color: transparent; padding: 0px; color: var(—toolbar-icons); font-size: inherit; } button.action-code-block.one-line:hover:not(:disabled) { color: var(—toolbar-icons-hover); } .editormd-preview-container pre.prettyprint ol.formatted-line-numbers { list-style-type: none; display: flex; flex-flow: column; border-right: 1px solid var(—code-block-outline); background-color: var(—code-block-linenums-bg); padding: 5px 20px; margin-bottom: 0px; line-height: 1.75em; } .editormd-preview-container pre.prettyprint ol.formatted-line-numbers > li { color: var(—code-block-linenums); text-align: right; } button.action-code-block > span.popuptext { width: auto; background-color: var(—copy-popup-bg); color: var(—copy-popup-text); border-radius: 3px; padding: 6px; position: absolute; bottom: calc(100% + 10px); z-index: 2; text-align: center; font-size: 12px; left: 50%; transform: translateX(-50%); pointer-events: none; opacity: 0; transition: 0.3s; } button.action-code-block > span.popuptext::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: var(—copy-popup-bg) transparent transparent transparent; } button.action-code-block > span.popuptext.show { opacity: 0.5; } button.action-code-block.copy-code-block { right: 15px; } button.action-code-block.execute-code-block { right: 40px; } button.action-code-block.execute-code-block.multiple-lines { right: 50px; } .close:not(:disabled):not(.disabled):hover { background-color: transparent; } .dialog-padding { padding: 7px 0px 0px 5px !important; } @media screen and (max-width: 400px) { button.toc p { display: none; } } .titlebar-selected-dropdown { font-family: Inter; background-color: rgb(44, 44, 44); color: rgb(160, 166, 172); box-shadow: rgba(0, 0, 0, 0.75) 0px 3px 15px 0px; padding: 20px 28px; position: absolute; z-index: 12; border-radius: 4px; display: none; left: 50%; transform: translateX(-50%); margin-top: 10px; } table.titlebar-dropdown-table { width: 300px; } table.titlebar-dropdown-table.headings { border-bottom: 2px solid rgb(68, 68, 68); font-size: 0.8rem; } table.titlebar-dropdown-table.headings tr { display: flex; justify-content: space-between; } table.titlebar-dropdown-table.headings th { font-weight: normal; padding-bottom: 12px; line-height: 100%; display: flex; align-items: center; } ul.titlebar-dropdown-list { list-style-type: none; margin: 0px; padding-top: 7px; max-height: 157px; overflow: hidden auto; } ul.titlebar-dropdown-list > li > button { background: none; border: none; margin: 0px; padding: 0px; display: flex; align-items: center; width: 100%; } ul.titlebar-dropdown-list > li > button:hover { background: rgb(57, 57, 57); } ul.titlebar-dropdown-list > li > button.version { justify-content: space-between; padding: 7px 5px; color: rgb(221, 225, 230); } ul.titlebar-dropdown-list > li > button.version span.status-pill { padding: 2px 8px; border: 1px solid rgb(130, 175, 255); border-radius: 4px; color: rgb(130, 175, 255); font-size: 0.75rem; width: 80px; display: inline-block; text-align: center; } ul.titlebar-dropdown-list > li > button.version span.status-pill.published { border-color: rgb(114, 202, 137); color: rgb(114, 202, 137); } ul.titlebar-dropdown-list > li > button.version span.status-pill.latest-draft { border-color: rgb(213, 214, 142); color: rgb(213, 214, 142); } ul.titlebar-dropdown-list > li > button.version span.status-pill.failed { border-color: rgb(205, 100, 100); color: rgb(205, 100, 100); } ul.titlebar-dropdown-list > li > button.version span.status-pill.publishing { border-color: rgb(250, 120, 67); color: rgb(250, 120, 67); } ul.titlebar-dropdown-list > li > button.file { padding: 5px; } ul.titlebar-dropdown-list > li > button.file.current { background: rgb(34, 34, 34); } ul.titlebar-dropdown-list > li > button.file div.file-info { margin-left: 16px; } ul.titlebar-dropdown-list > li > button.file p { text-align: left; } ul.titlebar-dropdown-list > li > button.file p.title { color: rgb(221, 225, 230); margin-bottom: 3px; } ul.titlebar-dropdown-list > li > button.file p.properties { color: rgb(160, 166, 172); text-transform: uppercase; font-size: 0.7rem; margin: 0px; } ul.titlebar-dropdown-list > li > button.file span.file-icon { height: 20px; width: 20px; mask-position: center center; mask-repeat: no-repeat; mask-size: 100% 100%; background-color: rgb(198, 198, 198); mask-image: url(”../images/file-icon.svg”); display: inline-block; vertical-align: middle; } ul.titlebar-dropdown-list > li > button.version .version-info { display: flex; flex-flow: column; gap: 3px 0px; align-items: flex-start; text-align: left; margin-right: 20px; flex: 1 1 0%; } ul.titlebar-dropdown-list > li > button.version .version-info > span.version-tag { color: rgb(160, 166, 172); font-size: 0.75rem; } .titlebar-selected-dropdown div.manage-file-buttons input[type=“file”] { display: none; } .titlebar-selected-dropdown .manage-file { border: 1px solid rgb(244, 244, 244); border-radius: 3.65px; background: none; color: rgb(244, 244, 244); padding: 4px 10px; display: flex; align-items: center; cursor: pointer; margin: 0px; } .titlebar-selected-dropdown div.manage-file-buttons { display: flex; gap: 0px 8px; } .pull-right > .toolbar-dropdown-content { right: 0px; } #loading { background-color: rgba(192, 192, 192, 0.5); } #dir-alert > button, #publish-alert > button { background-color: transparent; color: inherit; } .drop-zone { width: 150px; margin-bottom: 7px; height: 150px; padding: 25px; display: flex; align-items: center; justify-content: center; text-align: center; font-family: Quicksand, sans-serif; font-weight: 500; font-size: 20px; cursor: pointer; color: rgb(204, 204, 204); border: 4px dashed rgb(0, 149, 120); border-radius: 10px; } .drop-zone—over { border-style: solid; } .drop-zone__input { display: none; } .drop-zone__thumb { width: 100%; height: 100%; border-radius: 10px; overflow: hidden; background-color: rgb(204, 204, 204); background-size: cover; position: relative; } .drop-zone__thumb::after { content: attr(data-label); position: absolute; bottom: 0px; left: 0px; width: 100%; padding: 5px 0px; color: rgb(255, 255, 255); background: rgba(0, 0, 0, 0.75); font-size: 14px; text-align: center; } #file-library { overflow: auto; gap: 10px; height: 255px; } #file-library-optional { gap: 100px; } .custom-switch .custom-control-label::after { top: 2px !important; } .custom-control-label::before { top: 0px !important; } .custom-control { min-height: auto !important; } .file-container { position: relative; cursor: pointer; border-radius: 5px; } .custom-control, .custom-control-input { z-index: auto !important; height: 100% !important; } #file-library-modify-files { height: auto; border-bottom: 2px solid rgb(68, 68, 68); } #file-library-modify-files div.left, #file-library-modify-files div.right { gap: 10px; overflow: auto; white-space: nowrap; } .file-library-image, .file-library-file-icon { width: 110px; height: 110px; -webkit-user-drag: none; user-select: none; } .file-library-image { object-fit: cover; border-radius: 5px; } .file-library-file-icon { display: flex; justify-content: center; align-items: center; font-size: 84px; text-align: center; } #external-image-preview { border-radius: 5px; object-fit: cover; -webkit-user-drag: none; user-select: none; } #external-image-preview-container { width: 200px; height: 200px; text-align: center; } .editormd-dialog button { min-width: auto; } #file-upload-container { width: 20%; } .height-500 { height: 500px; } .size-28-28 { height: 28px !important; width: 28px !important; } .right-5 { right: 5%; } button.action-buton { background: rgb(69, 121, 178) !important; border-color: rgb(69, 121, 178) !important; color: rgb(255, 255, 255) !important; } button.action-buton:hover { background: rgb(87, 149, 217) !important; border-color: rgb(87, 149, 217) !important; } button.cancel-buton { background: rgb(57, 57, 57) !important; border-color: rgb(57, 57, 57) !important; color: rgb(198, 198, 198) !important; } .editormd-dialog.editormd-image-plugin > .editormd-dialog-container > .editormd-dialog-footer { padding-top: 0px; } .editormd-dialog.editormd-info-dialog > .editormd-dialog-container { height: 90%; } #published-instructions-deprecated-container { height: 90%; overflow-y: scroll; overflow-wrap: break-word; } #published-instructions-deprecated-container hr { border-color: rgb(56, 56, 56); } #file-library-container { width: 80%; border: 2px solid rgb(68, 68, 68); border-radius: 10px; } #external-image-container { border: 2px solid rgb(68, 68, 68); border-radius: 10px; } #image-title-container { width: 35%; } .file-library-main-container { height: 440px; } #file-library-top-container { height: auto; gap: 10px; } .currentDir, #fileCosPathContainer { background-color: rgb(51, 51, 51); border: 2px solid rgb(68, 68, 68); border-radius: 10px; width: 90%; } #fileCosPathContainer { width: 80%; background-color: rgb(38, 38, 38); opacity: 0.8; } #fileCosPathContainer p { width: 95%; white-space: nowrap; } .custom-tooltip { position: relative; } .custom-tooltip .tooltip-container { position: absolute; top: 0px; left: 50%; } .custom-tooltip .tooltip-container .tooltip-text { visibility: hidden; opacity: 0; position: fixed; transform: translate(-50%, -100%); margin-top: -10px; min-width: 140px; background-color: rgb(85, 85, 85); color: rgb(255, 255, 255); text-align: center; border-radius: 6px; padding: 5px 10px; z-index: 1; transition: opacity 0.3s; } .custom-tooltip:hover .tooltip-container .tooltip-text { visibility: visible; opacity: 1; } .custom-tooltip .tooltip-container .tooltip-text::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: rgb(85, 85, 85) transparent transparent; } .modal-main-container .currentDir, #fileCosPathContainer { min-height: 40px; } .dir-container button, .file-container p, .currentDir p, #fileCosPathContainer p, .custom-control label, #file-library-modify-files p, #file-library-modify-files button { user-select: none; } .dir-container button.disabled, div.editormd-dialog-footer > button:disabled { color: rgb(141, 141, 141); pointer-events: none; } #file-library-modify-files button:disabled { cursor: default; background: rgb(57, 57, 57); border-color: rgb(57, 57, 57); color: rgb(141, 141, 141); } #file-library-help { position: absolute; top: 3%; right: 3%; gap: 10px; font-size: 18px; align-items: center; color: rgb(141, 141, 141); text-decoration: none; } #file-library-help:hover { color: rgb(198, 198, 198); } .vb-separator { border-left: 2px dashed rgb(141, 141, 141); height: 50px; margin: 0px 8px; } div.editormd-dialog-footer > button:disabled { color: rgb(198, 198, 198) !important; } p.moveModalLabel { width: 10%; } .next-dirs { gap: 10px; width: 85%; } #new-dir-container { width: 15%; } #new-dir { background: rgb(57, 57, 57); color: rgb(198, 198, 198); min-width: auto; padding: 7px 10px; border: 1px solid rgb(57, 57, 57); border-radius: 3px; height: 100%; } .dir-container { height: auto; white-space: nowrap; border-bottom: 2px solid rgb(68, 68, 68); } div.modal-main-container div.dir-container { width: 90%; align-self: end; } div.modal-main-container div.dir-container div.next-dirs { width: 100%; } .file-container p { width: 110px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; margin-bottom: 0px; } .file-container.active, #view-options > button.active { background: rgb(141, 141, 141); border-color: rgb(141, 141, 141); } .modal-main-container { gap: 10px; } #refresh-file-library-button { width: 7%; } #copy-file-url-container { width: 5%; } .previewImage { display: none; opacity: 0.8; position: absolute; right: 7px; top: 7px; padding: 4px 8px !important; } .file-container:hover .previewImage { display: block; } #preview-image-modal { width: auto; max-width: 80%; } #rename-file-modal { width: 45%; } #move-file-modal div.move-from div.currentDir { background-color: rgb(38, 38, 38); opacity: 0.6; } .dialog-modal { display: none; position: absolute; z-index: 1; left: 0px; top: 0px; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.4); } .dialog-modal-content { background-color: rgb(44, 44, 44); border: 1px solid rgb(136, 136, 136); border-radius: 5px; width: 65%; overflow: auto; min-height: 50%; max-height: 90%; } .dialog-modal-close { color: rgb(112, 112, 112); font-size: 28px; font-weight: bold; } .dialog-modal-top { border-bottom: 2px solid rgb(68, 68, 68); } .dialog-modal-close:hover, .dialog-modal-close:focus { color: rgb(198, 198, 198); text-decoration: none; cursor: pointer; } @media only screen and (min-device-width: 800px) and (max-device-width: 1280px) and (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.5) { div.page-footer > button, button.plugin, button.toc { font-weight: 400; } } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/public/css/custom_popover.css?version=3.3.3 @charset “utf-8”; div.editormd-preview { —popover-background-color-primary: #F4F4F4; —popover-header-background-color: #DDDDDD; —popover-header-text-color: #333; —popover-header-divider-color: #E8E8E8; —popover-body-text-color: #666; } body, div.editormd-preview-theme-dark { —popover-background-color-primary: #393939; —popover-header-background-color: #3C3C3C; —popover-header-text-color: #F4F4F4; —popover-header-divider-color: #333333; —popover-body-text-color: #C6C6C6; } div.popover { border: none; box-shadow: rgba(0, 0, 0, 0.75) 0px 3px 15px 0px; } div.popover div.popover-body p:last-of-type { margin-bottom: 5px; } div.popover .popover-header { padding: 12px 16px; color: var(—popover-header-text-color); background: var(—popover-header-background-color); border-bottom: 1px solid var(—popover-header-divider-color); } div.popover div.popover-body { padding: 12px 16px; color: var(—popover-body-text-color); background: var(—popover-background-color-primary); } div.popover div.popover-body a { color: rgb(69, 137, 255); } div.popover div.popover-body a:hover { color: rgb(62, 123, 229); } .bs-popover-auto[x-placement^=“bottom”] .popover-header::before, .bs-popover-bottom .popover-header::before { border-bottom: 1px solid var(—popover-background-color-primary) !important; } .bs-popover-auto[x-placement^=“bottom”] > .arrow::after, .bs-popover-bottom > .arrow::after { border-bottom-color: var(—popover-header-background-color) !important; } .bs-popover-auto[x-placement^=“top”] > .arrow::after, .bs-popover-top > .arrow::after { border-top-color: var(—popover-header-background-color) !important; } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css @charset “utf-8”; :root { —blue: #007bff; —indigo: #6610f2; —purple: #6f42c1; —pink: #e83e8c; —red: #dc3545; —orange: #fd7e14; —yellow: #ffc107; —green: #28a745; —teal: #20c997; —cyan: #17a2b8; —white: #fff; —gray: #6c757d; —gray-dark: #343a40; —primary: #007bff; —secondary: #6c757d; —success: #28a745; —info: #17a2b8; —warning: #ffc107; —danger: #dc3545; —light: #f8f9fa; —dark: #343a40; —breakpoint-xs: 0; —breakpoint-sm: 576px; —breakpoint-md: 768px; —breakpoint-lg: 992px; —breakpoint-xl: 1200px; —font-family-sans-serif: -apple-system,BlinkMacSystemFont,“Segoe UI”,Roboto,“Helvetica Neue”,Arial,“Noto Sans”,“Liberation Sans”,sans-serif,“Apple Color Emoji”,“Segoe UI Emoji”,“Segoe UI Symbol”,“Noto Color Emoji”; —font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,“Liberation Mono”,“Courier New”,monospace; } , ::after, ::before { box-sizing: border-box; } html { font-family: sans-serif; line-height: 1.15; text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; } article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; } body { margin: 0px; font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, “Helvetica Neue”, Arial, “Noto Sans”, “Liberation Sans”, sans-serif, “Apple Color Emoji”, “Segoe UI Emoji”, “Segoe UI Symbol”, “Noto Color Emoji”; font-size: 1rem; font-weight: 400; line-height: 1.5; color: rgb(33, 37, 41); text-align: left; background-color: rgb(255, 255, 255); } [tabindex=“-1”]:focus:not(:focus-visible) { outline: 0px !important; } hr { box-sizing: content-box; height: 0px; overflow: visible; } h1, h2, h3, h4, h5, h6 { margin-top: 0px; margin-bottom: 0.5rem; } p { margin-top: 0px; margin-bottom: 1rem; } abbr[data-original-title], abbr[title] { text-decoration: underline dotted; cursor: help; border-bottom: 0px; text-decoration-skip-ink: none; } address { margin-bottom: 1rem; font-style: normal; line-height: inherit; } dl, ol, ul { margin-top: 0px; margin-bottom: 1rem; } ol ol, ol ul, ul ol, ul ul { margin-bottom: 0px; } dt { font-weight: 700; } dd { margin-bottom: 0.5rem; margin-left: 0px; } blockquote { margin: 0px 0px 1rem; } b, strong { font-weight: bolder; } small { font-size: 80%; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } a { color: rgb(0, 123, 255); text-decoration: none; background-color: transparent; } a:hover { color: rgb(0, 86, 179); text-decoration: underline; } a:not([href]):not([class]) { color: inherit; text-decoration: none; } a:not([href]):not([class]):hover { color: inherit; text-decoration: none; } code, kbd, pre, samp { font-family: SFMono-Regular, Menlo, Monaco, Consolas, “Liberation Mono”, “Courier New”, monospace; font-size: 1em; } pre { margin-top: 0px; margin-bottom: 1rem; overflow: auto; } figure { margin: 0px 0px 1rem; } img { vertical-align: middle; border-style: none; } svg { overflow: hidden; vertical-align: middle; } table { border-collapse: collapse; } caption { padding-top: 0.75rem; padding-bottom: 0.75rem; color: rgb(108, 117, 125); text-align: left; caption-side: bottom; } th { text-align: -webkit-match-parent; } label { display: inline-block; margin-bottom: 0.5rem; } button { border-radius: 0px; } button:focus:not(:focus-visible) { outline: 0px; } button, input, optgroup, select, textarea { margin: 0px; font-family: inherit; font-size: inherit; line-height: inherit; } button, input { overflow: visible; } button, select { text-transform: none; } [role=“button”] { cursor: pointer; } select { overflow-wrap: normal; } [type=“button”], [type=“reset”], [type=“submit”], button { appearance: button; } [type=“button”]:not(:disabled), [type=“reset”]:not(:disabled), [type=“submit”]:not(:disabled), button:not(:disabled) { cursor: pointer; } input[type=“checkbox”], input[type=“radio”] { box-sizing: border-box; padding: 0px; } textarea { overflow: auto; resize: vertical; } fieldset { min-width: 0px; padding: 0px; margin: 0px; border: 0px; } legend { display: block; width: 100%; max-width: 100%; padding: 0px; margin-bottom: 0.5rem; font-size: 1.5rem; line-height: inherit; color: inherit; white-space: normal; } progress { vertical-align: baseline; } [type=“number”]::-webkit-inner-spin-button, [type=“number”]::-webkit-outer-spin-button { height: auto; } [type=“search”] { outline-offset: -2px; appearance: none; } [type=“search”]::-webkit-search-decoration { appearance: none; } ::-webkit-file-upload-button { font: inherit; appearance: button; } output { display: inline-block; } summary { display: list-item; cursor: pointer; } template { display: none; } [hidden] { display: none !important; } .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { margin-bottom: 0.5rem; font-weight: 500; line-height: 1.2; } .h1, h1 { font-size: 2.5rem; } .h2, h2 { font-size: 2rem; } .h3, h3 { font-size: 1.75rem; } .h4, h4 { font-size: 1.5rem; } .h5, h5 { font-size: 1.25rem; } .h6, h6 { font-size: 1rem; } .lead { font-size: 1.25rem; font-weight: 300; } .display-1 { font-size: 6rem; font-weight: 300; line-height: 1.2; } .display-2 { font-size: 5.5rem; font-weight: 300; line-height: 1.2; } .display-3 { font-size: 4.5rem; font-weight: 300; line-height: 1.2; } .display-4 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; } hr { margin-top: 1rem; margin-bottom: 1rem; border-width: 1px 0px 0px; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image: initial; border-top-style: solid; border-top-color: rgba(0, 0, 0, 0.1); } .small, small { font-size: 80%; font-weight: 400; } .mark, mark { padding: 0.2em; background-color: rgb(252, 248, 227); } .list-unstyled { padding-left: 0px; list-style: none; } .list-inline { padding-left: 0px; list-style: none; } .list-inline-item { display: inline-block; } .list-inline-item:not(:last-child) { margin-right: 0.5rem; } .initialism { font-size: 90%; text-transform: uppercase; } .blockquote { margin-bottom: 1rem; font-size: 1.25rem; } .blockquote-footer { display: block; font-size: 80%; color: rgb(108, 117, 125); } .blockquote-footer::before { content: ”— ”; } .img-fluid { max-width: 100%; height: auto; } .img-thumbnail { padding: 0.25rem; background-color: rgb(255, 255, 255); border: 1px solid rgb(222, 226, 230); border-radius: 0.25rem; max-width: 100%; height: auto; } .figure { display: inline-block; } .figure-img { margin-bottom: 0.5rem; line-height: 1; } .figure-caption { font-size: 90%; color: rgb(108, 117, 125); } code { font-size: 87.5%; color: rgb(232, 62, 140); overflow-wrap: break-word; } a > code { color: inherit; } kbd { padding: 0.2rem 0.4rem; font-size: 87.5%; color: rgb(255, 255, 255); background-color: rgb(33, 37, 41); border-radius: 0.2rem; } kbd kbd { padding: 0px; font-size: 100%; font-weight: 700; } pre { display: block; font-size: 87.5%; color: rgb(33, 37, 41); } pre code { font-size: inherit; color: inherit; word-break: normal; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media (min-width: 576px) { .container, .container-sm { max-width: 540px; } } @media (min-width: 768px) { .container, .container-md, .container-sm { max-width: 720px; } } @media (min-width: 992px) { .container, .container-lg, .container-md, .container-sm { max-width: 960px; } } @media (min-width: 1200px) { .container, .container-lg, .container-md, .container-sm, .container-xl { max-width: 1140px; } } .row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } .no-gutters { margin-right: 0px; margin-left: 0px; } .no-gutters > .col, .no-gutters > [class=“col-”] { padding-right: 0px; padding-left: 0px; } .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .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-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .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-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .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-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .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-auto { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; } .col { flex-basis: 0px; flex-grow: 1; max-width: 100%; } .row-cols-1 > * { flex: 0 0 100%; max-width: 100%; } .row-cols-2 > * { flex: 0 0 50%; max-width: 50%; } .row-cols-3 > * { flex: 0 0 33.3333%; max-width: 33.3333%; } .row-cols-4 > * { flex: 0 0 25%; max-width: 25%; } .row-cols-5 > * { flex: 0 0 20%; max-width: 20%; } .row-cols-6 > * { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-auto { flex: 0 0 auto; width: auto; max-width: 100%; } .col-1 { flex: 0 0 8.33333%; max-width: 8.33333%; } .col-2 { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-3 { flex: 0 0 25%; max-width: 25%; } .col-4 { flex: 0 0 33.3333%; max-width: 33.3333%; } .col-5 { flex: 0 0 41.6667%; max-width: 41.6667%; } .col-6 { flex: 0 0 50%; max-width: 50%; } .col-7 { flex: 0 0 58.3333%; max-width: 58.3333%; } .col-8 { flex: 0 0 66.6667%; max-width: 66.6667%; } .col-9 { flex: 0 0 75%; max-width: 75%; } .col-10 { flex: 0 0 83.3333%; max-width: 83.3333%; } .col-11 { flex: 0 0 91.6667%; max-width: 91.6667%; } .col-12 { flex: 0 0 100%; max-width: 100%; } .order-first { order: -1; } .order-last { order: 13; } .order-0 { order: 0; } .order-1 { order: 1; } .order-2 { order: 2; } .order-3 { order: 3; } .order-4 { order: 4; } .order-5 { order: 5; } .order-6 { order: 6; } .order-7 { order: 7; } .order-8 { order: 8; } .order-9 { order: 9; } .order-10 { order: 10; } .order-11 { order: 11; } .order-12 { order: 12; } .offset-1 { margin-left: 8.33333%; } .offset-2 { margin-left: 16.6667%; } .offset-3 { margin-left: 25%; } .offset-4 { margin-left: 33.3333%; } .offset-5 { margin-left: 41.6667%; } .offset-6 { margin-left: 50%; } .offset-7 { margin-left: 58.3333%; } .offset-8 { margin-left: 66.6667%; } .offset-9 { margin-left: 75%; } .offset-10 { margin-left: 83.3333%; } .offset-11 { margin-left: 91.6667%; } @media (min-width: 576px) { .col-sm { flex-basis: 0px; flex-grow: 1; max-width: 100%; } .row-cols-sm-1 > * { flex: 0 0 100%; max-width: 100%; } .row-cols-sm-2 > * { flex: 0 0 50%; max-width: 50%; } .row-cols-sm-3 > * { flex: 0 0 33.3333%; max-width: 33.3333%; } .row-cols-sm-4 > * { flex: 0 0 25%; max-width: 25%; } .row-cols-sm-5 > * { flex: 0 0 20%; max-width: 20%; } .row-cols-sm-6 > * { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; } .col-sm-1 { flex: 0 0 8.33333%; max-width: 8.33333%; } .col-sm-2 { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-sm-3 { flex: 0 0 25%; max-width: 25%; } .col-sm-4 { flex: 0 0 33.3333%; max-width: 33.3333%; } .col-sm-5 { flex: 0 0 41.6667%; max-width: 41.6667%; } .col-sm-6 { flex: 0 0 50%; max-width: 50%; } .col-sm-7 { flex: 0 0 58.3333%; max-width: 58.3333%; } .col-sm-8 { flex: 0 0 66.6667%; max-width: 66.6667%; } .col-sm-9 { flex: 0 0 75%; max-width: 75%; } .col-sm-10 { flex: 0 0 83.3333%; max-width: 83.3333%; } .col-sm-11 { flex: 0 0 91.6667%; max-width: 91.6667%; } .col-sm-12 { flex: 0 0 100%; max-width: 100%; } .order-sm-first { order: -1; } .order-sm-last { order: 13; } .order-sm-0 { order: 0; } .order-sm-1 { order: 1; } .order-sm-2 { order: 2; } .order-sm-3 { order: 3; } .order-sm-4 { order: 4; } .order-sm-5 { order: 5; } .order-sm-6 { order: 6; } .order-sm-7 { order: 7; } .order-sm-8 { order: 8; } .order-sm-9 { order: 9; } .order-sm-10 { order: 10; } .order-sm-11 { order: 11; } .order-sm-12 { order: 12; } .offset-sm-0 { margin-left: 0px; } .offset-sm-1 { margin-left: 8.33333%; } .offset-sm-2 { margin-left: 16.6667%; } .offset-sm-3 { margin-left: 25%; } .offset-sm-4 { margin-left: 33.3333%; } .offset-sm-5 { margin-left: 41.6667%; } .offset-sm-6 { margin-left: 50%; } .offset-sm-7 { margin-left: 58.3333%; } .offset-sm-8 { margin-left: 66.6667%; } .offset-sm-9 { margin-left: 75%; } .offset-sm-10 { margin-left: 83.3333%; } .offset-sm-11 { margin-left: 91.6667%; } } @media (min-width: 768px) { .col-md { flex-basis: 0px; flex-grow: 1; max-width: 100%; } .row-cols-md-1 > * { flex: 0 0 100%; max-width: 100%; } .row-cols-md-2 > * { flex: 0 0 50%; max-width: 50%; } .row-cols-md-3 > * { flex: 0 0 33.3333%; max-width: 33.3333%; } .row-cols-md-4 > * { flex: 0 0 25%; max-width: 25%; } .row-cols-md-5 > * { flex: 0 0 20%; max-width: 20%; } .row-cols-md-6 > * { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; } .col-md-1 { flex: 0 0 8.33333%; max-width: 8.33333%; } .col-md-2 { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-md-3 { flex: 0 0 25%; max-width: 25%; } .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; } .col-md-5 { flex: 0 0 41.6667%; max-width: 41.6667%; } .col-md-6 { flex: 0 0 50%; max-width: 50%; } .col-md-7 { flex: 0 0 58.3333%; max-width: 58.3333%; } .col-md-8 { flex: 0 0 66.6667%; max-width: 66.6667%; } .col-md-9 { flex: 0 0 75%; max-width: 75%; } .col-md-10 { flex: 0 0 83.3333%; max-width: 83.3333%; } .col-md-11 { flex: 0 0 91.6667%; max-width: 91.6667%; } .col-md-12 { flex: 0 0 100%; max-width: 100%; } .order-md-first { order: -1; } .order-md-last { order: 13; } .order-md-0 { order: 0; } .order-md-1 { order: 1; } .order-md-2 { order: 2; } .order-md-3 { order: 3; } .order-md-4 { order: 4; } .order-md-5 { order: 5; } .order-md-6 { order: 6; } .order-md-7 { order: 7; } .order-md-8 { order: 8; } .order-md-9 { order: 9; } .order-md-10 { order: 10; } .order-md-11 { order: 11; } .order-md-12 { order: 12; } .offset-md-0 { margin-left: 0px; } .offset-md-1 { margin-left: 8.33333%; } .offset-md-2 { margin-left: 16.6667%; } .offset-md-3 { margin-left: 25%; } .offset-md-4 { margin-left: 33.3333%; } .offset-md-5 { margin-left: 41.6667%; } .offset-md-6 { margin-left: 50%; } .offset-md-7 { margin-left: 58.3333%; } .offset-md-8 { margin-left: 66.6667%; } .offset-md-9 { margin-left: 75%; } .offset-md-10 { margin-left: 83.3333%; } .offset-md-11 { margin-left: 91.6667%; } } @media (min-width: 992px) { .col-lg { flex-basis: 0px; flex-grow: 1; max-width: 100%; } .row-cols-lg-1 > * { flex: 0 0 100%; max-width: 100%; } .row-cols-lg-2 > * { flex: 0 0 50%; max-width: 50%; } .row-cols-lg-3 > * { flex: 0 0 33.3333%; max-width: 33.3333%; } .row-cols-lg-4 > * { flex: 0 0 25%; max-width: 25%; } .row-cols-lg-5 > * { flex: 0 0 20%; max-width: 20%; } .row-cols-lg-6 > * { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-lg-auto { flex: 0 0 auto; width: auto; max-width: 100%; } .col-lg-1 { flex: 0 0 8.33333%; max-width: 8.33333%; } .col-lg-2 { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-lg-3 { flex: 0 0 25%; max-width: 25%; } .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; } .col-lg-5 { flex: 0 0 41.6667%; max-width: 41.6667%; } .col-lg-6 { flex: 0 0 50%; max-width: 50%; } .col-lg-7 { flex: 0 0 58.3333%; max-width: 58.3333%; } .col-lg-8 { flex: 0 0 66.6667%; max-width: 66.6667%; } .col-lg-9 { flex: 0 0 75%; max-width: 75%; } .col-lg-10 { flex: 0 0 83.3333%; max-width: 83.3333%; } .col-lg-11 { flex: 0 0 91.6667%; max-width: 91.6667%; } .col-lg-12 { flex: 0 0 100%; max-width: 100%; } .order-lg-first { order: -1; } .order-lg-last { order: 13; } .order-lg-0 { order: 0; } .order-lg-1 { order: 1; } .order-lg-2 { order: 2; } .order-lg-3 { order: 3; } .order-lg-4 { order: 4; } .order-lg-5 { order: 5; } .order-lg-6 { order: 6; } .order-lg-7 { order: 7; } .order-lg-8 { order: 8; } .order-lg-9 { order: 9; } .order-lg-10 { order: 10; } .order-lg-11 { order: 11; } .order-lg-12 { order: 12; } .offset-lg-0 { margin-left: 0px; } .offset-lg-1 { margin-left: 8.33333%; } .offset-lg-2 { margin-left: 16.6667%; } .offset-lg-3 { margin-left: 25%; } .offset-lg-4 { margin-left: 33.3333%; } .offset-lg-5 { margin-left: 41.6667%; } .offset-lg-6 { margin-left: 50%; } .offset-lg-7 { margin-left: 58.3333%; } .offset-lg-8 { margin-left: 66.6667%; } .offset-lg-9 { margin-left: 75%; } .offset-lg-10 { margin-left: 83.3333%; } .offset-lg-11 { margin-left: 91.6667%; } } @media (min-width: 1200px) { .col-xl { flex-basis: 0px; flex-grow: 1; max-width: 100%; } .row-cols-xl-1 > * { flex: 0 0 100%; max-width: 100%; } .row-cols-xl-2 > * { flex: 0 0 50%; max-width: 50%; } .row-cols-xl-3 > * { flex: 0 0 33.3333%; max-width: 33.3333%; } .row-cols-xl-4 > * { flex: 0 0 25%; max-width: 25%; } .row-cols-xl-5 > * { flex: 0 0 20%; max-width: 20%; } .row-cols-xl-6 > * { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-xl-auto { flex: 0 0 auto; width: auto; max-width: 100%; } .col-xl-1 { flex: 0 0 8.33333%; max-width: 8.33333%; } .col-xl-2 { flex: 0 0 16.6667%; max-width: 16.6667%; } .col-xl-3 { flex: 0 0 25%; max-width: 25%; } .col-xl-4 { flex: 0 0 33.3333%; max-width: 33.3333%; } .col-xl-5 { flex: 0 0 41.6667%; max-width: 41.6667%; } .col-xl-6 { flex: 0 0 50%; max-width: 50%; } .col-xl-7 { flex: 0 0 58.3333%; max-width: 58.3333%; } .col-xl-8 { flex: 0 0 66.6667%; max-width: 66.6667%; } .col-xl-9 { flex: 0 0 75%; max-width: 75%; } .col-xl-10 { flex: 0 0 83.3333%; max-width: 83.3333%; } .col-xl-11 { flex: 0 0 91.6667%; max-width: 91.6667%; } .col-xl-12 { flex: 0 0 100%; max-width: 100%; } .order-xl-first { order: -1; } .order-xl-last { order: 13; } .order-xl-0 { order: 0; } .order-xl-1 { order: 1; } .order-xl-2 { order: 2; } .order-xl-3 { order: 3; } .order-xl-4 { order: 4; } .order-xl-5 { order: 5; } .order-xl-6 { order: 6; } .order-xl-7 { order: 7; } .order-xl-8 { order: 8; } .order-xl-9 { order: 9; } .order-xl-10 { order: 10; } .order-xl-11 { order: 11; } .order-xl-12 { order: 12; } .offset-xl-0 { margin-left: 0px; } .offset-xl-1 { margin-left: 8.33333%; } .offset-xl-2 { margin-left: 16.6667%; } .offset-xl-3 { margin-left: 25%; } .offset-xl-4 { margin-left: 33.3333%; } .offset-xl-5 { margin-left: 41.6667%; } .offset-xl-6 { margin-left: 50%; } .offset-xl-7 { margin-left: 58.3333%; } .offset-xl-8 { margin-left: 66.6667%; } .offset-xl-9 { margin-left: 75%; } .offset-xl-10 { margin-left: 83.3333%; } .offset-xl-11 { margin-left: 91.6667%; } } .table { width: 100%; margin-bottom: 1rem; color: rgb(33, 37, 41); } .table td, .table th { padding: 0.75rem; vertical-align: top; border-top: 1px solid rgb(222, 226, 230); } .table thead th { vertical-align: bottom; border-bottom: 2px solid rgb(222, 226, 230); } .table tbody + tbody { border-top: 2px solid rgb(222, 226, 230); } .table-sm td, .table-sm th { padding: 0.3rem; } .table-bordered { border: 1px solid rgb(222, 226, 230); } .table-bordered td, .table-bordered th { border: 1px solid rgb(222, 226, 230); } .table-bordered thead td, .table-bordered thead th { border-bottom-width: 2px; } .table-borderless tbody + tbody, .table-borderless td, .table-borderless th, .table-borderless thead th { border: 0px; } .table-striped tbody tr:nth-of-type(2n+1) { background-color: rgba(0, 0, 0, 0.05); } .table-hover tbody tr:hover { color: rgb(33, 37, 41); background-color: rgba(0, 0, 0, 0.075); } .table-primary, .table-primary > td, .table-primary > th { background-color: rgb(184, 218, 255); } .table-primary tbody + tbody, .table-primary td, .table-primary th, .table-primary thead th { border-color: rgb(122, 186, 255); } .table-hover .table-primary:hover { background-color: rgb(159, 205, 255); } .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th { background-color: rgb(159, 205, 255); } .table-secondary, .table-secondary > td, .table-secondary > th { background-color: rgb(214, 216, 219); } .table-secondary tbody + tbody, .table-secondary td, .table-secondary th, .table-secondary thead th { border-color: rgb(179, 183, 187); } .table-hover .table-secondary:hover { background-color: rgb(200, 203, 207); } .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th { background-color: rgb(200, 203, 207); } .table-success, .table-success > td, .table-success > th { background-color: rgb(195, 230, 203); } .table-success tbody + tbody, .table-success td, .table-success th, .table-success thead th { border-color: rgb(143, 209, 158); } .table-hover .table-success:hover { background-color: rgb(177, 223, 187); } .table-hover .table-success:hover > td, .table-hover .table-success:hover > th { background-color: rgb(177, 223, 187); } .table-info, .table-info > td, .table-info > th { background-color: rgb(190, 229, 235); } .table-info tbody + tbody, .table-info td, .table-info th, .table-info thead th { border-color: rgb(134, 207, 218); } .table-hover .table-info:hover { background-color: rgb(171, 221, 229); } .table-hover .table-info:hover > td, .table-hover .table-info:hover > th { background-color: rgb(171, 221, 229); } .table-warning, .table-warning > td, .table-warning > th { background-color: rgb(255, 238, 186); } .table-warning tbody + tbody, .table-warning td, .table-warning th, .table-warning thead th { border-color: rgb(255, 223, 126); } .table-hover .table-warning:hover { background-color: rgb(255, 232, 161); } .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th { background-color: rgb(255, 232, 161); } .table-danger, .table-danger > td, .table-danger > th { background-color: rgb(245, 198, 203); } .table-danger tbody + tbody, .table-danger td, .table-danger th, .table-danger thead th { border-color: rgb(237, 150, 158); } .table-hover .table-danger:hover { background-color: rgb(241, 176, 183); } .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th { background-color: rgb(241, 176, 183); } .table-light, .table-light > td, .table-light > th { background-color: rgb(253, 253, 254); } .table-light tbody + tbody, .table-light td, .table-light th, .table-light thead th { border-color: rgb(251, 252, 252); } .table-hover .table-light:hover { background-color: rgb(236, 236, 246); } .table-hover .table-light:hover > td, .table-hover .table-light:hover > th { background-color: rgb(236, 236, 246); } .table-dark, .table-dark > td, .table-dark > th { background-color: rgb(198, 200, 202); } .table-dark tbody + tbody, .table-dark td, .table-dark th, .table-dark thead th { border-color: rgb(149, 153, 156); } .table-hover .table-dark:hover { background-color: rgb(185, 187, 190); } .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th { background-color: rgb(185, 187, 190); } .table-active, .table-active > td, .table-active > th { background-color: rgba(0, 0, 0, 0.075); } .table-hover .table-active:hover { background-color: rgba(0, 0, 0, 0.075); } .table-hover .table-active:hover > td, .table-hover .table-active:hover > th { background-color: rgba(0, 0, 0, 0.075); } .table .thead-dark th { color: rgb(255, 255, 255); background-color: rgb(52, 58, 64); border-color: rgb(69, 77, 85); } .table .thead-light th { color: rgb(73, 80, 87); background-color: rgb(233, 236, 239); border-color: rgb(222, 226, 230); } .table-dark { color: rgb(255, 255, 255); background-color: rgb(52, 58, 64); } .table-dark td, .table-dark th, .table-dark thead th { border-color: rgb(69, 77, 85); } .table-dark.table-bordered { border: 0px; } .table-dark.table-striped tbody tr:nth-of-type(2n+1) { background-color: rgba(255, 255, 255, 0.05); } .table-dark.table-hover tbody tr:hover { color: rgb(255, 255, 255); background-color: rgba(255, 255, 255, 0.075); } @media (max-width: 575.98px) { .table-responsive-sm { display: block; width: 100%; overflow-x: auto; } .table-responsive-sm > .table-bordered { border: 0px; } } @media (max-width: 767.98px) { .table-responsive-md { display: block; width: 100%; overflow-x: auto; } .table-responsive-md > .table-bordered { border: 0px; } } @media (max-width: 991.98px) { .table-responsive-lg { display: block; width: 100%; overflow-x: auto; } .table-responsive-lg > .table-bordered { border: 0px; } } @media (max-width: 1199.98px) { .table-responsive-xl { display: block; width: 100%; overflow-x: auto; } .table-responsive-xl > .table-bordered { border: 0px; } } .table-responsive { display: block; width: 100%; overflow-x: auto; } .table-responsive > .table-bordered { border: 0px; } .form-control { display: block; width: 100%; height: calc(1.5em + 2px + 0.75rem); padding: 0.375rem 0.75rem; font-size: 1rem; font-weight: 400; line-height: 1.5; color: rgb(73, 80, 87); background-color: rgb(255, 255, 255); background-clip: padding-box; border: 1px solid rgb(206, 212, 218); border-radius: 0.25rem; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .form-control { transition: none; } } .form-control:focus { color: rgb(73, 80, 87); background-color: rgb(255, 255, 255); border-color: rgb(128, 189, 255); outline: 0px; box-shadow: rgba(0, 123, 255, 0.25) 0px 0px 0px 0.2rem; } .form-control::-webkit-input-placeholder { color: rgb(108, 117, 125); opacity: 1; } .form-control::placeholder { color: rgb(108, 117, 125); opacity: 1; } .form-control:disabled, .form-control[readonly] { background-color: rgb(233, 236, 239); opacity: 1; } input[type=“date”].form-control, input[type=“datetime-local”].form-control, input[type=“month”].form-control, input[type=“time”].form-control { appearance: none; } .form-control-file, .form-control-range { display: block; width: 100%; } .col-form-label { padding-top: calc(1px + 0.375rem); padding-bottom: calc(1px + 0.375rem); margin-bottom: 0px; font-size: inherit; line-height: 1.5; } .col-form-label-lg { padding-top: calc(1px + 0.5rem); padding-bottom: calc(1px + 0.5rem); font-size: 1.25rem; line-height: 1.5; } .col-form-label-sm { padding-top: calc(1px + 0.25rem); padding-bottom: calc(1px + 0.25rem); font-size: 0.875rem; line-height: 1.5; } .form-control-plaintext { display: block; width: 100%; padding: 0.375rem 0px; margin-bottom: 0px; font-size: 1rem; line-height: 1.5; color: rgb(33, 37, 41); background-color: transparent; border-style: solid; border-color: transparent; border-image: initial; border-width: 1px 0px; } .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm { padding-right: 0px; padding-left: 0px; } .form-control-sm { height: calc(1.5em + 2px + 0.5rem); padding: 0.25rem 0.5rem; font-size: 0.875rem; line-height: 1.5; border-radius: 0.2rem; } .form-control-lg { height: calc(1.5em + 2px + 1rem); padding: 0.5rem 1rem; font-size: 1.25rem; line-height: 1.5; border-radius: 0.3rem; } select.form-control[multiple], select.form-control[size] { height: auto; } textarea.form-control { height: auto; } .form-group { margin-bottom: 1rem; } .form-text { display: block; margin-top: 0.25rem; } .form-row { display: flex; flex-wrap: wrap; margin-right: -5px; margin-left: -5px; } .form-row > .col, .form-row > [class*=“col-”] { padding-right: 5px; padding-left: 5px; } .form-check { position: relative; display: block; padding-left: 1.25rem; } .form-check-input { position: absolute; margin-top: 0.3rem; margin-left: -1.25rem; } .form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label { color: rgb(108, 117, 125); } .form-check-label { margin-bottom: 0px; } .form-check-inline { display: inline-flex; align-items: center; padding-left: 0px; margin-right: 0.75rem; } .form-check-inline .form-check-input { position: static; margin-top: 0px; margin-right: 0.3125rem; margin-left: 0px; } .valid-feedback { display: none; width: 100%; margin-top: 0.25rem; font-size: 80%; color: rgb(40, 167, 69); } .valid-tooltip { position: absolute; top: 100%; left: 0px; z-index: 5; display: none; max-width: 100%; padding: 0.25rem 0.5rem; margin-top: 0.1rem; font-size: 0.875rem; line-height: 1.5; color: rgb(255, 255, 255); background-color: rgba(40, 167, 69, 0.9); border-radius: 0.25rem; } .form-row > .col > .valid-tooltip, .form-row > [class*=“col-”] > .valid-tooltip { left: 5px; } .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip, .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip { display: block; } .form-control.is-valid, .was-validated .form-control:valid { border-color: rgb(40, 167, 69); padding-right: calc(1.5em + 0.75rem); background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘8’ height=‘8’ viewBox=‘0 0 8 8’%3e%3cpath fill=‘%2328a745’ d=‘M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z’/%3e%3c/svg%3e”); background-repeat: no-repeat; background-position: right calc(0.375em + 0.1875rem) center; background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } .form-control.is-valid:focus, .was-validated .form-control:valid:focus { border-color: rgb(40, 167, 69); box-shadow: rgba(40, 167, 69, 0.25) 0px 0px 0px 0.2rem; } .was-validated textarea.form-control:valid, textarea.form-control.is-valid { padding-right: calc(1.5em + 0.75rem); background-position: right calc(0.375em + 0.1875rem) top calc(0.375em + 0.1875rem); } .custom-select.is-valid, .was-validated .custom-select:valid { border-color: rgb(40, 167, 69); padding-right: calc(0.75em + 2.3125rem); background: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘4’ height=‘5’ viewBox=‘0 0 4 5’%3e%3cpath fill=‘%23343a40’ d=‘M2 0L0 2h4zm0 5L0 3h4z’/%3e%3c/svg%3e”) right 0.75rem center / 8px 10px no-repeat, url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘8’ height=‘8’ viewBox=‘0 0 8 8’%3e%3cpath fill=‘%2328a745’ d=‘M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z’/%3e%3c/svg%3e”) right 1.75rem center / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat rgb(255, 255, 255); } .custom-select.is-valid:focus, .was-validated .custom-select:valid:focus { border-color: rgb(40, 167, 69); box-shadow: rgba(40, 167, 69, 0.25) 0px 0px 0px 0.2rem; } .form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label { color: rgb(40, 167, 69); } .form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip, .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip { display: block; } .custom-control-input.is-valid ~ .custom-control-label, .was-validated .custom-control-input:valid ~ .custom-control-label { color: rgb(40, 167, 69); } .custom-control-input.is-valid ~ .custom-control-label::before, .was-validated .custom-control-input:valid ~ .custom-control-label::before { border-color: rgb(40, 167, 69); } .custom-control-input.is-valid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before { border-color: rgb(52, 206, 87); background-color: rgb(52, 206, 87); } .custom-control-input.is-valid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before { box-shadow: rgba(40, 167, 69, 0.25) 0px 0px 0px 0.2rem; } .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before { border-color: rgb(40, 167, 69); } .custom-file-input.is-valid ~ .custom-file-label, .was-validated .custom-file-input:valid ~ .custom-file-label { border-color: rgb(40, 167, 69); } .custom-file-input.is-valid:focus ~ .custom-file-label, .was-validated .custom-file-input:valid:focus ~ .custom-file-label { border-color: rgb(40, 167, 69); box-shadow: rgba(40, 167, 69, 0.25) 0px 0px 0px 0.2rem; } .invalid-feedback { display: none; width: 100%; margin-top: 0.25rem; font-size: 80%; color: rgb(220, 53, 69); } .invalid-tooltip { position: absolute; top: 100%; left: 0px; z-index: 5; display: none; max-width: 100%; padding: 0.25rem 0.5rem; margin-top: 0.1rem; font-size: 0.875rem; line-height: 1.5; color: rgb(255, 255, 255); background-color: rgba(220, 53, 69, 0.9); border-radius: 0.25rem; } .form-row > .col > .invalid-tooltip, .form-row > [class*=“col-”] > .invalid-tooltip { left: 5px; } .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip, .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip { display: block; } .form-control.is-invalid, .was-validated .form-control:invalid { border-color: rgb(220, 53, 69); padding-right: calc(1.5em + 0.75rem); background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘12’ height=‘12’ fill=‘none’ stroke=‘%23dc3545’ viewBox=‘0 0 12 12’%3e%3ccircle cx=‘6’ cy=‘6’ r=‘4.5’/%3e%3cpath stroke-linejoin=‘round’ d=‘M5.8 3.6h.4L6 6.5z’/%3e%3ccircle cx=‘6’ cy=‘8.2’ r=’.6’ fill=‘%23dc3545’ stroke=‘none’/%3e%3c/svg%3e”); background-repeat: no-repeat; background-position: right calc(0.375em + 0.1875rem) center; background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus { border-color: rgb(220, 53, 69); box-shadow: rgba(220, 53, 69, 0.25) 0px 0px 0px 0.2rem; } .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { padding-right: calc(1.5em + 0.75rem); background-position: right calc(0.375em + 0.1875rem) top calc(0.375em + 0.1875rem); } .custom-select.is-invalid, .was-validated .custom-select:invalid { border-color: rgb(220, 53, 69); padding-right: calc(0.75em + 2.3125rem); background: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘4’ height=‘5’ viewBox=‘0 0 4 5’%3e%3cpath fill=‘%23343a40’ d=‘M2 0L0 2h4zm0 5L0 3h4z’/%3e%3c/svg%3e”) right 0.75rem center / 8px 10px no-repeat, url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘12’ height=‘12’ fill=‘none’ stroke=‘%23dc3545’ viewBox=‘0 0 12 12’%3e%3ccircle cx=‘6’ cy=‘6’ r=‘4.5’/%3e%3cpath stroke-linejoin=‘round’ d=‘M5.8 3.6h.4L6 6.5z’/%3e%3ccircle cx=‘6’ cy=‘8.2’ r=’.6’ fill=‘%23dc3545’ stroke=‘none’/%3e%3c/svg%3e”) right 1.75rem center / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat rgb(255, 255, 255); } .custom-select.is-invalid:focus, .was-validated .custom-select:invalid:focus { border-color: rgb(220, 53, 69); box-shadow: rgba(220, 53, 69, 0.25) 0px 0px 0px 0.2rem; } .form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label { color: rgb(220, 53, 69); } .form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip, .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip { display: block; } .custom-control-input.is-invalid ~ .custom-control-label, .was-validated .custom-control-input:invalid ~ .custom-control-label { color: rgb(220, 53, 69); } .custom-control-input.is-invalid ~ .custom-control-label::before, .was-validated .custom-control-input:invalid ~ .custom-control-label::before { border-color: rgb(220, 53, 69); } .custom-control-input.is-invalid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before { border-color: rgb(228, 96, 109); background-color: rgb(228, 96, 109); } .custom-control-input.is-invalid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before { box-shadow: rgba(220, 53, 69, 0.25) 0px 0px 0px 0.2rem; } .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before { border-color: rgb(220, 53, 69); } .custom-file-input.is-invalid ~ .custom-file-label, .was-validated .custom-file-input:invalid ~ .custom-file-label { border-color: rgb(220, 53, 69); } .custom-file-input.is-invalid:focus ~ .custom-file-label, .was-validated .custom-file-input:invalid:focus ~ .custom-file-label { border-color: rgb(220, 53, 69); box-shadow: rgba(220, 53, 69, 0.25) 0px 0px 0px 0.2rem; } .form-inline { display: flex; flex-flow: wrap; align-items: center; } .form-inline .form-check { width: 100%; } @media (min-width: 576px) { .form-inline label { display: flex; align-items: center; justify-content: center; margin-bottom: 0px; } .form-inline .form-group { display: flex; flex: 0 0 auto; flex-flow: wrap; align-items: center; margin-bottom: 0px; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-plaintext { display: inline-block; } .form-inline .custom-select, .form-inline .input-group { width: auto; } .form-inline .form-check { display: flex; align-items: center; justify-content: center; width: auto; padding-left: 0px; } .form-inline .form-check-input { position: relative; flex-shrink: 0; margin-top: 0px; margin-right: 0.25rem; margin-left: 0px; } .form-inline .custom-control { align-items: center; justify-content: center; } .form-inline .custom-control-label { margin-bottom: 0px; } } .btn { display: inline-block; font-weight: 400; color: rgb(33, 37, 41); text-align: center; vertical-align: middle; user-select: none; background-color: transparent; border: 1px solid transparent; padding: 0.375rem 0.75rem; font-size: 1rem; line-height: 1.5; border-radius: 0.25rem; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .btn { transition: none; } } .btn:hover { color: rgb(33, 37, 41); text-decoration: none; } .btn.focus, .btn:focus { outline: 0px; box-shadow: rgba(0, 123, 255, 0.25) 0px 0px 0px 0.2rem; } .btn.disabled, .btn:disabled { opacity: 0.65; } .btn:not(:disabled):not(.disabled) { cursor: pointer; } a.btn.disabled, fieldset:disabled a.btn { pointer-events: none; } .btn-primary { color: rgb(255, 255, 255); background-color: rgb(0, 123, 255); border-color: rgb(0, 123, 255); } .btn-primary:hover { color: rgb(255, 255, 255); background-color: rgb(0, 105, 217); border-color: rgb(0, 98, 204); } .btn-primary.focus, .btn-primary:focus { color: rgb(255, 255, 255); background-color: rgb(0, 105, 217); border-color: rgb(0, 98, 204); box-shadow: rgba(38, 143, 255, 0.5) 0px 0px 0px 0.2rem; } .btn-primary.disabled, .btn-primary:disabled { color: rgb(255, 255, 255); background-color: rgb(0, 123, 255); border-color: rgb(0, 123, 255); } .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(0, 98, 204); border-color: rgb(0, 92, 191); } .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus { box-shadow: rgba(38, 143, 255, 0.5) 0px 0px 0px 0.2rem; } .btn-secondary { color: rgb(255, 255, 255); background-color: rgb(108, 117, 125); border-color: rgb(108, 117, 125); } .btn-secondary:hover { color: rgb(255, 255, 255); background-color: rgb(90, 98, 104); border-color: rgb(84, 91, 98); } .btn-secondary.focus, .btn-secondary:focus { color: rgb(255, 255, 255); background-color: rgb(90, 98, 104); border-color: rgb(84, 91, 98); box-shadow: rgba(130, 138, 145, 0.5) 0px 0px 0px 0.2rem; } .btn-secondary.disabled, .btn-secondary:disabled { color: rgb(255, 255, 255); background-color: rgb(108, 117, 125); border-color: rgb(108, 117, 125); } .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(84, 91, 98); border-color: rgb(78, 85, 91); } .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus { box-shadow: rgba(130, 138, 145, 0.5) 0px 0px 0px 0.2rem; } .btn-success { color: rgb(255, 255, 255); background-color: rgb(40, 167, 69); border-color: rgb(40, 167, 69); } .btn-success:hover { color: rgb(255, 255, 255); background-color: rgb(33, 136, 56); border-color: rgb(30, 126, 52); } .btn-success.focus, .btn-success:focus { color: rgb(255, 255, 255); background-color: rgb(33, 136, 56); border-color: rgb(30, 126, 52); box-shadow: rgba(72, 180, 97, 0.5) 0px 0px 0px 0.2rem; } .btn-success.disabled, .btn-success:disabled { color: rgb(255, 255, 255); background-color: rgb(40, 167, 69); border-color: rgb(40, 167, 69); } .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(30, 126, 52); border-color: rgb(28, 116, 48); } .btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show > .btn-success.dropdown-toggle:focus { box-shadow: rgba(72, 180, 97, 0.5) 0px 0px 0px 0.2rem; } .btn-info { color: rgb(255, 255, 255); background-color: rgb(23, 162, 184); border-color: rgb(23, 162, 184); } .btn-info:hover { color: rgb(255, 255, 255); background-color: rgb(19, 132, 150); border-color: rgb(17, 122, 139); } .btn-info.focus, .btn-info:focus { color: rgb(255, 255, 255); background-color: rgb(19, 132, 150); border-color: rgb(17, 122, 139); box-shadow: rgba(58, 176, 195, 0.5) 0px 0px 0px 0.2rem; } .btn-info.disabled, .btn-info:disabled { color: rgb(255, 255, 255); background-color: rgb(23, 162, 184); border-color: rgb(23, 162, 184); } .btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(17, 122, 139); border-color: rgb(16, 112, 127); } .btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show > .btn-info.dropdown-toggle:focus { box-shadow: rgba(58, 176, 195, 0.5) 0px 0px 0px 0.2rem; } .btn-warning { color: rgb(33, 37, 41); background-color: rgb(255, 193, 7); border-color: rgb(255, 193, 7); } .btn-warning:hover { color: rgb(33, 37, 41); background-color: rgb(224, 168, 0); border-color: rgb(211, 158, 0); } .btn-warning.focus, .btn-warning:focus { color: rgb(33, 37, 41); background-color: rgb(224, 168, 0); border-color: rgb(211, 158, 0); box-shadow: rgba(222, 170, 12, 0.5) 0px 0px 0px 0.2rem; } .btn-warning.disabled, .btn-warning:disabled { color: rgb(33, 37, 41); background-color: rgb(255, 193, 7); border-color: rgb(255, 193, 7); } .btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show > .btn-warning.dropdown-toggle { color: rgb(33, 37, 41); background-color: rgb(211, 158, 0); border-color: rgb(198, 149, 0); } .btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-warning.dropdown-toggle:focus { box-shadow: rgba(222, 170, 12, 0.5) 0px 0px 0px 0.2rem; } .btn-danger { color: rgb(255, 255, 255); background-color: rgb(220, 53, 69); border-color: rgb(220, 53, 69); } .btn-danger:hover { color: rgb(255, 255, 255); background-color: rgb(200, 35, 51); border-color: rgb(189, 33, 48); } .btn-danger.focus, .btn-danger:focus { color: rgb(255, 255, 255); background-color: rgb(200, 35, 51); border-color: rgb(189, 33, 48); box-shadow: rgba(225, 83, 97, 0.5) 0px 0px 0px 0.2rem; } .btn-danger.disabled, .btn-danger:disabled { color: rgb(255, 255, 255); background-color: rgb(220, 53, 69); border-color: rgb(220, 53, 69); } .btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show > .btn-danger.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(189, 33, 48); border-color: rgb(178, 31, 45); } .btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-danger.dropdown-toggle:focus { box-shadow: rgba(225, 83, 97, 0.5) 0px 0px 0px 0.2rem; } .btn-light { color: rgb(33, 37, 41); background-color: rgb(248, 249, 250); border-color: rgb(248, 249, 250); } .btn-light:hover { color: rgb(33, 37, 41); background-color: rgb(226, 230, 234); border-color: rgb(218, 224, 229); } .btn-light.focus, .btn-light:focus { color: rgb(33, 37, 41); background-color: rgb(226, 230, 234); border-color: rgb(218, 224, 229); box-shadow: rgba(216, 217, 219, 0.5) 0px 0px 0px 0.2rem; } .btn-light.disabled, .btn-light:disabled { color: rgb(33, 37, 41); background-color: rgb(248, 249, 250); border-color: rgb(248, 249, 250); } .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle { color: rgb(33, 37, 41); background-color: rgb(218, 224, 229); border-color: rgb(211, 217, 223); } .btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show > .btn-light.dropdown-toggle:focus { box-shadow: rgba(216, 217, 219, 0.5) 0px 0px 0px 0.2rem; } .btn-dark { color: rgb(255, 255, 255); background-color: rgb(52, 58, 64); border-color: rgb(52, 58, 64); } .btn-dark:hover { color: rgb(255, 255, 255); background-color: rgb(35, 39, 43); border-color: rgb(29, 33, 36); } .btn-dark.focus, .btn-dark:focus { color: rgb(255, 255, 255); background-color: rgb(35, 39, 43); border-color: rgb(29, 33, 36); box-shadow: rgba(82, 88, 93, 0.5) 0px 0px 0px 0.2rem; } .btn-dark.disabled, .btn-dark:disabled { color: rgb(255, 255, 255); background-color: rgb(52, 58, 64); border-color: rgb(52, 58, 64); } .btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(29, 33, 36); border-color: rgb(23, 26, 29); } .btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-dark.dropdown-toggle:focus { box-shadow: rgba(82, 88, 93, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-primary { color: rgb(0, 123, 255); border-color: rgb(0, 123, 255); } .btn-outline-primary:hover { color: rgb(255, 255, 255); background-color: rgb(0, 123, 255); border-color: rgb(0, 123, 255); } .btn-outline-primary.focus, .btn-outline-primary:focus { box-shadow: rgba(0, 123, 255, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-primary.disabled, .btn-outline-primary:disabled { color: rgb(0, 123, 255); background-color: transparent; } .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(0, 123, 255); border-color: rgb(0, 123, 255); } .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { box-shadow: rgba(0, 123, 255, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-secondary { color: rgb(108, 117, 125); border-color: rgb(108, 117, 125); } .btn-outline-secondary:hover { color: rgb(255, 255, 255); background-color: rgb(108, 117, 125); border-color: rgb(108, 117, 125); } .btn-outline-secondary.focus, .btn-outline-secondary:focus { box-shadow: rgba(108, 117, 125, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { color: rgb(108, 117, 125); background-color: transparent; } .btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show > .btn-outline-secondary.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(108, 117, 125); border-color: rgb(108, 117, 125); } .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { box-shadow: rgba(108, 117, 125, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-success { color: rgb(40, 167, 69); border-color: rgb(40, 167, 69); } .btn-outline-success:hover { color: rgb(255, 255, 255); background-color: rgb(40, 167, 69); border-color: rgb(40, 167, 69); } .btn-outline-success.focus, .btn-outline-success:focus { box-shadow: rgba(40, 167, 69, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-success.disabled, .btn-outline-success:disabled { color: rgb(40, 167, 69); background-color: transparent; } .btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show > .btn-outline-success.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(40, 167, 69); border-color: rgb(40, 167, 69); } .btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-success.dropdown-toggle:focus { box-shadow: rgba(40, 167, 69, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-info { color: rgb(23, 162, 184); border-color: rgb(23, 162, 184); } .btn-outline-info:hover { color: rgb(255, 255, 255); background-color: rgb(23, 162, 184); border-color: rgb(23, 162, 184); } .btn-outline-info.focus, .btn-outline-info:focus { box-shadow: rgba(23, 162, 184, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-info.disabled, .btn-outline-info:disabled { color: rgb(23, 162, 184); background-color: transparent; } .btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show > .btn-outline-info.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(23, 162, 184); border-color: rgb(23, 162, 184); } .btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-info.dropdown-toggle:focus { box-shadow: rgba(23, 162, 184, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-warning { color: rgb(255, 193, 7); border-color: rgb(255, 193, 7); } .btn-outline-warning:hover { color: rgb(33, 37, 41); background-color: rgb(255, 193, 7); border-color: rgb(255, 193, 7); } .btn-outline-warning.focus, .btn-outline-warning:focus { box-shadow: rgba(255, 193, 7, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-warning.disabled, .btn-outline-warning:disabled { color: rgb(255, 193, 7); background-color: transparent; } .btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show > .btn-outline-warning.dropdown-toggle { color: rgb(33, 37, 41); background-color: rgb(255, 193, 7); border-color: rgb(255, 193, 7); } .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { box-shadow: rgba(255, 193, 7, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-danger { color: rgb(220, 53, 69); border-color: rgb(220, 53, 69); } .btn-outline-danger:hover { color: rgb(255, 255, 255); background-color: rgb(220, 53, 69); border-color: rgb(220, 53, 69); } .btn-outline-danger.focus, .btn-outline-danger:focus { box-shadow: rgba(220, 53, 69, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-danger.disabled, .btn-outline-danger:disabled { color: rgb(220, 53, 69); background-color: transparent; } .btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show > .btn-outline-danger.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(220, 53, 69); border-color: rgb(220, 53, 69); } .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { box-shadow: rgba(220, 53, 69, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-light { color: rgb(248, 249, 250); border-color: rgb(248, 249, 250); } .btn-outline-light:hover { color: rgb(33, 37, 41); background-color: rgb(248, 249, 250); border-color: rgb(248, 249, 250); } .btn-outline-light.focus, .btn-outline-light:focus { box-shadow: rgba(248, 249, 250, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-light.disabled, .btn-outline-light:disabled { color: rgb(248, 249, 250); background-color: transparent; } .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show > .btn-outline-light.dropdown-toggle { color: rgb(33, 37, 41); background-color: rgb(248, 249, 250); border-color: rgb(248, 249, 250); } .btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-light.dropdown-toggle:focus { box-shadow: rgba(248, 249, 250, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-dark { color: rgb(52, 58, 64); border-color: rgb(52, 58, 64); } .btn-outline-dark:hover { color: rgb(255, 255, 255); background-color: rgb(52, 58, 64); border-color: rgb(52, 58, 64); } .btn-outline-dark.focus, .btn-outline-dark:focus { box-shadow: rgba(52, 58, 64, 0.5) 0px 0px 0px 0.2rem; } .btn-outline-dark.disabled, .btn-outline-dark:disabled { color: rgb(52, 58, 64); background-color: transparent; } .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show > .btn-outline-dark.dropdown-toggle { color: rgb(255, 255, 255); background-color: rgb(52, 58, 64); border-color: rgb(52, 58, 64); } .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { box-shadow: rgba(52, 58, 64, 0.5) 0px 0px 0px 0.2rem; } .btn-link { font-weight: 400; color: rgb(0, 123, 255); text-decoration: none; } .btn-link:hover { color: rgb(0, 86, 179); text-decoration: underline; } .btn-link.focus, .btn-link:focus { text-decoration: underline; } .btn-link.disabled, .btn-link:disabled { color: rgb(108, 117, 125); pointer-events: none; } .btn-group-lg > .btn, .btn-lg { padding: 0.5rem 1rem; font-size: 1.25rem; line-height: 1.5; border-radius: 0.3rem; } .btn-group-sm > .btn, .btn-sm { padding: 0.25rem 0.5rem; font-size: 0.875rem; line-height: 1.5; border-radius: 0.2rem; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 0.5rem; } input[type=“button”].btn-block, input[type=“reset”].btn-block, input[type=“submit”].btn-block { width: 100%; } .fade { transition: opacity 0.15s linear; } @media (prefers-reduced-motion: reduce) { .fade { transition: none; } } .fade:not(.show) { opacity: 0; } .collapse:not(.show) { display: none; } .collapsing { position: relative; height: 0px; overflow: hidden; transition: height 0.35s; } @media (prefers-reduced-motion: reduce) { .collapsing { transition: none; } } .dropdown, .dropleft, .dropright, .dropup { position: relative; } .dropdown-toggle { white-space: nowrap; } .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-width: 0.3em 0.3em 0px; border-top-style: solid; border-top-color: initial; border-right-style: solid; border-right-color: transparent; border-bottom-style: initial; border-bottom-color: initial; border-left-style: solid; border-left-color: transparent; } .dropdown-toggle:empty::after { margin-left: 0px; } .dropdown-menu { position: absolute; top: 100%; left: 0px; z-index: 1000; display: none; float: left; min-width: 10rem; padding: 0.5rem 0px; margin: 0.125rem 0px 0px; font-size: 1rem; color: rgb(33, 37, 41); text-align: left; list-style: none; background-color: rgb(255, 255, 255); background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 0.25rem; } .dropdown-menu-left { right: auto; left: 0px; } .dropdown-menu-right { right: 0px; left: auto; } @media (min-width: 576px) { .dropdown-menu-sm-left { right: auto; left: 0px; } .dropdown-menu-sm-right { right: 0px; left: auto; } } @media (min-width: 768px) { .dropdown-menu-md-left { right: auto; left: 0px; } .dropdown-menu-md-right { right: 0px; left: auto; } } @media (min-width: 992px) { .dropdown-menu-lg-left { right: auto; left: 0px; } .dropdown-menu-lg-right { right: 0px; left: auto; } } @media (min-width: 1200px) { .dropdown-menu-xl-left { right: auto; left: 0px; } .dropdown-menu-xl-right { right: 0px; left: auto; } } .dropup .dropdown-menu { top: auto; bottom: 100%; margin-top: 0px; margin-bottom: 0.125rem; } .dropup .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-width: 0px 0.3em 0.3em; border-top-style: initial; border-top-color: initial; border-right-style: solid; border-right-color: transparent; border-bottom-style: solid; border-bottom-color: initial; border-left-style: solid; border-left-color: transparent; } .dropup .dropdown-toggle:empty::after { margin-left: 0px; } .dropright .dropdown-menu { top: 0px; right: auto; left: 100%; margin-top: 0px; margin-left: 0.125rem; } .dropright .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-width: 0.3em 0px 0.3em 0.3em; border-top-style: solid; border-top-color: transparent; border-right-style: initial; border-right-color: initial; border-bottom-style: solid; border-bottom-color: transparent; border-left-style: solid; border-left-color: initial; } .dropright .dropdown-toggle:empty::after { margin-left: 0px; } .dropright .dropdown-toggle::after { vertical-align: 0px; } .dropleft .dropdown-menu { top: 0px; right: 100%; left: auto; margin-top: 0px; margin-right: 0.125rem; } .dropleft .dropdown-toggle::after { display: inline-block; margin-left: 0.255em; vertical-align: 0.255em; content: ""; } .dropleft .dropdown-toggle::after { display: none; } .dropleft .dropdown-toggle::before { display: inline-block; margin-right: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid transparent; border-right: 0.3em solid; border-bottom: 0.3em solid transparent; } .dropleft .dropdown-toggle:empty::after { margin-left: 0px; } .dropleft .dropdown-toggle::before { vertical-align: 0px; } .dropdown-menu[x-placement^=“bottom”], .dropdown-menu[x-placement^=“left”], .dropdown-menu[x-placement^=“right”], .dropdown-menu[x-placement^=“top”] { right: auto; bottom: auto; } .dropdown-divider { height: 0px; margin: 0.5rem 0px; overflow: hidden; border-top: 1px solid rgb(233, 236, 239); } .dropdown-item { display: block; width: 100%; padding: 0.25rem 1.5rem; clear: both; font-weight: 400; color: rgb(33, 37, 41); text-align: inherit; white-space: nowrap; background-color: transparent; border: 0px; } .dropdown-item:focus, .dropdown-item:hover { color: rgb(22, 24, 27); text-decoration: none; background-color: rgb(233, 236, 239); } .dropdown-item.active, .dropdown-item:active { color: rgb(255, 255, 255); text-decoration: none; background-color: rgb(0, 123, 255); } .dropdown-item.disabled, .dropdown-item:disabled { color: rgb(173, 181, 189); pointer-events: none; background-color: transparent; } .dropdown-menu.show { display: block; } .dropdown-header { display: block; padding: 0.5rem 1.5rem; margin-bottom: 0px; font-size: 0.875rem; color: rgb(108, 117, 125); white-space: nowrap; } .dropdown-item-text { display: block; padding: 0.25rem 1.5rem; color: rgb(33, 37, 41); } .btn-group, .btn-group-vertical { position: relative; display: inline-flex; vertical-align: middle; } .btn-group-vertical > .btn, .btn-group > .btn { position: relative; flex: 1 1 auto; } .btn-group-vertical > .btn:hover, .btn-group > .btn:hover { z-index: 1; } .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus { z-index: 1; } .btn-toolbar { display: flex; flex-wrap: wrap; justify-content: flex-start; } .btn-toolbar .input-group { width: auto; } .btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) { margin-left: -1px; } .btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0px; border-bottom-right-radius: 0px; } .btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) { border-top-left-radius: 0px; border-bottom-left-radius: 0px; } .dropdown-toggle-split { padding-right: 0.5625rem; padding-left: 0.5625rem; } .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after { margin-left: 0px; } .dropleft .dropdown-toggle-split::before { margin-right: 0px; } .btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split { padding-right: 0.375rem; padding-left: 0.375rem; } .btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split { padding-right: 0.75rem; padding-left: 0.75rem; } .btn-group-vertical { flex-direction: column; align-items: flex-start; justify-content: center; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group { width: 100%; } .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) { margin-top: -1px; } .btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; } .btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn:not(:first-child) { border-top-left-radius: 0px; border-top-right-radius: 0px; } .btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn { margin-bottom: 0px; } .btn-group-toggle > .btn input[type=“checkbox”], .btn-group-toggle > .btn input[type=“radio”], .btn-group-toggle > .btn-group > .btn input[type=“checkbox”], .btn-group-toggle > .btn-group > .btn input[type=“radio”] { position: absolute; clip: rect(0px, 0px, 0px, 0px); pointer-events: none; } .input-group { position: relative; display: flex; flex-wrap: wrap; align-items: stretch; width: 100%; } .input-group > .custom-file, .input-group > .custom-select, .input-group > .form-control, .input-group > .form-control-plaintext { position: relative; flex: 1 1 auto; width: 1%; min-width: 0px; margin-bottom: 0px; } .input-group > .custom-file + .custom-file, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .form-control, .input-group > .custom-select + .custom-file, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .form-control, .input-group > .form-control + .custom-file, .input-group > .form-control + .custom-select, .input-group > .form-control + .form-control, .input-group > .form-control-plaintext + .custom-file, .input-group > .form-control-plaintext + .custom-select, .input-group > .form-control-plaintext + .form-control { margin-left: -1px; } .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label, .input-group > .custom-select:focus, .input-group > .form-control:focus { z-index: 3; } .input-group > .custom-file .custom-file-input:focus { z-index: 4; } .input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) { border-top-left-radius: 0px; border-bottom-left-radius: 0px; } .input-group > .custom-file { display: flex; align-items: center; } .input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label { border-top-left-radius: 0px; border-bottom-left-radius: 0px; } .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after, .input-group:not(.has-validation) > .custom-select:not(:last-child), .input-group:not(.has-validation) > .form-control:not(:last-child) { border-top-right-radius: 0px; border-bottom-right-radius: 0px; } .input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after, .input-group.has-validation > .custom-select:nth-last-child(n+3), .input-group.has-validation > .form-control:nth-last-child(n+3) { border-top-right-radius: 0px; border-bottom-right-radius: 0px; } .input-group-append, .input-group-prepend { display: flex; } .input-group-append .btn, .input-group-prepend .btn { position: relative; z-index: 2; } .input-group-append .btn:focus, .input-group-prepend .btn:focus { z-index: 3; } .input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .btn, .input-group-append .input-group-text + .input-group-text, .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-prepend .input-group-text + .input-group-text { margin-left: -1px; } .input-group-prepend { margin-right: -1px; } .input-group-append { margin-left: -1px; } .input-group-text { display: flex; align-items: center; padding: 0.375rem 0.75rem; margin-bottom: 0px; font-size: 1rem; font-weight: 400; line-height: 1.5; color: rgb(73, 80, 87); text-align: center; white-space: nowrap; background-color: rgb(233, 236, 239); border: 1px solid rgb(206, 212, 218); border-radius: 0.25rem; } .input-group-text input[type=“checkbox”], .input-group-text input[type=“radio”] { margin-top: 0px; } .input-group-lg > .custom-select, .input-group-lg > .form-control:not(textarea) { height: calc(1.5em + 2px + 1rem); } .input-group-lg > .custom-select, .input-group-lg > .form-control, .input-group-lg > .input-group-append > .btn, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-prepend > .input-group-text { padding: 0.5rem 1rem; font-size: 1.25rem; line-height: 1.5; border-radius: 0.3rem; } .input-group-sm > .custom-select, .input-group-sm > .form-control:not(textarea) { height: calc(1.5em + 2px + 0.5rem); } .input-group-sm > .custom-select, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text { padding: 0.25rem 0.5rem; font-size: 0.875rem; line-height: 1.5; border-radius: 0.2rem; } .input-group-lg > .custom-select, .input-group-sm > .custom-select { padding-right: 1.75rem; } .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn, .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text, .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn, .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text { border-top-right-radius: 0px; border-bottom-right-radius: 0px; } .input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text { border-top-left-radius: 0px; border-bottom-left-radius: 0px; } .custom-control { position: relative; z-index: 1; display: block; min-height: 1.5rem; padding-left: 1.5rem; -webkit-print-color-adjust: exact; } .custom-control-inline { display: inline-flex; margin-right: 1rem; } .custom-control-input { position: absolute; left: 0px; z-index: -1; width: 1rem; height: 1.25rem; opacity: 0; } .custom-control-input:checked ~ .custom-control-label::before { color: rgb(255, 255, 255); border-color: rgb(0, 123, 255); background-color: rgb(0, 123, 255); } .custom-control-input:focus ~ .custom-control-label::before { box-shadow: rgba(0, 123, 255, 0.25) 0px 0px 0px 0.2rem; } .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { border-color: rgb(128, 189, 255); } .custom-control-input:not(:disabled):active ~ .custom-control-label::before { color: rgb(255, 255, 255); background-color: rgb(179, 215, 255); border-color: rgb(179, 215, 255); } .custom-control-input:disabled ~ .custom-control-label, .custom-control-input[disabled] ~ .custom-control-label { color: rgb(108, 117, 125); } .custom-control-input:disabled ~ .custom-control-label::before, .custom-control-input[disabled] ~ .custom-control-label::before { background-color: rgb(233, 236, 239); } .custom-control-label { position: relative; margin-bottom: 0px; vertical-align: top; } .custom-control-label::before { position: absolute; top: 0.25rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; pointer-events: none; content: ""; background-color: rgb(255, 255, 255); border: 1px solid rgb(173, 181, 189); } .custom-control-label::after { position: absolute; top: 0.25rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; content: ""; background: 50% center / 50% 50% no-repeat; } .custom-checkbox .custom-control-label::before { border-radius: 0.25rem; } .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘8’ height=‘8’ viewBox=‘0 0 8 8’%3e%3cpath fill=‘%23fff’ d=‘M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z’/%3e%3c/svg%3e”); } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { border-color: rgb(0, 123, 255); background-color: rgb(0, 123, 255); } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘4’ height=‘4’ viewBox=‘0 0 4 4’%3e%3cpath stroke=‘%23fff’ d=‘M0 2h4’/%3e%3c/svg%3e”); } .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } .custom-radio .custom-control-label::before { border-radius: 50%; } .custom-radio .custom-control-input:checked ~ .custom-control-label::after { background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘12’ height=‘12’ viewBox=’-4 -4 8 8’%3e%3ccircle r=‘3’ fill=‘%23fff’/%3e%3c/svg%3e”); } .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } .custom-switch { padding-left: 2.25rem; } .custom-switch .custom-control-label::before { left: -2.25rem; width: 1.75rem; pointer-events: all; border-radius: 0.5rem; } .custom-switch .custom-control-label::after { top: calc(2px + 0.25rem); left: calc(2px - 2.25rem); width: calc(-4px + 1rem); height: calc(-4px + 1rem); background-color: rgb(173, 181, 189); border-radius: 0.5rem; transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .custom-switch .custom-control-label::after { transition: none; } } .custom-switch .custom-control-input:checked ~ .custom-control-label::after { background-color: rgb(255, 255, 255); transform: translateX(0.75rem); } .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(0, 123, 255, 0.5); } .custom-select { display: inline-block; width: 100%; height: calc(1.5em + 2px + 0.75rem); padding: 0.375rem 1.75rem 0.375rem 0.75rem; font-size: 1rem; font-weight: 400; line-height: 1.5; color: rgb(73, 80, 87); vertical-align: middle; background: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘4’ height=‘5’ viewBox=‘0 0 4 5’%3e%3cpath fill=‘%23343a40’ d=‘M2 0L0 2h4zm0 5L0 3h4z’/%3e%3c/svg%3e”) right 0.75rem center / 8px 10px no-repeat rgb(255, 255, 255); border: 1px solid rgb(206, 212, 218); border-radius: 0.25rem; appearance: none; } .custom-select:focus { border-color: rgb(128, 189, 255); outline: 0px; box-shadow: rgba(0, 123, 255, 0.25) 0px 0px 0px 0.2rem; } .custom-select[multiple], .custom-select[size]:not([size=“1”]) { height: auto; padding-right: 0.75rem; background-image: none; } .custom-select:disabled { color: rgb(108, 117, 125); background-color: rgb(233, 236, 239); } .custom-select-sm { height: calc(1.5em + 2px + 0.5rem); padding-top: 0.25rem; padding-bottom: 0.25rem; padding-left: 0.5rem; font-size: 0.875rem; } .custom-select-lg { height: calc(1.5em + 2px + 1rem); padding-top: 0.5rem; padding-bottom: 0.5rem; padding-left: 1rem; font-size: 1.25rem; } .custom-file { position: relative; display: inline-block; width: 100%; height: calc(1.5em + 2px + 0.75rem); margin-bottom: 0px; } .custom-file-input { position: relative; z-index: 2; width: 100%; height: calc(1.5em + 2px + 0.75rem); margin: 0px; overflow: hidden; opacity: 0; } .custom-file-input:focus ~ .custom-file-label { border-color: rgb(128, 189, 255); box-shadow: rgba(0, 123, 255, 0.25) 0px 0px 0px 0.2rem; } .custom-file-input:disabled ~ .custom-file-label, .custom-file-input[disabled] ~ .custom-file-label { background-color: rgb(233, 236, 239); } .custom-file-input:lang(en) ~ .custom-file-label::after { content: “Browse”; } .custom-file-input ~ .custom-file-label[data-browse]::after { content: attr(data-browse); } .custom-file-label { position: absolute; top: 0px; right: 0px; left: 0px; z-index: 1; height: calc(1.5em + 2px + 0.75rem); padding: 0.375rem 0.75rem; overflow: hidden; font-weight: 400; line-height: 1.5; color: rgb(73, 80, 87); background-color: rgb(255, 255, 255); border: 1px solid rgb(206, 212, 218); border-radius: 0.25rem; } .custom-file-label::after { position: absolute; top: 0px; right: 0px; bottom: 0px; z-index: 3; display: block; height: calc(1.5em + 0.75rem); padding: 0.375rem 0.75rem; line-height: 1.5; color: rgb(73, 80, 87); content: “Browse”; background-color: rgb(233, 236, 239); border-left: inherit; border-radius: 0px 0.25rem 0.25rem 0px; } .custom-range { width: 100%; height: 1.4rem; padding: 0px; background-color: transparent; appearance: none; } .custom-range:focus { outline: 0px; } .custom-range:focus::-webkit-slider-thumb { box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px, rgba(0, 123, 255, 0.25) 0px 0px 0px 0.2rem; } .custom-range::-webkit-slider-thumb { width: 1rem; height: 1rem; margin-top: -0.25rem; background-color: rgb(0, 123, 255); border: 0px; border-radius: 1rem; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; appearance: none; } @media (prefers-reduced-motion: reduce) { .custom-range::-webkit-slider-thumb { transition: none; } } .custom-range::-webkit-slider-thumb:active { background-color: rgb(179, 215, 255); } .custom-range::-webkit-slider-runnable-track { width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: rgb(222, 226, 230); border-color: transparent; border-radius: 1rem; } @media (prefers-reduced-motion: reduce) { } @media (prefers-reduced-motion: reduce) { } .custom-range:disabled::-webkit-slider-thumb { background-color: rgb(173, 181, 189); } .custom-range:disabled::-webkit-slider-runnable-track { cursor: default; } .custom-control-label::before, .custom-file-label, .custom-select { transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .custom-control-label::before, .custom-file-label, .custom-select { transition: none; } } .nav { display: flex; flex-wrap: wrap; padding-left: 0px; margin-bottom: 0px; list-style: none; } .nav-link { display: block; padding: 0.5rem 1rem; } .nav-link:focus, .nav-link:hover { text-decoration: none; } .nav-link.disabled { color: rgb(108, 117, 125); pointer-events: none; cursor: default; } .nav-tabs { border-bottom: 1px solid rgb(222, 226, 230); } .nav-tabs .nav-link { margin-bottom: -1px; border: 1px solid transparent; border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; } .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover { border-color: rgb(233, 236, 239) rgb(233, 236, 239) rgb(222, 226, 230); } .nav-tabs .nav-link.disabled { color: rgb(108, 117, 125); background-color: transparent; border-color: transparent; } .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active { color: rgb(73, 80, 87); background-color: rgb(255, 255, 255); border-color: rgb(222, 226, 230) rgb(222, 226, 230) rgb(255, 255, 255); } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0px; border-top-right-radius: 0px; } .nav-pills .nav-link { border-radius: 0.25rem; } .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: rgb(255, 255, 255); background-color: rgb(0, 123, 255); } .nav-fill .nav-item, .nav-fill > .nav-link { flex: 1 1 auto; text-align: center; } .nav-justified .nav-item, .nav-justified > .nav-link { flex-basis: 0px; flex-grow: 1; text-align: center; } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .navbar { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 0.5rem 1rem; } .navbar .container, .navbar .container-fluid, .navbar .container-lg, .navbar .container-md, .navbar .container-sm, .navbar .container-xl { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; } .navbar-brand { display: inline-block; padding-top: 0.3125rem; padding-bottom: 0.3125rem; margin-right: 1rem; font-size: 1.25rem; line-height: inherit; white-space: nowrap; } .navbar-brand:focus, .navbar-brand:hover { text-decoration: none; } .navbar-nav { display: flex; flex-direction: column; padding-left: 0px; margin-bottom: 0px; list-style: none; } .navbar-nav .nav-link { padding-right: 0px; padding-left: 0px; } .navbar-nav .dropdown-menu { position: static; float: none; } .navbar-text { display: inline-block; padding-top: 0.5rem; padding-bottom: 0.5rem; } .navbar-collapse { flex-basis: 100%; flex-grow: 1; align-items: center; } .navbar-toggler { padding: 0.25rem 0.75rem; font-size: 1.25rem; line-height: 1; background-color: transparent; border: 1px solid transparent; border-radius: 0.25rem; } .navbar-toggler:focus, .navbar-toggler:hover { text-decoration: none; } .navbar-toggler-icon { display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; content: ""; background: 50% center / 100% 100% no-repeat; } .navbar-nav-scroll { max-height: 75vh; overflow-y: auto; } @media (max-width: 575.98px) { .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-xl { padding-right: 0px; padding-left: 0px; } } @media (min-width: 576px) { .navbar-expand-sm { flex-flow: row; justify-content: flex-start; } .navbar-expand-sm .navbar-nav { flex-direction: row; } .navbar-expand-sm .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-sm .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-xl { flex-wrap: nowrap; } .navbar-expand-sm .navbar-nav-scroll { overflow: visible; } .navbar-expand-sm .navbar-collapse { display: flex !important; flex-basis: auto; } .navbar-expand-sm .navbar-toggler { display: none; } } @media (max-width: 767.98px) { .navbar-expand-md > .container, .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-md, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-xl { padding-right: 0px; padding-left: 0px; } } @media (min-width: 768px) { .navbar-expand-md { flex-flow: row; justify-content: flex-start; } .navbar-expand-md .navbar-nav { flex-direction: row; } .navbar-expand-md .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-md .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand-md > .container, .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-md, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-xl { flex-wrap: nowrap; } .navbar-expand-md .navbar-nav-scroll { overflow: visible; } .navbar-expand-md .navbar-collapse { display: flex !important; flex-basis: auto; } .navbar-expand-md .navbar-toggler { display: none; } } @media (max-width: 991.98px) { .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-xl { padding-right: 0px; padding-left: 0px; } } @media (min-width: 992px) { .navbar-expand-lg { flex-flow: row; justify-content: flex-start; } .navbar-expand-lg .navbar-nav { flex-direction: row; } .navbar-expand-lg .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-lg .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-xl { flex-wrap: nowrap; } .navbar-expand-lg .navbar-nav-scroll { overflow: visible; } .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto; } .navbar-expand-lg .navbar-toggler { display: none; } } @media (max-width: 1199.98px) { .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-xl { padding-right: 0px; padding-left: 0px; } } @media (min-width: 1200px) { .navbar-expand-xl { flex-flow: row; justify-content: flex-start; } .navbar-expand-xl .navbar-nav { flex-direction: row; } .navbar-expand-xl .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-xl .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-xl { flex-wrap: nowrap; } .navbar-expand-xl .navbar-nav-scroll { overflow: visible; } .navbar-expand-xl .navbar-collapse { display: flex !important; flex-basis: auto; } .navbar-expand-xl .navbar-toggler { display: none; } } .navbar-expand { flex-flow: row; justify-content: flex-start; } .navbar-expand > .container, .navbar-expand > .container-fluid, .navbar-expand > .container-lg, .navbar-expand > .container-md, .navbar-expand > .container-sm, .navbar-expand > .container-xl { padding-right: 0px; padding-left: 0px; } .navbar-expand .navbar-nav { flex-direction: row; } .navbar-expand .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand > .container, .navbar-expand > .container-fluid, .navbar-expand > .container-lg, .navbar-expand > .container-md, .navbar-expand > .container-sm, .navbar-expand > .container-xl { flex-wrap: nowrap; } .navbar-expand .navbar-nav-scroll { overflow: visible; } .navbar-expand .navbar-collapse { display: flex !important; flex-basis: auto; } .navbar-expand .navbar-toggler { display: none; } .navbar-light .navbar-brand { color: rgba(0, 0, 0, 0.9); } .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover { color: rgba(0, 0, 0, 0.9); } .navbar-light .navbar-nav .nav-link { color: rgba(0, 0, 0, 0.5); } .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover { color: rgba(0, 0, 0, 0.7); } .navbar-light .navbar-nav .nav-link.disabled { color: rgba(0, 0, 0, 0.3); } .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link { color: rgba(0, 0, 0, 0.9); } .navbar-light .navbar-toggler { color: rgba(0, 0, 0, 0.5); border-color: rgba(0, 0, 0, 0.1); } .navbar-light .navbar-toggler-icon { background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘30’ height=‘30’ viewBox=‘0 0 30 30’%3e%3cpath stroke=‘rgba%280, 0, 0, 0.5%29’ stroke-linecap=‘round’ stroke-miterlimit=‘10’ stroke-width=‘2’ d=‘M4 7h22M4 15h22M4 23h22’/%3e%3c/svg%3e”); } .navbar-light .navbar-text { color: rgba(0, 0, 0, 0.5); } .navbar-light .navbar-text a { color: rgba(0, 0, 0, 0.9); } .navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover { color: rgba(0, 0, 0, 0.9); } .navbar-dark .navbar-brand { color: rgb(255, 255, 255); } .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover { color: rgb(255, 255, 255); } .navbar-dark .navbar-nav .nav-link { color: rgba(255, 255, 255, 0.5); } .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover { color: rgba(255, 255, 255, 0.75); } .navbar-dark .navbar-nav .nav-link.disabled { color: rgba(255, 255, 255, 0.25); } .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link { color: rgb(255, 255, 255); } .navbar-dark .navbar-toggler { color: rgba(255, 255, 255, 0.5); border-color: rgba(255, 255, 255, 0.1); } .navbar-dark .navbar-toggler-icon { background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ width=‘30’ height=‘30’ viewBox=‘0 0 30 30’%3e%3cpath stroke=‘rgba%28255, 255, 255, 0.5%29’ stroke-linecap=‘round’ stroke-miterlimit=‘10’ stroke-width=‘2’ d=‘M4 7h22M4 15h22M4 23h22’/%3e%3c/svg%3e”); } .navbar-dark .navbar-text { color: rgba(255, 255, 255, 0.5); } .navbar-dark .navbar-text a { color: rgb(255, 255, 255); } .navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover { color: rgb(255, 255, 255); } .card { position: relative; display: flex; flex-direction: column; min-width: 0px; overflow-wrap: break-word; background-color: rgb(255, 255, 255); background-clip: border-box; border: 1px solid rgba(0, 0, 0, 0.125); border-radius: 0.25rem; } .card > hr { margin-right: 0px; margin-left: 0px; } .card > .list-group { border-top: inherit; border-bottom: inherit; } .card > .list-group:first-child { border-top-width: 0px; border-top-left-radius: calc(-1px + 0.25rem); border-top-right-radius: calc(-1px + 0.25rem); } .card > .list-group:last-child { border-bottom-width: 0px; border-bottom-right-radius: calc(-1px + 0.25rem); border-bottom-left-radius: calc(-1px + 0.25rem); } .card > .card-header + .list-group, .card > .list-group + .card-footer { border-top: 0px; } .card-body { flex: 1 1 auto; min-height: 1px; padding: 1.25rem; } .card-title { margin-bottom: 0.75rem; } .card-subtitle { margin-top: -0.375rem; margin-bottom: 0px; } .card-text:last-child { margin-bottom: 0px; } .card-link:hover { text-decoration: none; } .card-link + .card-link { margin-left: 1.25rem; } .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0px; background-color: rgba(0, 0, 0, 0.03); border-bottom: 1px solid rgba(0, 0, 0, 0.125); } .card-header:first-child { border-radius: calc(-1px + 0.25rem) calc(-1px + 0.25rem) 0px 0px; } .card-footer { padding: 0.75rem 1.25rem; background-color: rgba(0, 0, 0, 0.03); border-top: 1px solid rgba(0, 0, 0, 0.125); } .card-footer:last-child { border-radius: 0px 0px calc(-1px + 0.25rem) calc(-1px + 0.25rem); } .card-header-tabs { margin-right: -0.625rem; margin-bottom: -0.75rem; margin-left: -0.625rem; border-bottom: 0px; } .card-header-pills { margin-right: -0.625rem; margin-left: -0.625rem; } .card-img-overlay { position: absolute; inset: 0px; padding: 1.25rem; border-radius: calc(-1px + 0.25rem); } .card-img, .card-img-bottom, .card-img-top { flex-shrink: 0; width: 100%; } .card-img, .card-img-top { border-top-left-radius: calc(-1px + 0.25rem); border-top-right-radius: calc(-1px + 0.25rem); } .card-img, .card-img-bottom { border-bottom-right-radius: calc(-1px + 0.25rem); border-bottom-left-radius: calc(-1px + 0.25rem); } .card-deck .card { margin-bottom: 15px; } @media (min-width: 576px) { .card-deck { display: flex; flex-flow: wrap; margin-right: -15px; margin-left: -15px; } .card-deck .card { flex: 1 0 0%; margin-right: 15px; margin-bottom: 0px; margin-left: 15px; } } .card-group > .card { margin-bottom: 15px; } @media (min-width: 576px) { .card-group { display: flex; flex-flow: wrap; } .card-group > .card { flex: 1 0 0%; margin-bottom: 0px; } .card-group > .card + .card { margin-left: 0px; border-left: 0px; } .card-group > .card:not(:last-child) { border-top-right-radius: 0px; border-bottom-right-radius: 0px; } .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top { border-top-right-radius: 0px; } .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom { border-bottom-right-radius: 0px; } .card-group > .card:not(:first-child) { border-top-left-radius: 0px; border-bottom-left-radius: 0px; } .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top { border-top-left-radius: 0px; } .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom { border-bottom-left-radius: 0px; } } .card-columns .card { margin-bottom: 0.75rem; } @media (min-width: 576px) { .card-columns { column-count: 3; column-gap: 1.25rem; orphans: 1; widows: 1; } .card-columns .card { display: inline-block; width: 100%; } } .accordion { overflow-anchor: none; } .accordion > .card { overflow: hidden; } .accordion > .card:not(:last-of-type) { border-bottom: 0px; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; } .accordion > .card:not(:first-of-type) { border-top-left-radius: 0px; border-top-right-radius: 0px; } .accordion > .card > .card-header { border-radius: 0px; margin-bottom: -1px; } .breadcrumb { display: flex; flex-wrap: wrap; padding: 0.75rem 1rem; margin-bottom: 1rem; list-style: none; background-color: rgb(233, 236, 239); border-radius: 0.25rem; } .breadcrumb-item + .breadcrumb-item { padding-left: 0.5rem; } .breadcrumb-item + .breadcrumb-item::before { float: left; padding-right: 0.5rem; color: rgb(108, 117, 125); content: ”/”; } .breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: underline; } .breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: none; } .breadcrumb-item.active { color: rgb(108, 117, 125); } .pagination { display: flex; padding-left: 0px; list-style: none; border-radius: 0.25rem; } .page-link { position: relative; display: block; padding: 0.5rem 0.75rem; margin-left: -1px; line-height: 1.25; color: rgb(0, 123, 255); background-color: rgb(255, 255, 255); border: 1px solid rgb(222, 226, 230); } .page-link:hover { z-index: 2; color: rgb(0, 86, 179); text-decoration: none; background-color: rgb(233, 236, 239); border-color: rgb(222, 226, 230); } .page-link:focus { z-index: 3; outline: 0px; box-shadow: rgba(0, 123, 255, 0.25) 0px 0px 0px 0.2rem; } .page-item:first-child .page-link { margin-left: 0px; border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } .page-item:last-child .page-link { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; } .page-item.active .page-link { z-index: 3; color: rgb(255, 255, 255); background-color: rgb(0, 123, 255); border-color: rgb(0, 123, 255); } .page-item.disabled .page-link { color: rgb(108, 117, 125); pointer-events: none; cursor: auto; background-color: rgb(255, 255, 255); border-color: rgb(222, 226, 230); } .pagination-lg .page-link { padding: 0.75rem 1.5rem; font-size: 1.25rem; line-height: 1.5; } .pagination-lg .page-item:first-child .page-link { border-top-left-radius: 0.3rem; border-bottom-left-radius: 0.3rem; } .pagination-lg .page-item:last-child .page-link { border-top-right-radius: 0.3rem; border-bottom-right-radius: 0.3rem; } .pagination-sm .page-link { padding: 0.25rem 0.5rem; font-size: 0.875rem; line-height: 1.5; } .pagination-sm .page-item:first-child .page-link { border-top-left-radius: 0.2rem; border-bottom-left-radius: 0.2rem; } .pagination-sm .page-item:last-child .page-link { border-top-right-radius: 0.2rem; border-bottom-right-radius: 0.2rem; } .badge { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } @media (prefers-reduced-motion: reduce) { .badge { transition: none; } } a.badge:focus, a.badge:hover { text-decoration: none; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .badge-pill { padding-right: 0.6em; padding-left: 0.6em; border-radius: 10rem; } .badge-primary { color: rgb(255, 255, 255); background-color: rgb(0, 123, 255); } a.badge-primary:focus, a.badge-primary:hover { color: rgb(255, 255, 255); background-color: rgb(0, 98, 204); } a.badge-primary.focus, a.badge-primary:focus { outline: 0px; box-shadow: rgba(0, 123, 255, 0.5) 0px 0px 0px 0.2rem; } .badge-secondary { color: rgb(255, 255, 255); background-color: rgb(108, 117, 125); } a.badge-secondary:focus, a.badge-secondary:hover { color: rgb(255, 255, 255); background-color: rgb(84, 91, 98); } a.badge-secondary.focus, a.badge-secondary:focus { outline: 0px; box-shadow: rgba(108, 117, 125, 0.5) 0px 0px 0px 0.2rem; } .badge-success { color: rgb(255, 255, 255); background-color: rgb(40, 167, 69); } a.badge-success:focus, a.badge-success:hover { color: rgb(255, 255, 255); background-color: rgb(30, 126, 52); } a.badge-success.focus, a.badge-success:focus { outline: 0px; box-shadow: rgba(40, 167, 69, 0.5) 0px 0px 0px 0.2rem; } .badge-info { color: rgb(255, 255, 255); background-color: rgb(23, 162, 184); } a.badge-info:focus, a.badge-info:hover { color: rgb(255, 255, 255); background-color: rgb(17, 122, 139); } a.badge-info.focus, a.badge-info:focus { outline: 0px; box-shadow: rgba(23, 162, 184, 0.5) 0px 0px 0px 0.2rem; } .badge-warning { color: rgb(33, 37, 41); background-color: rgb(255, 193, 7); } a.badge-warning:focus, a.badge-warning:hover { color: rgb(33, 37, 41); background-color: rgb(211, 158, 0); } a.badge-warning.focus, a.badge-warning:focus { outline: 0px; box-shadow: rgba(255, 193, 7, 0.5) 0px 0px 0px 0.2rem; } .badge-danger { color: rgb(255, 255, 255); background-color: rgb(220, 53, 69); } a.badge-danger:focus, a.badge-danger:hover { color: rgb(255, 255, 255); background-color: rgb(189, 33, 48); } a.badge-danger.focus, a.badge-danger:focus { outline: 0px; box-shadow: rgba(220, 53, 69, 0.5) 0px 0px 0px 0.2rem; } .badge-light { color: rgb(33, 37, 41); background-color: rgb(248, 249, 250); } a.badge-light:focus, a.badge-light:hover { color: rgb(33, 37, 41); background-color: rgb(218, 224, 229); } a.badge-light.focus, a.badge-light:focus { outline: 0px; box-shadow: rgba(248, 249, 250, 0.5) 0px 0px 0px 0.2rem; } .badge-dark { color: rgb(255, 255, 255); background-color: rgb(52, 58, 64); } a.badge-dark:focus, a.badge-dark:hover { color: rgb(255, 255, 255); background-color: rgb(29, 33, 36); } a.badge-dark.focus, a.badge-dark:focus { outline: 0px; box-shadow: rgba(52, 58, 64, 0.5) 0px 0px 0px 0.2rem; } .jumbotron { padding: 2rem 1rem; margin-bottom: 2rem; background-color: rgb(233, 236, 239); border-radius: 0.3rem; } @media (min-width: 576px) { .jumbotron { padding: 4rem 2rem; } } .jumbotron-fluid { padding-right: 0px; padding-left: 0px; border-radius: 0px; } .alert { position: relative; padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0.25rem; } .alert-heading { color: inherit; } .alert-link { font-weight: 700; } .alert-dismissible { padding-right: 4rem; } .alert-dismissible .close { position: absolute; top: 0px; right: 0px; z-index: 2; padding: 0.75rem 1.25rem; color: inherit; } .alert-primary { color: rgb(0, 64, 133); background-color: rgb(204, 229, 255); border-color: rgb(184, 218, 255); } .alert-primary hr { border-top-color: rgb(159, 205, 255); } .alert-primary .alert-link { color: rgb(0, 39, 82); } .alert-secondary { color: rgb(56, 61, 65); background-color: rgb(226, 227, 229); border-color: rgb(214, 216, 219); } .alert-secondary hr { border-top-color: rgb(200, 203, 207); } .alert-secondary .alert-link { color: rgb(32, 35, 38); } .alert-success { color: rgb(21, 87, 36); background-color: rgb(212, 237, 218); border-color: rgb(195, 230, 203); } .alert-success hr { border-top-color: rgb(177, 223, 187); } .alert-success .alert-link { color: rgb(11, 46, 19); } .alert-info { color: rgb(12, 84, 96); background-color: rgb(209, 236, 241); border-color: rgb(190, 229, 235); } .alert-info hr { border-top-color: rgb(171, 221, 229); } .alert-info .alert-link { color: rgb(6, 44, 51); } .alert-warning { color: rgb(133, 100, 4); background-color: rgb(255, 243, 205); border-color: rgb(255, 238, 186); } .alert-warning hr { border-top-color: rgb(255, 232, 161); } .alert-warning .alert-link { color: rgb(83, 63, 3); } .alert-danger { color: rgb(114, 28, 36); background-color: rgb(248, 215, 218); border-color: rgb(245, 198, 203); } .alert-danger hr { border-top-color: rgb(241, 176, 183); } .alert-danger .alert-link { color: rgb(73, 18, 23); } .alert-light { color: rgb(129, 129, 130); background-color: rgb(254, 254, 254); border-color: rgb(253, 253, 254); } .alert-light hr { border-top-color: rgb(236, 236, 246); } .alert-light .alert-link { color: rgb(104, 104, 104); } .alert-dark { color: rgb(27, 30, 33); background-color: rgb(214, 216, 217); border-color: rgb(198, 200, 202); } .alert-dark hr { border-top-color: rgb(185, 187, 190); } .alert-dark .alert-link { color: rgb(4, 5, 5); } @-webkit-keyframes progress-bar-stripes { 0% { background-position: 1rem 0px; } 100% { background-position: 0px 0px; } } @keyframes progress-bar-stripes { 0% { background-position: 1rem 0px; } 100% { background-position: 0px 0px; } } .progress { display: flex; height: 1rem; overflow: hidden; line-height: 0; font-size: 0.75rem; background-color: rgb(233, 236, 239); border-radius: 0.25rem; } .progress-bar { display: flex; flex-direction: column; justify-content: center; overflow: hidden; color: rgb(255, 255, 255); text-align: center; white-space: nowrap; background-color: rgb(0, 123, 255); transition: width 0.6s; } @media (prefers-reduced-motion: reduce) { .progress-bar { transition: none; } } .progress-bar-striped { background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem; } .progress-bar-animated { animation: 1s linear 0s infinite normal none running progress-bar-stripes; } @media (prefers-reduced-motion: reduce) { .progress-bar-animated { animation: auto ease 0s 1 normal none running none; } } .media { display: flex; align-items: flex-start; } .media-body { flex: 1 1 0%; } .list-group { display: flex; flex-direction: column; padding-left: 0px; margin-bottom: 0px; border-radius: 0.25rem; } .list-group-item-action { width: 100%; color: rgb(73, 80, 87); text-align: inherit; } .list-group-item-action:focus, .list-group-item-action:hover { z-index: 1; color: rgb(73, 80, 87); text-decoration: none; background-color: rgb(248, 249, 250); } .list-group-item-action:active { color: rgb(33, 37, 41); background-color: rgb(233, 236, 239); } .list-group-item { position: relative; display: block; padding: 0.75rem 1.25rem; background-color: rgb(255, 255, 255); border: 1px solid rgba(0, 0, 0, 0.125); } .list-group-item:first-child { border-top-left-radius: inherit; border-top-right-radius: inherit; } .list-group-item:last-child { border-bottom-right-radius: inherit; border-bottom-left-radius: inherit; } .list-group-item.disabled, .list-group-item:disabled { color: rgb(108, 117, 125); pointer-events: none; background-color: rgb(255, 255, 255); } .list-group-item.active { z-index: 2; color: rgb(255, 255, 255); background-color: rgb(0, 123, 255); border-color: rgb(0, 123, 255); } .list-group-item + .list-group-item { border-top-width: 0px; } .list-group-item + .list-group-item.active { margin-top: -1px; border-top-width: 1px; } .list-group-horizontal { flex-direction: row; } .list-group-horizontal > .list-group-item:first-child { border-bottom-left-radius: 0.25rem; border-top-right-radius: 0px; } .list-group-horizontal > .list-group-item:last-child { border-top-right-radius: 0.25rem; border-bottom-left-radius: 0px; } .list-group-horizontal > .list-group-item.active { margin-top: 0px; } .list-group-horizontal > .list-group-item + .list-group-item { border-top-width: 1px; border-left-width: 0px; } .list-group-horizontal > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } @media (min-width: 576px) { .list-group-horizontal-sm { flex-direction: row; } .list-group-horizontal-sm > .list-group-item:first-child { border-bottom-left-radius: 0.25rem; border-top-right-radius: 0px; } .list-group-horizontal-sm > .list-group-item:last-child { border-top-right-radius: 0.25rem; border-bottom-left-radius: 0px; } .list-group-horizontal-sm > .list-group-item.active { margin-top: 0px; } .list-group-horizontal-sm > .list-group-item + .list-group-item { border-top-width: 1px; border-left-width: 0px; } .list-group-horizontal-sm > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } } @media (min-width: 768px) { .list-group-horizontal-md { flex-direction: row; } .list-group-horizontal-md > .list-group-item:first-child { border-bottom-left-radius: 0.25rem; border-top-right-radius: 0px; } .list-group-horizontal-md > .list-group-item:last-child { border-top-right-radius: 0.25rem; border-bottom-left-radius: 0px; } .list-group-horizontal-md > .list-group-item.active { margin-top: 0px; } .list-group-horizontal-md > .list-group-item + .list-group-item { border-top-width: 1px; border-left-width: 0px; } .list-group-horizontal-md > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } } @media (min-width: 992px) { .list-group-horizontal-lg { flex-direction: row; } .list-group-horizontal-lg > .list-group-item:first-child { border-bottom-left-radius: 0.25rem; border-top-right-radius: 0px; } .list-group-horizontal-lg > .list-group-item:last-child { border-top-right-radius: 0.25rem; border-bottom-left-radius: 0px; } .list-group-horizontal-lg > .list-group-item.active { margin-top: 0px; } .list-group-horizontal-lg > .list-group-item + .list-group-item { border-top-width: 1px; border-left-width: 0px; } .list-group-horizontal-lg > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } } @media (min-width: 1200px) { .list-group-horizontal-xl { flex-direction: row; } .list-group-horizontal-xl > .list-group-item:first-child { border-bottom-left-radius: 0.25rem; border-top-right-radius: 0px; } .list-group-horizontal-xl > .list-group-item:last-child { border-top-right-radius: 0.25rem; border-bottom-left-radius: 0px; } .list-group-horizontal-xl > .list-group-item.active { margin-top: 0px; } .list-group-horizontal-xl > .list-group-item + .list-group-item { border-top-width: 1px; border-left-width: 0px; } .list-group-horizontal-xl > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } } .list-group-flush { border-radius: 0px; } .list-group-flush > .list-group-item { border-width: 0px 0px 1px; } .list-group-flush > .list-group-item:last-child { border-bottom-width: 0px; } .list-group-item-primary { color: rgb(0, 64, 133); background-color: rgb(184, 218, 255); } .list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover { color: rgb(0, 64, 133); background-color: rgb(159, 205, 255); } .list-group-item-primary.list-group-item-action.active { color: rgb(255, 255, 255); background-color: rgb(0, 64, 133); border-color: rgb(0, 64, 133); } .list-group-item-secondary { color: rgb(56, 61, 65); background-color: rgb(214, 216, 219); } .list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover { color: rgb(56, 61, 65); background-color: rgb(200, 203, 207); } .list-group-item-secondary.list-group-item-action.active { color: rgb(255, 255, 255); background-color: rgb(56, 61, 65); border-color: rgb(56, 61, 65); } .list-group-item-success { color: rgb(21, 87, 36); background-color: rgb(195, 230, 203); } .list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover { color: rgb(21, 87, 36); background-color: rgb(177, 223, 187); } .list-group-item-success.list-group-item-action.active { color: rgb(255, 255, 255); background-color: rgb(21, 87, 36); border-color: rgb(21, 87, 36); } .list-group-item-info { color: rgb(12, 84, 96); background-color: rgb(190, 229, 235); } .list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover { color: rgb(12, 84, 96); background-color: rgb(171, 221, 229); } .list-group-item-info.list-group-item-action.active { color: rgb(255, 255, 255); background-color: rgb(12, 84, 96); border-color: rgb(12, 84, 96); } .list-group-item-warning { color: rgb(133, 100, 4); background-color: rgb(255, 238, 186); } .list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover { color: rgb(133, 100, 4); background-color: rgb(255, 232, 161); } .list-group-item-warning.list-group-item-action.active { color: rgb(255, 255, 255); background-color: rgb(133, 100, 4); border-color: rgb(133, 100, 4); } .list-group-item-danger { color: rgb(114, 28, 36); background-color: rgb(245, 198, 203); } .list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover { color: rgb(114, 28, 36); background-color: rgb(241, 176, 183); } .list-group-item-danger.list-group-item-action.active { color: rgb(255, 255, 255); background-color: rgb(114, 28, 36); border-color: rgb(114, 28, 36); } .list-group-item-light { color: rgb(129, 129, 130); background-color: rgb(253, 253, 254); } .list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover { color: rgb(129, 129, 130); background-color: rgb(236, 236, 246); } .list-group-item-light.list-group-item-action.active { color: rgb(255, 255, 255); background-color: rgb(129, 129, 130); border-color: rgb(129, 129, 130); } .list-group-item-dark { color: rgb(27, 30, 33); background-color: rgb(198, 200, 202); } .list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover { color: rgb(27, 30, 33); background-color: rgb(185, 187, 190); } .list-group-item-dark.list-group-item-action.active { color: rgb(255, 255, 255); background-color: rgb(27, 30, 33); border-color: rgb(27, 30, 33); } .close { float: right; font-size: 1.5rem; font-weight: 700; line-height: 1; color: rgb(0, 0, 0); text-shadow: rgb(255, 255, 255) 0px 1px 0px; opacity: 0.5; } .close:hover { color: rgb(0, 0, 0); text-decoration: none; } .close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover { opacity: 0.75; } button.close { padding: 0px; background-color: transparent; border: 0px; } a.close.disabled { pointer-events: none; } .toast { flex-basis: 350px; max-width: 350px; font-size: 0.875rem; background-color: rgba(255, 255, 255, 0.85); background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.1); box-shadow: rgba(0, 0, 0, 0.1) 0px 0.25rem 0.75rem; opacity: 0; border-radius: 0.25rem; } .toast:not(:last-child) { margin-bottom: 0.75rem; } .toast.showing { opacity: 1; } .toast.show { display: block; opacity: 1; } .toast.hide { display: none; } .toast-header { display: flex; align-items: center; padding: 0.25rem 0.75rem; color: rgb(108, 117, 125); background-color: rgba(255, 255, 255, 0.85); background-clip: padding-box; border-bottom: 1px solid rgba(0, 0, 0, 0.05); border-top-left-radius: calc(-1px + 0.25rem); border-top-right-radius: calc(-1px + 0.25rem); } .toast-body { padding: 0.75rem; } .modal-open { overflow: hidden; } .modal-open .modal { overflow: hidden auto; } .modal { position: fixed; top: 0px; left: 0px; z-index: 1050; display: none; width: 100%; height: 100%; overflow: hidden; outline: 0px; } .modal-dialog { position: relative; width: auto; margin: 0.5rem; pointer-events: none; } .modal.fade .modal-dialog { transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; transform: translate(0px, -50px); } @media (prefers-reduced-motion: reduce) { .modal.fade .modal-dialog { transition: none; } } .modal.show .modal-dialog { transform: none; } .modal.modal-static .modal-dialog { transform: scale(1.02); } .modal-dialog-scrollable { display: flex; max-height: calc(100% - 1rem); } .modal-dialog-scrollable .modal-content { max-height: calc(-1rem + 100vh); overflow: hidden; } .modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header { flex-shrink: 0; } .modal-dialog-scrollable .modal-body { overflow-y: auto; } .modal-dialog-centered { display: flex; align-items: center; min-height: calc(100% - 1rem); } .modal-dialog-centered::before { display: block; height: min-content; content: ""; } .modal-dialog-centered.modal-dialog-scrollable { flex-direction: column; justify-content: center; height: 100%; } .modal-dialog-centered.modal-dialog-scrollable .modal-content { max-height: none; } .modal-dialog-centered.modal-dialog-scrollable::before { content: none; } .modal-content { position: relative; display: flex; flex-direction: column; width: 100%; pointer-events: auto; background-color: rgb(255, 255, 255); background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem; outline: 0px; } .modal-backdrop { position: fixed; top: 0px; left: 0px; z-index: 1040; width: 100vw; height: 100vh; background-color: rgb(0, 0, 0); } .modal-backdrop.fade { opacity: 0; } .modal-backdrop.show { opacity: 0.5; } .modal-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 1rem; border-bottom: 1px solid rgb(222, 226, 230); border-top-left-radius: calc(-1px + 0.3rem); border-top-right-radius: calc(-1px + 0.3rem); } .modal-header .close { padding: 1rem; margin: -1rem -1rem -1rem auto; } .modal-title { margin-bottom: 0px; line-height: 1.5; } .modal-body { position: relative; flex: 1 1 auto; padding: 1rem; } .modal-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; padding: 0.75rem; border-top: 1px solid rgb(222, 226, 230); border-bottom-right-radius: calc(-1px + 0.3rem); border-bottom-left-radius: calc(-1px + 0.3rem); } .modal-footer > * { margin: 0.25rem; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 576px) { .modal-dialog { max-width: 500px; margin: 1.75rem auto; } .modal-dialog-scrollable { max-height: calc(100% - 3.5rem); } .modal-dialog-scrollable .modal-content { max-height: calc(-3.5rem + 100vh); } .modal-dialog-centered { min-height: calc(100% - 3.5rem); } .modal-dialog-centered::before { height: min-content; } .modal-sm { max-width: 300px; } } @media (min-width: 992px) { .modal-lg, .modal-xl { max-width: 800px; } } @media (min-width: 1200px) { .modal-xl { max-width: 1140px; } } .tooltip { position: absolute; z-index: 1070; display: block; margin: 0px; font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, “Helvetica Neue”, Arial, “Noto Sans”, “Liberation Sans”, sans-serif, “Apple Color Emoji”, “Segoe UI Emoji”, “Segoe UI Symbol”, “Noto Color Emoji”; font-style: normal; font-weight: 400; line-height: 1.5; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: 0.875rem; overflow-wrap: break-word; opacity: 0; } .tooltip.show { opacity: 0.9; } .tooltip .arrow { position: absolute; display: block; width: 0.8rem; height: 0.4rem; } .tooltip .arrow::before { position: absolute; content: ""; border-color: transparent; border-style: solid; } .bs-tooltip-auto[x-placement^=“top”], .bs-tooltip-top { padding: 0.4rem 0px; } .bs-tooltip-auto[x-placement^=“top”] .arrow, .bs-tooltip-top .arrow { bottom: 0px; } .bs-tooltip-auto[x-placement^=“top”] .arrow::before, .bs-tooltip-top .arrow::before { top: 0px; border-width: 0.4rem 0.4rem 0px; border-top-color: rgb(0, 0, 0); } .bs-tooltip-auto[x-placement^=“right”], .bs-tooltip-right { padding: 0px 0.4rem; } .bs-tooltip-auto[x-placement^=“right”] .arrow, .bs-tooltip-right .arrow { left: 0px; width: 0.4rem; height: 0.8rem; } .bs-tooltip-auto[x-placement^=“right”] .arrow::before, .bs-tooltip-right .arrow::before { right: 0px; border-width: 0.4rem 0.4rem 0.4rem 0px; border-right-color: rgb(0, 0, 0); } .bs-tooltip-auto[x-placement^=“bottom”], .bs-tooltip-bottom { padding: 0.4rem 0px; } .bs-tooltip-auto[x-placement^=“bottom”] .arrow, .bs-tooltip-bottom .arrow { top: 0px; } .bs-tooltip-auto[x-placement^=“bottom”] .arrow::before, .bs-tooltip-bottom .arrow::before { bottom: 0px; border-width: 0px 0.4rem 0.4rem; border-bottom-color: rgb(0, 0, 0); } .bs-tooltip-auto[x-placement^=“left”], .bs-tooltip-left { padding: 0px 0.4rem; } .bs-tooltip-auto[x-placement^=“left”] .arrow, .bs-tooltip-left .arrow { right: 0px; width: 0.4rem; height: 0.8rem; } .bs-tooltip-auto[x-placement^=“left”] .arrow::before, .bs-tooltip-left .arrow::before { left: 0px; border-width: 0.4rem 0px 0.4rem 0.4rem; border-left-color: rgb(0, 0, 0); } .tooltip-inner { max-width: 200px; padding: 0.25rem 0.5rem; color: rgb(255, 255, 255); text-align: center; background-color: rgb(0, 0, 0); border-radius: 0.25rem; } .popover { position: absolute; top: 0px; left: 0px; z-index: 1060; display: block; max-width: 276px; font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, “Helvetica Neue”, Arial, “Noto Sans”, “Liberation Sans”, sans-serif, “Apple Color Emoji”, “Segoe UI Emoji”, “Segoe UI Symbol”, “Noto Color Emoji”; font-style: normal; font-weight: 400; line-height: 1.5; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: 0.875rem; overflow-wrap: break-word; background-color: rgb(255, 255, 255); background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem; } .popover .arrow { position: absolute; display: block; width: 1rem; height: 0.5rem; margin: 0px 0.3rem; } .popover .arrow::after, .popover .arrow::before { position: absolute; display: block; content: ""; border-color: transparent; border-style: solid; } .bs-popover-auto[x-placement^=“top”], .bs-popover-top { margin-bottom: 0.5rem; } .bs-popover-auto[x-placement^=“top”] > .arrow, .bs-popover-top > .arrow { bottom: calc(-1px - 0.5rem); } .bs-popover-auto[x-placement^=“top”] > .arrow::before, .bs-popover-top > .arrow::before { bottom: 0px; border-width: 0.5rem 0.5rem 0px; border-top-color: rgba(0, 0, 0, 0.25); } .bs-popover-auto[x-placement^=“top”] > .arrow::after, .bs-popover-top > .arrow::after { bottom: 1px; border-width: 0.5rem 0.5rem 0px; border-top-color: rgb(255, 255, 255); } .bs-popover-auto[x-placement^=“right”], .bs-popover-right { margin-left: 0.5rem; } .bs-popover-auto[x-placement^=“right”] > .arrow, .bs-popover-right > .arrow { left: calc(-1px - 0.5rem); width: 0.5rem; height: 1rem; margin: 0.3rem 0px; } .bs-popover-auto[x-placement^=“right”] > .arrow::before, .bs-popover-right > .arrow::before { left: 0px; border-width: 0.5rem 0.5rem 0.5rem 0px; border-right-color: rgba(0, 0, 0, 0.25); } .bs-popover-auto[x-placement^=“right”] > .arrow::after, .bs-popover-right > .arrow::after { left: 1px; border-width: 0.5rem 0.5rem 0.5rem 0px; border-right-color: rgb(255, 255, 255); } .bs-popover-auto[x-placement^=“bottom”], .bs-popover-bottom { margin-top: 0.5rem; } .bs-popover-auto[x-placement^=“bottom”] > .arrow, .bs-popover-bottom > .arrow { top: calc(-1px - 0.5rem); } .bs-popover-auto[x-placement^=“bottom”] > .arrow::before, .bs-popover-bottom > .arrow::before { top: 0px; border-width: 0px 0.5rem 0.5rem; border-bottom-color: rgba(0, 0, 0, 0.25); } .bs-popover-auto[x-placement^=“bottom”] > .arrow::after, .bs-popover-bottom > .arrow::after { top: 1px; border-width: 0px 0.5rem 0.5rem; border-bottom-color: rgb(255, 255, 255); } .bs-popover-auto[x-placement^=“bottom”] .popover-header::before, .bs-popover-bottom .popover-header::before { position: absolute; top: 0px; left: 50%; display: block; width: 1rem; margin-left: -0.5rem; content: ""; border-bottom: 1px solid rgb(247, 247, 247); } .bs-popover-auto[x-placement^=“left”], .bs-popover-left { margin-right: 0.5rem; } .bs-popover-auto[x-placement^=“left”] > .arrow, .bs-popover-left > .arrow { right: calc(-1px - 0.5rem); width: 0.5rem; height: 1rem; margin: 0.3rem 0px; } .bs-popover-auto[x-placement^=“left”] > .arrow::before, .bs-popover-left > .arrow::before { right: 0px; border-width: 0.5rem 0px 0.5rem 0.5rem; border-left-color: rgba(0, 0, 0, 0.25); } .bs-popover-auto[x-placement^=“left”] > .arrow::after, .bs-popover-left > .arrow::after { right: 1px; border-width: 0.5rem 0px 0.5rem 0.5rem; border-left-color: rgb(255, 255, 255); } .popover-header { padding: 0.5rem 0.75rem; margin-bottom: 0px; font-size: 1rem; background-color: rgb(247, 247, 247); border-bottom: 1px solid rgb(235, 235, 235); border-top-left-radius: calc(-1px + 0.3rem); border-top-right-radius: calc(-1px + 0.3rem); } .popover-header:empty { display: none; } .popover-body { padding: 0.5rem 0.75rem; color: rgb(33, 37, 41); } .carousel { position: relative; } .carousel.pointer-event { touch-action: pan-y; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-inner::after { display: block; clear: both; content: ""; } .carousel-item { position: relative; display: none; float: left; width: 100%; margin-right: -100%; backface-visibility: hidden; transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; } @media (prefers-reduced-motion: reduce) { .carousel-item { transition: none; } } .carousel-item-next, .carousel-item-prev, .carousel-item.active { display: block; } .active.carousel-item-right, .carousel-item-next:not(.carousel-item-left) { transform: translateX(100%); } .active.carousel-item-left, .carousel-item-prev:not(.carousel-item-right) { transform: translateX(-100%); } .carousel-fade .carousel-item { opacity: 0; transition-property: opacity; transform: none; } .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active { z-index: 1; opacity: 1; } .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { z-index: 0; opacity: 0; transition: opacity 0.6s; } @media (prefers-reduced-motion: reduce) { .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { transition: none; } } .carousel-control-next, .carousel-control-prev { position: absolute; top: 0px; bottom: 0px; z-index: 1; display: flex; align-items: center; justify-content: center; width: 15%; color: rgb(255, 255, 255); text-align: center; opacity: 0.5; transition: opacity 0.15s; } @media (prefers-reduced-motion: reduce) { .carousel-control-next, .carousel-control-prev { transition: none; } } .carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover { color: rgb(255, 255, 255); text-decoration: none; outline: 0px; opacity: 0.9; } .carousel-control-prev { left: 0px; } .carousel-control-next { right: 0px; } .carousel-control-next-icon, .carousel-control-prev-icon { display: inline-block; width: 20px; height: 20px; background: 50% center / 100% 100% no-repeat; } .carousel-control-prev-icon { background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ fill=‘%23fff’ width=‘8’ height=‘8’ viewBox=‘0 0 8 8’%3e%3cpath d=‘M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z’/%3e%3c/svg%3e”); } .carousel-control-next-icon { background-image: url(“data:image/svg+xml,%3csvg xmlns=‘http://www.w3.org/2000/svg’ fill=‘%23fff’ width=‘8’ height=‘8’ viewBox=‘0 0 8 8’%3e%3cpath d=‘M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z’/%3e%3c/svg%3e”); } .carousel-indicators { position: absolute; right: 0px; bottom: 0px; left: 0px; z-index: 15; display: flex; justify-content: center; padding-left: 0px; margin-right: 15%; margin-left: 15%; list-style: none; } .carousel-indicators li { box-sizing: content-box; flex: 0 1 auto; width: 30px; height: 3px; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: rgb(255, 255, 255); background-clip: padding-box; border-top: 10px solid transparent; border-bottom: 10px solid transparent; opacity: 0.5; transition: opacity 0.6s; } @media (prefers-reduced-motion: reduce) { .carousel-indicators li { transition: none; } } .carousel-indicators .active { opacity: 1; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: rgb(255, 255, 255); text-align: center; } @-webkit-keyframes spinner-border { 100% { transform: rotate(360deg); } } @keyframes spinner-border { 100% { transform: rotate(360deg); } } .spinner-border { display: inline-block; width: 2rem; height: 2rem; vertical-align: text-bottom; border-width: 0.25em; border-style: solid; border-color: currentcolor transparent currentcolor currentcolor; border-image: initial; border-radius: 50%; animation: 0.75s linear 0s infinite normal none running spinner-border; } .spinner-border-sm { width: 1rem; height: 1rem; border-width: 0.2em; } @-webkit-keyframes spinner-grow { 0% { transform: scale(0); } 50% { opacity: 1; transform: none; } } @keyframes spinner-grow { 0% { transform: scale(0); } 50% { opacity: 1; transform: none; } } .spinner-grow { display: inline-block; width: 2rem; height: 2rem; vertical-align: text-bottom; background-color: currentcolor; border-radius: 50%; opacity: 0; animation: 0.75s linear 0s infinite normal none running spinner-grow; } .spinner-grow-sm { width: 1rem; height: 1rem; } @media (prefers-reduced-motion: reduce) { .spinner-border, .spinner-grow { animation-duration: 1.5s; } } .align-baseline { vertical-align: baseline !important; } .align-top { vertical-align: top !important; } .align-middle { vertical-align: middle !important; } .align-bottom { vertical-align: bottom !important; } .align-text-bottom { vertical-align: text-bottom !important; } .align-text-top { vertical-align: text-top !important; } .bg-primary { background-color: rgb(0, 123, 255) !important; } a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover { background-color: rgb(0, 98, 204) !important; } .bg-secondary { background-color: rgb(108, 117, 125) !important; } a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover { background-color: rgb(84, 91, 98) !important; } .bg-success { background-color: rgb(40, 167, 69) !important; } a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover { background-color: rgb(30, 126, 52) !important; } .bg-info { background-color: rgb(23, 162, 184) !important; } a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover { background-color: rgb(17, 122, 139) !important; } .bg-warning { background-color: rgb(255, 193, 7) !important; } a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover { background-color: rgb(211, 158, 0) !important; } .bg-danger { background-color: rgb(220, 53, 69) !important; } a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover { background-color: rgb(189, 33, 48) !important; } .bg-light { background-color: rgb(248, 249, 250) !important; } a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover { background-color: rgb(218, 224, 229) !important; } .bg-dark { background-color: rgb(52, 58, 64) !important; } a.bg-dark:focus, a.bg-dark:hover, button.bg-dark:focus, button.bg-dark:hover { background-color: rgb(29, 33, 36) !important; } .bg-white { background-color: rgb(255, 255, 255) !important; } .bg-transparent { background-color: transparent !important; } .border { border: 1px solid rgb(222, 226, 230) !important; } .border-top { border-top: 1px solid rgb(222, 226, 230) !important; } .border-right { border-right: 1px solid rgb(222, 226, 230) !important; } .border-bottom { border-bottom: 1px solid rgb(222, 226, 230) !important; } .border-left { border-left: 1px solid rgb(222, 226, 230) !important; } .border-0 { border: 0px !important; } .border-top-0 { border-top: 0px !important; } .border-right-0 { border-right: 0px !important; } .border-bottom-0 { border-bottom: 0px !important; } .border-left-0 { border-left: 0px !important; } .border-primary { border-color: rgb(0, 123, 255) !important; } .border-secondary { border-color: rgb(108, 117, 125) !important; } .border-success { border-color: rgb(40, 167, 69) !important; } .border-info { border-color: rgb(23, 162, 184) !important; } .border-warning { border-color: rgb(255, 193, 7) !important; } .border-danger { border-color: rgb(220, 53, 69) !important; } .border-light { border-color: rgb(248, 249, 250) !important; } .border-dark { border-color: rgb(52, 58, 64) !important; } .border-white { border-color: rgb(255, 255, 255) !important; } .rounded-sm { border-radius: 0.2rem !important; } .rounded { border-radius: 0.25rem !important; } .rounded-top { border-top-left-radius: 0.25rem !important; border-top-right-radius: 0.25rem !important; } .rounded-right { border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; } .rounded-bottom { border-bottom-right-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; } .rounded-left { border-top-left-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; } .rounded-lg { border-radius: 0.3rem !important; } .rounded-circle { border-radius: 50% !important; } .rounded-pill { border-radius: 50rem !important; } .rounded-0 { border-radius: 0px !important; } .clearfix::after { display: block; clear: both; content: ""; } .d-none { display: none !important; } .d-inline { display: inline !important; } .d-inline-block { display: inline-block !important; } .d-block { display: block !important; } .d-table { display: table !important; } .d-table-row { display: table-row !important; } .d-table-cell { display: table-cell !important; } .d-flex { display: flex !important; } .d-inline-flex { display: inline-flex !important; } @media (min-width: 576px) { .d-sm-none { display: none !important; } .d-sm-inline { display: inline !important; } .d-sm-inline-block { display: inline-block !important; } .d-sm-block { display: block !important; } .d-sm-table { display: table !important; } .d-sm-table-row { display: table-row !important; } .d-sm-table-cell { display: table-cell !important; } .d-sm-flex { display: flex !important; } .d-sm-inline-flex { display: inline-flex !important; } } @media (min-width: 768px) { .d-md-none { display: none !important; } .d-md-inline { display: inline !important; } .d-md-inline-block { display: inline-block !important; } .d-md-block { display: block !important; } .d-md-table { display: table !important; } .d-md-table-row { display: table-row !important; } .d-md-table-cell { display: table-cell !important; } .d-md-flex { display: flex !important; } .d-md-inline-flex { display: inline-flex !important; } } @media (min-width: 992px) { .d-lg-none { display: none !important; } .d-lg-inline { display: inline !important; } .d-lg-inline-block { display: inline-block !important; } .d-lg-block { display: block !important; } .d-lg-table { display: table !important; } .d-lg-table-row { display: table-row !important; } .d-lg-table-cell { display: table-cell !important; } .d-lg-flex { display: flex !important; } .d-lg-inline-flex { display: inline-flex !important; } } @media (min-width: 1200px) { .d-xl-none { display: none !important; } .d-xl-inline { display: inline !important; } .d-xl-inline-block { display: inline-block !important; } .d-xl-block { display: block !important; } .d-xl-table { display: table !important; } .d-xl-table-row { display: table-row !important; } .d-xl-table-cell { display: table-cell !important; } .d-xl-flex { display: flex !important; } .d-xl-inline-flex { display: inline-flex !important; } } @media print { .d-print-none { display: none !important; } .d-print-inline { display: inline !important; } .d-print-inline-block { display: inline-block !important; } .d-print-block { display: block !important; } .d-print-table { display: table !important; } .d-print-table-row { display: table-row !important; } .d-print-table-cell { display: table-cell !important; } .d-print-flex { display: flex !important; } .d-print-inline-flex { display: inline-flex !important; } } .embed-responsive { position: relative; display: block; width: 100%; padding: 0px; overflow: hidden; } .embed-responsive::before { display: block; content: ""; } .embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video { position: absolute; top: 0px; bottom: 0px; left: 0px; width: 100%; height: 100%; border: 0px; } .embed-responsive-21by9::before { padding-top: 42.8571%; } .embed-responsive-16by9::before { padding-top: 56.25%; } .embed-responsive-4by3::before { padding-top: 75%; } .embed-responsive-1by1::before { padding-top: 100%; } .flex-row { flex-direction: row !important; } .flex-column { flex-direction: column !important; } .flex-row-reverse { flex-direction: row-reverse !important; } .flex-column-reverse { flex-direction: column-reverse !important; } .flex-wrap { flex-wrap: wrap !important; } .flex-nowrap { flex-wrap: nowrap !important; } .flex-wrap-reverse { flex-wrap: wrap-reverse !important; } .flex-fill { flex: 1 1 auto !important; } .flex-grow-0 { flex-grow: 0 !important; } .flex-grow-1 { flex-grow: 1 !important; } .flex-shrink-0 { flex-shrink: 0 !important; } .flex-shrink-1 { flex-shrink: 1 !important; } .justify-content-start { justify-content: flex-start !important; } .justify-content-end { justify-content: flex-end !important; } .justify-content-center { justify-content: center !important; } .justify-content-between { justify-content: space-between !important; } .justify-content-around { justify-content: space-around !important; } .align-items-start { align-items: flex-start !important; } .align-items-end { align-items: flex-end !important; } .align-items-center { align-items: center !important; } .align-items-baseline { align-items: baseline !important; } .align-items-stretch { align-items: stretch !important; } .align-content-start { align-content: flex-start !important; } .align-content-end { align-content: flex-end !important; } .align-content-center { align-content: center !important; } .align-content-between { align-content: space-between !important; } .align-content-around { align-content: space-around !important; } .align-content-stretch { align-content: stretch !important; } .align-self-auto { align-self: auto !important; } .align-self-start { align-self: flex-start !important; } .align-self-end { align-self: flex-end !important; } .align-self-center { align-self: center !important; } .align-self-baseline { align-self: baseline !important; } .align-self-stretch { align-self: stretch !important; } @media (min-width: 576px) { .flex-sm-row { flex-direction: row !important; } .flex-sm-column { flex-direction: column !important; } .flex-sm-row-reverse { flex-direction: row-reverse !important; } .flex-sm-column-reverse { flex-direction: column-reverse !important; } .flex-sm-wrap { flex-wrap: wrap !important; } .flex-sm-nowrap { flex-wrap: nowrap !important; } .flex-sm-wrap-reverse { flex-wrap: wrap-reverse !important; } .flex-sm-fill { flex: 1 1 auto !important; } .flex-sm-grow-0 { flex-grow: 0 !important; } .flex-sm-grow-1 { flex-grow: 1 !important; } .flex-sm-shrink-0 { flex-shrink: 0 !important; } .flex-sm-shrink-1 { flex-shrink: 1 !important; } .justify-content-sm-start { justify-content: flex-start !important; } .justify-content-sm-end { justify-content: flex-end !important; } .justify-content-sm-center { justify-content: center !important; } .justify-content-sm-between { justify-content: space-between !important; } .justify-content-sm-around { justify-content: space-around !important; } .align-items-sm-start { align-items: flex-start !important; } .align-items-sm-end { align-items: flex-end !important; } .align-items-sm-center { align-items: center !important; } .align-items-sm-baseline { align-items: baseline !important; } .align-items-sm-stretch { align-items: stretch !important; } .align-content-sm-start { align-content: flex-start !important; } .align-content-sm-end { align-content: flex-end !important; } .align-content-sm-center { align-content: center !important; } .align-content-sm-between { align-content: space-between !important; } .align-content-sm-around { align-content: space-around !important; } .align-content-sm-stretch { align-content: stretch !important; } .align-self-sm-auto { align-self: auto !important; } .align-self-sm-start { align-self: flex-start !important; } .align-self-sm-end { align-self: flex-end !important; } .align-self-sm-center { align-self: center !important; } .align-self-sm-baseline { align-self: baseline !important; } .align-self-sm-stretch { align-self: stretch !important; } } @media (min-width: 768px) { .flex-md-row { flex-direction: row !important; } .flex-md-column { flex-direction: column !important; } .flex-md-row-reverse { flex-direction: row-reverse !important; } .flex-md-column-reverse { flex-direction: column-reverse !important; } .flex-md-wrap { flex-wrap: wrap !important; } .flex-md-nowrap { flex-wrap: nowrap !important; } .flex-md-wrap-reverse { flex-wrap: wrap-reverse !important; } .flex-md-fill { flex: 1 1 auto !important; } .flex-md-grow-0 { flex-grow: 0 !important; } .flex-md-grow-1 { flex-grow: 1 !important; } .flex-md-shrink-0 { flex-shrink: 0 !important; } .flex-md-shrink-1 { flex-shrink: 1 !important; } .justify-content-md-start { justify-content: flex-start !important; } .justify-content-md-end { justify-content: flex-end !important; } .justify-content-md-center { justify-content: center !important; } .justify-content-md-between { justify-content: space-between !important; } .justify-content-md-around { justify-content: space-around !important; } .align-items-md-start { align-items: flex-start !important; } .align-items-md-end { align-items: flex-end !important; } .align-items-md-center { align-items: center !important; } .align-items-md-baseline { align-items: baseline !important; } .align-items-md-stretch { align-items: stretch !important; } .align-content-md-start { align-content: flex-start !important; } .align-content-md-end { align-content: flex-end !important; } .align-content-md-center { align-content: center !important; } .align-content-md-between { align-content: space-between !important; } .align-content-md-around { align-content: space-around !important; } .align-content-md-stretch { align-content: stretch !important; } .align-self-md-auto { align-self: auto !important; } .align-self-md-start { align-self: flex-start !important; } .align-self-md-end { align-self: flex-end !important; } .align-self-md-center { align-self: center !important; } .align-self-md-baseline { align-self: baseline !important; } .align-self-md-stretch { align-self: stretch !important; } } @media (min-width: 992px) { .flex-lg-row { flex-direction: row !important; } .flex-lg-column { flex-direction: column !important; } .flex-lg-row-reverse { flex-direction: row-reverse !important; } .flex-lg-column-reverse { flex-direction: column-reverse !important; } .flex-lg-wrap { flex-wrap: wrap !important; } .flex-lg-nowrap { flex-wrap: nowrap !important; } .flex-lg-wrap-reverse { flex-wrap: wrap-reverse !important; } .flex-lg-fill { flex: 1 1 auto !important; } .flex-lg-grow-0 { flex-grow: 0 !important; } .flex-lg-grow-1 { flex-grow: 1 !important; } .flex-lg-shrink-0 { flex-shrink: 0 !important; } .flex-lg-shrink-1 { flex-shrink: 1 !important; } .justify-content-lg-start { justify-content: flex-start !important; } .justify-content-lg-end { justify-content: flex-end !important; } .justify-content-lg-center { justify-content: center !important; } .justify-content-lg-between { justify-content: space-between !important; } .justify-content-lg-around { justify-content: space-around !important; } .align-items-lg-start { align-items: flex-start !important; } .align-items-lg-end { align-items: flex-end !important; } .align-items-lg-center { align-items: center !important; } .align-items-lg-baseline { align-items: baseline !important; } .align-items-lg-stretch { align-items: stretch !important; } .align-content-lg-start { align-content: flex-start !important; } .align-content-lg-end { align-content: flex-end !important; } .align-content-lg-center { align-content: center !important; } .align-content-lg-between { align-content: space-between !important; } .align-content-lg-around { align-content: space-around !important; } .align-content-lg-stretch { align-content: stretch !important; } .align-self-lg-auto { align-self: auto !important; } .align-self-lg-start { align-self: flex-start !important; } .align-self-lg-end { align-self: flex-end !important; } .align-self-lg-center { align-self: center !important; } .align-self-lg-baseline { align-self: baseline !important; } .align-self-lg-stretch { align-self: stretch !important; } } @media (min-width: 1200px) { .flex-xl-row { flex-direction: row !important; } .flex-xl-column { flex-direction: column !important; } .flex-xl-row-reverse { flex-direction: row-reverse !important; } .flex-xl-column-reverse { flex-direction: column-reverse !important; } .flex-xl-wrap { flex-wrap: wrap !important; } .flex-xl-nowrap { flex-wrap: nowrap !important; } .flex-xl-wrap-reverse { flex-wrap: wrap-reverse !important; } .flex-xl-fill { flex: 1 1 auto !important; } .flex-xl-grow-0 { flex-grow: 0 !important; } .flex-xl-grow-1 { flex-grow: 1 !important; } .flex-xl-shrink-0 { flex-shrink: 0 !important; } .flex-xl-shrink-1 { flex-shrink: 1 !important; } .justify-content-xl-start { justify-content: flex-start !important; } .justify-content-xl-end { justify-content: flex-end !important; } .justify-content-xl-center { justify-content: center !important; } .justify-content-xl-between { justify-content: space-between !important; } .justify-content-xl-around { justify-content: space-around !important; } .align-items-xl-start { align-items: flex-start !important; } .align-items-xl-end { align-items: flex-end !important; } .align-items-xl-center { align-items: center !important; } .align-items-xl-baseline { align-items: baseline !important; } .align-items-xl-stretch { align-items: stretch !important; } .align-content-xl-start { align-content: flex-start !important; } .align-content-xl-end { align-content: flex-end !important; } .align-content-xl-center { align-content: center !important; } .align-content-xl-between { align-content: space-between !important; } .align-content-xl-around { align-content: space-around !important; } .align-content-xl-stretch { align-content: stretch !important; } .align-self-xl-auto { align-self: auto !important; } .align-self-xl-start { align-self: flex-start !important; } .align-self-xl-end { align-self: flex-end !important; } .align-self-xl-center { align-self: center !important; } .align-self-xl-baseline { align-self: baseline !important; } .align-self-xl-stretch { align-self: stretch !important; } } .float-left { float: left !important; } .float-right { float: right !important; } .float-none { float: none !important; } @media (min-width: 576px) { .float-sm-left { float: left !important; } .float-sm-right { float: right !important; } .float-sm-none { float: none !important; } } @media (min-width: 768px) { .float-md-left { float: left !important; } .float-md-right { float: right !important; } .float-md-none { float: none !important; } } @media (min-width: 992px) { .float-lg-left { float: left !important; } .float-lg-right { float: right !important; } .float-lg-none { float: none !important; } } @media (min-width: 1200px) { .float-xl-left { float: left !important; } .float-xl-right { float: right !important; } .float-xl-none { float: none !important; } } .user-select-all { user-select: all !important; } .user-select-auto { user-select: auto !important; } .user-select-none { user-select: none !important; } .overflow-auto { overflow: auto !important; } .overflow-hidden { overflow: hidden !important; } .position-static { position: static !important; } .position-relative { position: relative !important; } .position-absolute { position: absolute !important; } .position-fixed { position: fixed !important; } .position-sticky { position: sticky !important; } .fixed-top { position: fixed; top: 0px; right: 0px; left: 0px; z-index: 1030; } .fixed-bottom { position: fixed; right: 0px; bottom: 0px; left: 0px; z-index: 1030; } @supports ((position:-webkit-sticky) or (position:sticky)) { .sticky-top { position: sticky; top: 0px; z-index: 1020; } } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0px; margin: -1px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); white-space: nowrap; border: 0px; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; } .shadow-sm { box-shadow: rgba(0, 0, 0, 0.075) 0px 0.125rem 0.25rem !important; } .shadow { box-shadow: rgba(0, 0, 0, 0.15) 0px 0.5rem 1rem !important; } .shadow-lg { box-shadow: rgba(0, 0, 0, 0.176) 0px 1rem 3rem !important; } .shadow-none { box-shadow: none !important; } .w-25 { width: 25% !important; } .w-50 { width: 50% !important; } .w-75 { width: 75% !important; } .w-100 { width: 100% !important; } .w-auto { width: auto !important; } .h-25 { height: 25% !important; } .h-50 { height: 50% !important; } .h-75 { height: 75% !important; } .h-100 { height: 100% !important; } .h-auto { height: auto !important; } .mw-100 { max-width: 100% !important; } .mh-100 { max-height: 100% !important; } .min-vw-100 { min-width: 100vw !important; } .min-vh-100 { min-height: 100vh !important; } .vw-100 { width: 100vw !important; } .vh-100 { height: 100vh !important; } .m-0 { margin: 0px !important; } .mt-0, .my-0 { margin-top: 0px !important; } .mr-0, .mx-0 { margin-right: 0px !important; } .mb-0, .my-0 { margin-bottom: 0px !important; } .ml-0, .mx-0 { margin-left: 0px !important; } .m-1 { margin: 0.25rem !important; } .mt-1, .my-1 { margin-top: 0.25rem !important; } .mr-1, .mx-1 { margin-right: 0.25rem !important; } .mb-1, .my-1 { margin-bottom: 0.25rem !important; } .ml-1, .mx-1 { margin-left: 0.25rem !important; } .m-2 { margin: 0.5rem !important; } .mt-2, .my-2 { margin-top: 0.5rem !important; } .mr-2, .mx-2 { margin-right: 0.5rem !important; } .mb-2, .my-2 { margin-bottom: 0.5rem !important; } .ml-2, .mx-2 { margin-left: 0.5rem !important; } .m-3 { margin: 1rem !important; } .mt-3, .my-3 { margin-top: 1rem !important; } .mr-3, .mx-3 { margin-right: 1rem !important; } .mb-3, .my-3 { margin-bottom: 1rem !important; } .ml-3, .mx-3 { margin-left: 1rem !important; } .m-4 { margin: 1.5rem !important; } .mt-4, .my-4 { margin-top: 1.5rem !important; } .mr-4, .mx-4 { margin-right: 1.5rem !important; } .mb-4, .my-4 { margin-bottom: 1.5rem !important; } .ml-4, .mx-4 { margin-left: 1.5rem !important; } .m-5 { margin: 3rem !important; } .mt-5, .my-5 { margin-top: 3rem !important; } .mr-5, .mx-5 { margin-right: 3rem !important; } .mb-5, .my-5 { margin-bottom: 3rem !important; } .ml-5, .mx-5 { margin-left: 3rem !important; } .p-0 { padding: 0px !important; } .pt-0, .py-0 { padding-top: 0px !important; } .pr-0, .px-0 { padding-right: 0px !important; } .pb-0, .py-0 { padding-bottom: 0px !important; } .pl-0, .px-0 { padding-left: 0px !important; } .p-1 { padding: 0.25rem !important; } .pt-1, .py-1 { padding-top: 0.25rem !important; } .pr-1, .px-1 { padding-right: 0.25rem !important; } .pb-1, .py-1 { padding-bottom: 0.25rem !important; } .pl-1, .px-1 { padding-left: 0.25rem !important; } .p-2 { padding: 0.5rem !important; } .pt-2, .py-2 { padding-top: 0.5rem !important; } .pr-2, .px-2 { padding-right: 0.5rem !important; } .pb-2, .py-2 { padding-bottom: 0.5rem !important; } .pl-2, .px-2 { padding-left: 0.5rem !important; } .p-3 { padding: 1rem !important; } .pt-3, .py-3 { padding-top: 1rem !important; } .pr-3, .px-3 { padding-right: 1rem !important; } .pb-3, .py-3 { padding-bottom: 1rem !important; } .pl-3, .px-3 { padding-left: 1rem !important; } .p-4 { padding: 1.5rem !important; } .pt-4, .py-4 { padding-top: 1.5rem !important; } .pr-4, .px-4 { padding-right: 1.5rem !important; } .pb-4, .py-4 { padding-bottom: 1.5rem !important; } .pl-4, .px-4 { padding-left: 1.5rem !important; } .p-5 { padding: 3rem !important; } .pt-5, .py-5 { padding-top: 3rem !important; } .pr-5, .px-5 { padding-right: 3rem !important; } .pb-5, .py-5 { padding-bottom: 3rem !important; } .pl-5, .px-5 { padding-left: 3rem !important; } .m-n1 { margin: -0.25rem !important; } .mt-n1, .my-n1 { margin-top: -0.25rem !important; } .mr-n1, .mx-n1 { margin-right: -0.25rem !important; } .mb-n1, .my-n1 { margin-bottom: -0.25rem !important; } .ml-n1, .mx-n1 { margin-left: -0.25rem !important; } .m-n2 { margin: -0.5rem !important; } .mt-n2, .my-n2 { margin-top: -0.5rem !important; } .mr-n2, .mx-n2 { margin-right: -0.5rem !important; } .mb-n2, .my-n2 { margin-bottom: -0.5rem !important; } .ml-n2, .mx-n2 { margin-left: -0.5rem !important; } .m-n3 { margin: -1rem !important; } .mt-n3, .my-n3 { margin-top: -1rem !important; } .mr-n3, .mx-n3 { margin-right: -1rem !important; } .mb-n3, .my-n3 { margin-bottom: -1rem !important; } .ml-n3, .mx-n3 { margin-left: -1rem !important; } .m-n4 { margin: -1.5rem !important; } .mt-n4, .my-n4 { margin-top: -1.5rem !important; } .mr-n4, .mx-n4 { margin-right: -1.5rem !important; } .mb-n4, .my-n4 { margin-bottom: -1.5rem !important; } .ml-n4, .mx-n4 { margin-left: -1.5rem !important; } .m-n5 { margin: -3rem !important; } .mt-n5, .my-n5 { margin-top: -3rem !important; } .mr-n5, .mx-n5 { margin-right: -3rem !important; } .mb-n5, .my-n5 { margin-bottom: -3rem !important; } .ml-n5, .mx-n5 { margin-left: -3rem !important; } .m-auto { margin: auto !important; } .mt-auto, .my-auto { margin-top: auto !important; } .mr-auto, .mx-auto { margin-right: auto !important; } .mb-auto, .my-auto { margin-bottom: auto !important; } .ml-auto, .mx-auto { margin-left: auto !important; } @media (min-width: 576px) { .m-sm-0 { margin: 0px !important; } .mt-sm-0, .my-sm-0 { margin-top: 0px !important; } .mr-sm-0, .mx-sm-0 { margin-right: 0px !important; } .mb-sm-0, .my-sm-0 { margin-bottom: 0px !important; } .ml-sm-0, .mx-sm-0 { margin-left: 0px !important; } .m-sm-1 { margin: 0.25rem !important; } .mt-sm-1, .my-sm-1 { margin-top: 0.25rem !important; } .mr-sm-1, .mx-sm-1 { margin-right: 0.25rem !important; } .mb-sm-1, .my-sm-1 { margin-bottom: 0.25rem !important; } .ml-sm-1, .mx-sm-1 { margin-left: 0.25rem !important; } .m-sm-2 { margin: 0.5rem !important; } .mt-sm-2, .my-sm-2 { margin-top: 0.5rem !important; } .mr-sm-2, .mx-sm-2 { margin-right: 0.5rem !important; } .mb-sm-2, .my-sm-2 { margin-bottom: 0.5rem !important; } .ml-sm-2, .mx-sm-2 { margin-left: 0.5rem !important; } .m-sm-3 { margin: 1rem !important; } .mt-sm-3, .my-sm-3 { margin-top: 1rem !important; } .mr-sm-3, .mx-sm-3 { margin-right: 1rem !important; } .mb-sm-3, .my-sm-3 { margin-bottom: 1rem !important; } .ml-sm-3, .mx-sm-3 { margin-left: 1rem !important; } .m-sm-4 { margin: 1.5rem !important; } .mt-sm-4, .my-sm-4 { margin-top: 1.5rem !important; } .mr-sm-4, .mx-sm-4 { margin-right: 1.5rem !important; } .mb-sm-4, .my-sm-4 { margin-bottom: 1.5rem !important; } .ml-sm-4, .mx-sm-4 { margin-left: 1.5rem !important; } .m-sm-5 { margin: 3rem !important; } .mt-sm-5, .my-sm-5 { margin-top: 3rem !important; } .mr-sm-5, .mx-sm-5 { margin-right: 3rem !important; } .mb-sm-5, .my-sm-5 { margin-bottom: 3rem !important; } .ml-sm-5, .mx-sm-5 { margin-left: 3rem !important; } .p-sm-0 { padding: 0px !important; } .pt-sm-0, .py-sm-0 { padding-top: 0px !important; } .pr-sm-0, .px-sm-0 { padding-right: 0px !important; } .pb-sm-0, .py-sm-0 { padding-bottom: 0px !important; } .pl-sm-0, .px-sm-0 { padding-left: 0px !important; } .p-sm-1 { padding: 0.25rem !important; } .pt-sm-1, .py-sm-1 { padding-top: 0.25rem !important; } .pr-sm-1, .px-sm-1 { padding-right: 0.25rem !important; } .pb-sm-1, .py-sm-1 { padding-bottom: 0.25rem !important; } .pl-sm-1, .px-sm-1 { padding-left: 0.25rem !important; } .p-sm-2 { padding: 0.5rem !important; } .pt-sm-2, .py-sm-2 { padding-top: 0.5rem !important; } .pr-sm-2, .px-sm-2 { padding-right: 0.5rem !important; } .pb-sm-2, .py-sm-2 { padding-bottom: 0.5rem !important; } .pl-sm-2, .px-sm-2 { padding-left: 0.5rem !important; } .p-sm-3 { padding: 1rem !important; } .pt-sm-3, .py-sm-3 { padding-top: 1rem !important; } .pr-sm-3, .px-sm-3 { padding-right: 1rem !important; } .pb-sm-3, .py-sm-3 { padding-bottom: 1rem !important; } .pl-sm-3, .px-sm-3 { padding-left: 1rem !important; } .p-sm-4 { padding: 1.5rem !important; } .pt-sm-4, .py-sm-4 { padding-top: 1.5rem !important; } .pr-sm-4, .px-sm-4 { padding-right: 1.5rem !important; } .pb-sm-4, .py-sm-4 { padding-bottom: 1.5rem !important; } .pl-sm-4, .px-sm-4 { padding-left: 1.5rem !important; } .p-sm-5 { padding: 3rem !important; } .pt-sm-5, .py-sm-5 { padding-top: 3rem !important; } .pr-sm-5, .px-sm-5 { padding-right: 3rem !important; } .pb-sm-5, .py-sm-5 { padding-bottom: 3rem !important; } .pl-sm-5, .px-sm-5 { padding-left: 3rem !important; } .m-sm-n1 { margin: -0.25rem !important; } .mt-sm-n1, .my-sm-n1 { margin-top: -0.25rem !important; } .mr-sm-n1, .mx-sm-n1 { margin-right: -0.25rem !important; } .mb-sm-n1, .my-sm-n1 { margin-bottom: -0.25rem !important; } .ml-sm-n1, .mx-sm-n1 { margin-left: -0.25rem !important; } .m-sm-n2 { margin: -0.5rem !important; } .mt-sm-n2, .my-sm-n2 { margin-top: -0.5rem !important; } .mr-sm-n2, .mx-sm-n2 { margin-right: -0.5rem !important; } .mb-sm-n2, .my-sm-n2 { margin-bottom: -0.5rem !important; } .ml-sm-n2, .mx-sm-n2 { margin-left: -0.5rem !important; } .m-sm-n3 { margin: -1rem !important; } .mt-sm-n3, .my-sm-n3 { margin-top: -1rem !important; } .mr-sm-n3, .mx-sm-n3 { margin-right: -1rem !important; } .mb-sm-n3, .my-sm-n3 { margin-bottom: -1rem !important; } .ml-sm-n3, .mx-sm-n3 { margin-left: -1rem !important; } .m-sm-n4 { margin: -1.5rem !important; } .mt-sm-n4, .my-sm-n4 { margin-top: -1.5rem !important; } .mr-sm-n4, .mx-sm-n4 { margin-right: -1.5rem !important; } .mb-sm-n4, .my-sm-n4 { margin-bottom: -1.5rem !important; } .ml-sm-n4, .mx-sm-n4 { margin-left: -1.5rem !important; } .m-sm-n5 { margin: -3rem !important; } .mt-sm-n5, .my-sm-n5 { margin-top: -3rem !important; } .mr-sm-n5, .mx-sm-n5 { margin-right: -3rem !important; } .mb-sm-n5, .my-sm-n5 { margin-bottom: -3rem !important; } .ml-sm-n5, .mx-sm-n5 { margin-left: -3rem !important; } .m-sm-auto { margin: auto !important; } .mt-sm-auto, .my-sm-auto { margin-top: auto !important; } .mr-sm-auto, .mx-sm-auto { margin-right: auto !important; } .mb-sm-auto, .my-sm-auto { margin-bottom: auto !important; } .ml-sm-auto, .mx-sm-auto { margin-left: auto !important; } } @media (min-width: 768px) { .m-md-0 { margin: 0px !important; } .mt-md-0, .my-md-0 { margin-top: 0px !important; } .mr-md-0, .mx-md-0 { margin-right: 0px !important; } .mb-md-0, .my-md-0 { margin-bottom: 0px !important; } .ml-md-0, .mx-md-0 { margin-left: 0px !important; } .m-md-1 { margin: 0.25rem !important; } .mt-md-1, .my-md-1 { margin-top: 0.25rem !important; } .mr-md-1, .mx-md-1 { margin-right: 0.25rem !important; } .mb-md-1, .my-md-1 { margin-bottom: 0.25rem !important; } .ml-md-1, .mx-md-1 { margin-left: 0.25rem !important; } .m-md-2 { margin: 0.5rem !important; } .mt-md-2, .my-md-2 { margin-top: 0.5rem !important; } .mr-md-2, .mx-md-2 { margin-right: 0.5rem !important; } .mb-md-2, .my-md-2 { margin-bottom: 0.5rem !important; } .ml-md-2, .mx-md-2 { margin-left: 0.5rem !important; } .m-md-3 { margin: 1rem !important; } .mt-md-3, .my-md-3 { margin-top: 1rem !important; } .mr-md-3, .mx-md-3 { margin-right: 1rem !important; } .mb-md-3, .my-md-3 { margin-bottom: 1rem !important; } .ml-md-3, .mx-md-3 { margin-left: 1rem !important; } .m-md-4 { margin: 1.5rem !important; } .mt-md-4, .my-md-4 { margin-top: 1.5rem !important; } .mr-md-4, .mx-md-4 { margin-right: 1.5rem !important; } .mb-md-4, .my-md-4 { margin-bottom: 1.5rem !important; } .ml-md-4, .mx-md-4 { margin-left: 1.5rem !important; } .m-md-5 { margin: 3rem !important; } .mt-md-5, .my-md-5 { margin-top: 3rem !important; } .mr-md-5, .mx-md-5 { margin-right: 3rem !important; } .mb-md-5, .my-md-5 { margin-bottom: 3rem !important; } .ml-md-5, .mx-md-5 { margin-left: 3rem !important; } .p-md-0 { padding: 0px !important; } .pt-md-0, .py-md-0 { padding-top: 0px !important; } .pr-md-0, .px-md-0 { padding-right: 0px !important; } .pb-md-0, .py-md-0 { padding-bottom: 0px !important; } .pl-md-0, .px-md-0 { padding-left: 0px !important; } .p-md-1 { padding: 0.25rem !important; } .pt-md-1, .py-md-1 { padding-top: 0.25rem !important; } .pr-md-1, .px-md-1 { padding-right: 0.25rem !important; } .pb-md-1, .py-md-1 { padding-bottom: 0.25rem !important; } .pl-md-1, .px-md-1 { padding-left: 0.25rem !important; } .p-md-2 { padding: 0.5rem !important; } .pt-md-2, .py-md-2 { padding-top: 0.5rem !important; } .pr-md-2, .px-md-2 { padding-right: 0.5rem !important; } .pb-md-2, .py-md-2 { padding-bottom: 0.5rem !important; } .pl-md-2, .px-md-2 { padding-left: 0.5rem !important; } .p-md-3 { padding: 1rem !important; } .pt-md-3, .py-md-3 { padding-top: 1rem !important; } .pr-md-3, .px-md-3 { padding-right: 1rem !important; } .pb-md-3, .py-md-3 { padding-bottom: 1rem !important; } .pl-md-3, .px-md-3 { padding-left: 1rem !important; } .p-md-4 { padding: 1.5rem !important; } .pt-md-4, .py-md-4 { padding-top: 1.5rem !important; } .pr-md-4, .px-md-4 { padding-right: 1.5rem !important; } .pb-md-4, .py-md-4 { padding-bottom: 1.5rem !important; } .pl-md-4, .px-md-4 { padding-left: 1.5rem !important; } .p-md-5 { padding: 3rem !important; } .pt-md-5, .py-md-5 { padding-top: 3rem !important; } .pr-md-5, .px-md-5 { padding-right: 3rem !important; } .pb-md-5, .py-md-5 { padding-bottom: 3rem !important; } .pl-md-5, .px-md-5 { padding-left: 3rem !important; } .m-md-n1 { margin: -0.25rem !important; } .mt-md-n1, .my-md-n1 { margin-top: -0.25rem !important; } .mr-md-n1, .mx-md-n1 { margin-right: -0.25rem !important; } .mb-md-n1, .my-md-n1 { margin-bottom: -0.25rem !important; } .ml-md-n1, .mx-md-n1 { margin-left: -0.25rem !important; } .m-md-n2 { margin: -0.5rem !important; } .mt-md-n2, .my-md-n2 { margin-top: -0.5rem !important; } .mr-md-n2, .mx-md-n2 { margin-right: -0.5rem !important; } .mb-md-n2, .my-md-n2 { margin-bottom: -0.5rem !important; } .ml-md-n2, .mx-md-n2 { margin-left: -0.5rem !important; } .m-md-n3 { margin: -1rem !important; } .mt-md-n3, .my-md-n3 { margin-top: -1rem !important; } .mr-md-n3, .mx-md-n3 { margin-right: -1rem !important; } .mb-md-n3, .my-md-n3 { margin-bottom: -1rem !important; } .ml-md-n3, .mx-md-n3 { margin-left: -1rem !important; } .m-md-n4 { margin: -1.5rem !important; } .mt-md-n4, .my-md-n4 { margin-top: -1.5rem !important; } .mr-md-n4, .mx-md-n4 { margin-right: -1.5rem !important; } .mb-md-n4, .my-md-n4 { margin-bottom: -1.5rem !important; } .ml-md-n4, .mx-md-n4 { margin-left: -1.5rem !important; } .m-md-n5 { margin: -3rem !important; } .mt-md-n5, .my-md-n5 { margin-top: -3rem !important; } .mr-md-n5, .mx-md-n5 { margin-right: -3rem !important; } .mb-md-n5, .my-md-n5 { margin-bottom: -3rem !important; } .ml-md-n5, .mx-md-n5 { margin-left: -3rem !important; } .m-md-auto { margin: auto !important; } .mt-md-auto, .my-md-auto { margin-top: auto !important; } .mr-md-auto, .mx-md-auto { margin-right: auto !important; } .mb-md-auto, .my-md-auto { margin-bottom: auto !important; } .ml-md-auto, .mx-md-auto { margin-left: auto !important; } } @media (min-width: 992px) { .m-lg-0 { margin: 0px !important; } .mt-lg-0, .my-lg-0 { margin-top: 0px !important; } .mr-lg-0, .mx-lg-0 { margin-right: 0px !important; } .mb-lg-0, .my-lg-0 { margin-bottom: 0px !important; } .ml-lg-0, .mx-lg-0 { margin-left: 0px !important; } .m-lg-1 { margin: 0.25rem !important; } .mt-lg-1, .my-lg-1 { margin-top: 0.25rem !important; } .mr-lg-1, .mx-lg-1 { margin-right: 0.25rem !important; } .mb-lg-1, .my-lg-1 { margin-bottom: 0.25rem !important; } .ml-lg-1, .mx-lg-1 { margin-left: 0.25rem !important; } .m-lg-2 { margin: 0.5rem !important; } .mt-lg-2, .my-lg-2 { margin-top: 0.5rem !important; } .mr-lg-2, .mx-lg-2 { margin-right: 0.5rem !important; } .mb-lg-2, .my-lg-2 { margin-bottom: 0.5rem !important; } .ml-lg-2, .mx-lg-2 { margin-left: 0.5rem !important; } .m-lg-3 { margin: 1rem !important; } .mt-lg-3, .my-lg-3 { margin-top: 1rem !important; } .mr-lg-3, .mx-lg-3 { margin-right: 1rem !important; } .mb-lg-3, .my-lg-3 { margin-bottom: 1rem !important; } .ml-lg-3, .mx-lg-3 { margin-left: 1rem !important; } .m-lg-4 { margin: 1.5rem !important; } .mt-lg-4, .my-lg-4 { margin-top: 1.5rem !important; } .mr-lg-4, .mx-lg-4 { margin-right: 1.5rem !important; } .mb-lg-4, .my-lg-4 { margin-bottom: 1.5rem !important; } .ml-lg-4, .mx-lg-4 { margin-left: 1.5rem !important; } .m-lg-5 { margin: 3rem !important; } .mt-lg-5, .my-lg-5 { margin-top: 3rem !important; } .mr-lg-5, .mx-lg-5 { margin-right: 3rem !important; } .mb-lg-5, .my-lg-5 { margin-bottom: 3rem !important; } .ml-lg-5, .mx-lg-5 { margin-left: 3rem !important; } .p-lg-0 { padding: 0px !important; } .pt-lg-0, .py-lg-0 { padding-top: 0px !important; } .pr-lg-0, .px-lg-0 { padding-right: 0px !important; } .pb-lg-0, .py-lg-0 { padding-bottom: 0px !important; } .pl-lg-0, .px-lg-0 { padding-left: 0px !important; } .p-lg-1 { padding: 0.25rem !important; } .pt-lg-1, .py-lg-1 { padding-top: 0.25rem !important; } .pr-lg-1, .px-lg-1 { padding-right: 0.25rem !important; } .pb-lg-1, .py-lg-1 { padding-bottom: 0.25rem !important; } .pl-lg-1, .px-lg-1 { padding-left: 0.25rem !important; } .p-lg-2 { padding: 0.5rem !important; } .pt-lg-2, .py-lg-2 { padding-top: 0.5rem !important; } .pr-lg-2, .px-lg-2 { padding-right: 0.5rem !important; } .pb-lg-2, .py-lg-2 { padding-bottom: 0.5rem !important; } .pl-lg-2, .px-lg-2 { padding-left: 0.5rem !important; } .p-lg-3 { padding: 1rem !important; } .pt-lg-3, .py-lg-3 { padding-top: 1rem !important; } .pr-lg-3, .px-lg-3 { padding-right: 1rem !important; } .pb-lg-3, .py-lg-3 { padding-bottom: 1rem !important; } .pl-lg-3, .px-lg-3 { padding-left: 1rem !important; } .p-lg-4 { padding: 1.5rem !important; } .pt-lg-4, .py-lg-4 { padding-top: 1.5rem !important; } .pr-lg-4, .px-lg-4 { padding-right: 1.5rem !important; } .pb-lg-4, .py-lg-4 { padding-bottom: 1.5rem !important; } .pl-lg-4, .px-lg-4 { padding-left: 1.5rem !important; } .p-lg-5 { padding: 3rem !important; } .pt-lg-5, .py-lg-5 { padding-top: 3rem !important; } .pr-lg-5, .px-lg-5 { padding-right: 3rem !important; } .pb-lg-5, .py-lg-5 { padding-bottom: 3rem !important; } .pl-lg-5, .px-lg-5 { padding-left: 3rem !important; } .m-lg-n1 { margin: -0.25rem !important; } .mt-lg-n1, .my-lg-n1 { margin-top: -0.25rem !important; } .mr-lg-n1, .mx-lg-n1 { margin-right: -0.25rem !important; } .mb-lg-n1, .my-lg-n1 { margin-bottom: -0.25rem !important; } .ml-lg-n1, .mx-lg-n1 { margin-left: -0.25rem !important; } .m-lg-n2 { margin: -0.5rem !important; } .mt-lg-n2, .my-lg-n2 { margin-top: -0.5rem !important; } .mr-lg-n2, .mx-lg-n2 { margin-right: -0.5rem !important; } .mb-lg-n2, .my-lg-n2 { margin-bottom: -0.5rem !important; } .ml-lg-n2, .mx-lg-n2 { margin-left: -0.5rem !important; } .m-lg-n3 { margin: -1rem !important; } .mt-lg-n3, .my-lg-n3 { margin-top: -1rem !important; } .mr-lg-n3, .mx-lg-n3 { margin-right: -1rem !important; } .mb-lg-n3, .my-lg-n3 { margin-bottom: -1rem !important; } .ml-lg-n3, .mx-lg-n3 { margin-left: -1rem !important; } .m-lg-n4 { margin: -1.5rem !important; } .mt-lg-n4, .my-lg-n4 { margin-top: -1.5rem !important; } .mr-lg-n4, .mx-lg-n4 { margin-right: -1.5rem !important; } .mb-lg-n4, .my-lg-n4 { margin-bottom: -1.5rem !important; } .ml-lg-n4, .mx-lg-n4 { margin-left: -1.5rem !important; } .m-lg-n5 { margin: -3rem !important; } .mt-lg-n5, .my-lg-n5 { margin-top: -3rem !important; } .mr-lg-n5, .mx-lg-n5 { margin-right: -3rem !important; } .mb-lg-n5, .my-lg-n5 { margin-bottom: -3rem !important; } .ml-lg-n5, .mx-lg-n5 { margin-left: -3rem !important; } .m-lg-auto { margin: auto !important; } .mt-lg-auto, .my-lg-auto { margin-top: auto !important; } .mr-lg-auto, .mx-lg-auto { margin-right: auto !important; } .mb-lg-auto, .my-lg-auto { margin-bottom: auto !important; } .ml-lg-auto, .mx-lg-auto { margin-left: auto !important; } } @media (min-width: 1200px) { .m-xl-0 { margin: 0px !important; } .mt-xl-0, .my-xl-0 { margin-top: 0px !important; } .mr-xl-0, .mx-xl-0 { margin-right: 0px !important; } .mb-xl-0, .my-xl-0 { margin-bottom: 0px !important; } .ml-xl-0, .mx-xl-0 { margin-left: 0px !important; } .m-xl-1 { margin: 0.25rem !important; } .mt-xl-1, .my-xl-1 { margin-top: 0.25rem !important; } .mr-xl-1, .mx-xl-1 { margin-right: 0.25rem !important; } .mb-xl-1, .my-xl-1 { margin-bottom: 0.25rem !important; } .ml-xl-1, .mx-xl-1 { margin-left: 0.25rem !important; } .m-xl-2 { margin: 0.5rem !important; } .mt-xl-2, .my-xl-2 { margin-top: 0.5rem !important; } .mr-xl-2, .mx-xl-2 { margin-right: 0.5rem !important; } .mb-xl-2, .my-xl-2 { margin-bottom: 0.5rem !important; } .ml-xl-2, .mx-xl-2 { margin-left: 0.5rem !important; } .m-xl-3 { margin: 1rem !important; } .mt-xl-3, .my-xl-3 { margin-top: 1rem !important; } .mr-xl-3, .mx-xl-3 { margin-right: 1rem !important; } .mb-xl-3, .my-xl-3 { margin-bottom: 1rem !important; } .ml-xl-3, .mx-xl-3 { margin-left: 1rem !important; } .m-xl-4 { margin: 1.5rem !important; } .mt-xl-4, .my-xl-4 { margin-top: 1.5rem !important; } .mr-xl-4, .mx-xl-4 { margin-right: 1.5rem !important; } .mb-xl-4, .my-xl-4 { margin-bottom: 1.5rem !important; } .ml-xl-4, .mx-xl-4 { margin-left: 1.5rem !important; } .m-xl-5 { margin: 3rem !important; } .mt-xl-5, .my-xl-5 { margin-top: 3rem !important; } .mr-xl-5, .mx-xl-5 { margin-right: 3rem !important; } .mb-xl-5, .my-xl-5 { margin-bottom: 3rem !important; } .ml-xl-5, .mx-xl-5 { margin-left: 3rem !important; } .p-xl-0 { padding: 0px !important; } .pt-xl-0, .py-xl-0 { padding-top: 0px !important; } .pr-xl-0, .px-xl-0 { padding-right: 0px !important; } .pb-xl-0, .py-xl-0 { padding-bottom: 0px !important; } .pl-xl-0, .px-xl-0 { padding-left: 0px !important; } .p-xl-1 { padding: 0.25rem !important; } .pt-xl-1, .py-xl-1 { padding-top: 0.25rem !important; } .pr-xl-1, .px-xl-1 { padding-right: 0.25rem !important; } .pb-xl-1, .py-xl-1 { padding-bottom: 0.25rem !important; } .pl-xl-1, .px-xl-1 { padding-left: 0.25rem !important; } .p-xl-2 { padding: 0.5rem !important; } .pt-xl-2, .py-xl-2 { padding-top: 0.5rem !important; } .pr-xl-2, .px-xl-2 { padding-right: 0.5rem !important; } .pb-xl-2, .py-xl-2 { padding-bottom: 0.5rem !important; } .pl-xl-2, .px-xl-2 { padding-left: 0.5rem !important; } .p-xl-3 { padding: 1rem !important; } .pt-xl-3, .py-xl-3 { padding-top: 1rem !important; } .pr-xl-3, .px-xl-3 { padding-right: 1rem !important; } .pb-xl-3, .py-xl-3 { padding-bottom: 1rem !important; } .pl-xl-3, .px-xl-3 { padding-left: 1rem !important; } .p-xl-4 { padding: 1.5rem !important; } .pt-xl-4, .py-xl-4 { padding-top: 1.5rem !important; } .pr-xl-4, .px-xl-4 { padding-right: 1.5rem !important; } .pb-xl-4, .py-xl-4 { padding-bottom: 1.5rem !important; } .pl-xl-4, .px-xl-4 { padding-left: 1.5rem !important; } .p-xl-5 { padding: 3rem !important; } .pt-xl-5, .py-xl-5 { padding-top: 3rem !important; } .pr-xl-5, .px-xl-5 { padding-right: 3rem !important; } .pb-xl-5, .py-xl-5 { padding-bottom: 3rem !important; } .pl-xl-5, .px-xl-5 { padding-left: 3rem !important; } .m-xl-n1 { margin: -0.25rem !important; } .mt-xl-n1, .my-xl-n1 { margin-top: -0.25rem !important; } .mr-xl-n1, .mx-xl-n1 { margin-right: -0.25rem !important; } .mb-xl-n1, .my-xl-n1 { margin-bottom: -0.25rem !important; } .ml-xl-n1, .mx-xl-n1 { margin-left: -0.25rem !important; } .m-xl-n2 { margin: -0.5rem !important; } .mt-xl-n2, .my-xl-n2 { margin-top: -0.5rem !important; } .mr-xl-n2, .mx-xl-n2 { margin-right: -0.5rem !important; } .mb-xl-n2, .my-xl-n2 { margin-bottom: -0.5rem !important; } .ml-xl-n2, .mx-xl-n2 { margin-left: -0.5rem !important; } .m-xl-n3 { margin: -1rem !important; } .mt-xl-n3, .my-xl-n3 { margin-top: -1rem !important; } .mr-xl-n3, .mx-xl-n3 { margin-right: -1rem !important; } .mb-xl-n3, .my-xl-n3 { margin-bottom: -1rem !important; } .ml-xl-n3, .mx-xl-n3 { margin-left: -1rem !important; } .m-xl-n4 { margin: -1.5rem !important; } .mt-xl-n4, .my-xl-n4 { margin-top: -1.5rem !important; } .mr-xl-n4, .mx-xl-n4 { margin-right: -1.5rem !important; } .mb-xl-n4, .my-xl-n4 { margin-bottom: -1.5rem !important; } .ml-xl-n4, .mx-xl-n4 { margin-left: -1.5rem !important; } .m-xl-n5 { margin: -3rem !important; } .mt-xl-n5, .my-xl-n5 { margin-top: -3rem !important; } .mr-xl-n5, .mx-xl-n5 { margin-right: -3rem !important; } .mb-xl-n5, .my-xl-n5 { margin-bottom: -3rem !important; } .ml-xl-n5, .mx-xl-n5 { margin-left: -3rem !important; } .m-xl-auto { margin: auto !important; } .mt-xl-auto, .my-xl-auto { margin-top: auto !important; } .mr-xl-auto, .mx-xl-auto { margin-right: auto !important; } .mb-xl-auto, .my-xl-auto { margin-bottom: auto !important; } .ml-xl-auto, .mx-xl-auto { margin-left: auto !important; } } .stretched-link::after { position: absolute; inset: 0px; z-index: 1; pointer-events: auto; content: ""; background-color: rgba(0, 0, 0, 0); } .text-monospace { font-family: SFMono-Regular, Menlo, Monaco, Consolas, “Liberation Mono”, “Courier New”, monospace !important; } .text-justify { text-align: justify !important; } .text-wrap { white-space: normal !important; } .text-nowrap { white-space: nowrap !important; } .text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } @media (min-width: 576px) { .text-sm-left { text-align: left !important; } .text-sm-right { text-align: right !important; } .text-sm-center { text-align: center !important; } } @media (min-width: 768px) { .text-md-left { text-align: left !important; } .text-md-right { text-align: right !important; } .text-md-center { text-align: center !important; } } @media (min-width: 992px) { .text-lg-left { text-align: left !important; } .text-lg-right { text-align: right !important; } .text-lg-center { text-align: center !important; } } @media (min-width: 1200px) { .text-xl-left { text-align: left !important; } .text-xl-right { text-align: right !important; } .text-xl-center { text-align: center !important; } } .text-lowercase { text-transform: lowercase !important; } .text-uppercase { text-transform: uppercase !important; } .text-capitalize { text-transform: capitalize !important; } .font-weight-light { font-weight: 300 !important; } .font-weight-lighter { font-weight: lighter !important; } .font-weight-normal { font-weight: 400 !important; } .font-weight-bold { font-weight: 700 !important; } .font-weight-bolder { font-weight: bolder !important; } .font-italic { font-style: italic !important; } .text-white { color: rgb(255, 255, 255) !important; } .text-primary { color: rgb(0, 123, 255) !important; } a.text-primary:focus, a.text-primary:hover { color: rgb(0, 86, 179) !important; } .text-secondary { color: rgb(108, 117, 125) !important; } a.text-secondary:focus, a.text-secondary:hover { color: rgb(73, 79, 84) !important; } .text-success { color: rgb(40, 167, 69) !important; } a.text-success:focus, a.text-success:hover { color: rgb(25, 105, 44) !important; } .text-info { color: rgb(23, 162, 184) !important; } a.text-info:focus, a.text-info:hover { color: rgb(15, 102, 116) !important; } .text-warning { color: rgb(255, 193, 7) !important; } a.text-warning:focus, a.text-warning:hover { color: rgb(186, 139, 0) !important; } .text-danger { color: rgb(220, 53, 69) !important; } a.text-danger:focus, a.text-danger:hover { color: rgb(167, 29, 42) !important; } .text-light { color: rgb(248, 249, 250) !important; } a.text-light:focus, a.text-light:hover { color: rgb(203, 211, 218) !important; } .text-dark { color: rgb(52, 58, 64) !important; } a.text-dark:focus, a.text-dark:hover { color: rgb(18, 20, 22) !important; } .text-body { color: rgb(33, 37, 41) !important; } .text-muted { color: rgb(108, 117, 125) !important; } .text-black-50 { color: rgba(0, 0, 0, 0.5) !important; } .text-white-50 { color: rgba(255, 255, 255, 0.5) !important; } .text-hide { font: 0px / 0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0px; } .text-decoration-none { text-decoration: none !important; } .text-break { word-break: break-word !important; overflow-wrap: break-word !important; } .text-reset { color: inherit !important; } .visible { visibility: visible !important; } .invisible { visibility: hidden !important; } @media print { , ::after, ::before { text-shadow: none !important; box-shadow: none !important; } a:not(.btn) { text-decoration: underline; } abbr[title]::after { content: ” (” attr(title) ”)”; } pre { white-space: pre-wrap !important; } blockquote, pre { border: 1px solid rgb(173, 181, 189); break-inside: avoid; } thead { display: table-header-group; } img, tr { break-inside: avoid; } h2, h3, p { orphans: 3; widows: 3; } h2, h3 { break-after: avoid; } @page { size: a3; } body { min-width: 992px !important; } .container { min-width: 992px !important; } .navbar { display: none; } .badge { border: 1px solid rgb(0, 0, 0); } .table { border-collapse: collapse !important; } .table td, .table th { background-color: rgb(255, 255, 255) !important; } .table-bordered td, .table-bordered th { border: 1px solid rgb(222, 226, 230) !important; } .table-dark { color: inherit; } .table-dark tbody + tbody, .table-dark td, .table-dark th, .table-dark thead th { border-color: rgb(222, 226, 230); } .table .thead-dark th { color: inherit; border-color: rgb(222, 226, 230); } } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/editormd/lib/codemirror/codemirror.min.css?editormd_version=1.0.2 @charset “utf-8”; .CodeMirror { font-family: monospace; height: 300px; color: rgb(0, 0, 0); direction: ltr; } .CodeMirror-lines { padding: 4px 0px; } .CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like { padding: 0px 4px; } .CodeMirror-gutter-filler, .CodeMirror-scrollbar-filler { background-color: rgb(255, 255, 255); } .CodeMirror-gutters { border-right: 1px solid rgb(221, 221, 221); background-color: rgb(247, 247, 247); white-space: nowrap; } .CodeMirror-linenumber { padding: 0px 3px 0px 5px; min-width: 20px; text-align: right; color: rgb(153, 153, 153); white-space: nowrap; } .CodeMirror-guttermarker { color: rgb(0, 0, 0); } .CodeMirror-guttermarker-subtle { color: rgb(153, 153, 153); } .CodeMirror-cursor { border-left: 1px solid rgb(0, 0, 0); border-right: none; width: 0px; } .CodeMirror div.CodeMirror-secondarycursor { border-left: 1px solid silver; } .cm-fat-cursor .CodeMirror-cursor { width: auto; background: rgb(119, 238, 119); border: 0px !important; } .cm-fat-cursor div.CodeMirror-cursors { z-index: 1; } .cm-fat-cursor .CodeMirror-line::selection, .cm-fat-cursor .CodeMirror-line > span::selection, .cm-fat-cursor .CodeMirror-line > span > span::selection { background: 0px 0px; } .cm-fat-cursor { caret-color: transparent; } @-webkit-keyframes blink { 50% { background-color: transparent; } } @keyframes blink { 50% { background-color: transparent; } } .cm-tab { display: inline-block; text-decoration: inherit; } .CodeMirror-rulers { position: absolute; inset: -50px 0px 0px; overflow: hidden; } .CodeMirror-ruler { border-left: 1px solid rgb(204, 204, 204); top: 0px; bottom: 0px; position: absolute; } .cm-s-default .cm-header { color: rgb(0, 0, 255); } .cm-s-default .cm-quote { color: rgb(0, 153, 0); } .cm-negative { color: rgb(221, 68, 68); } .cm-positive { color: rgb(34, 153, 34); } .cm-header, .cm-strong { font-weight: 700; } .cm-em { font-style: italic; } .cm-link { text-decoration: underline; } .cm-strikethrough { text-decoration: line-through; } .cm-s-default .cm-keyword { color: rgb(119, 0, 136); } .cm-s-default .cm-atom { color: rgb(34, 17, 153); } .cm-s-default .cm-number { color: rgb(17, 102, 68); } .cm-s-default .cm-def { color: rgb(0, 0, 255); } .cm-s-default .cm-variable-2 { color: rgb(0, 85, 170); } .cm-s-default .cm-type, .cm-s-default .cm-variable-3 { color: rgb(0, 136, 85); } .cm-s-default .cm-comment { color: rgb(170, 85, 0); } .cm-s-default .cm-string { color: rgb(170, 17, 17); } .cm-s-default .cm-string-2 { color: rgb(255, 85, 0); } .cm-s-default .cm-meta, .cm-s-default .cm-qualifier { color: rgb(85, 85, 85); } .cm-s-default .cm-builtin { color: rgb(51, 0, 170); } .cm-s-default .cm-bracket { color: rgb(153, 153, 119); } .cm-s-default .cm-tag { color: rgb(17, 119, 0); } .cm-s-default .cm-attribute { color: rgb(0, 0, 204); } .cm-s-default .cm-hr { color: rgb(153, 153, 153); } .cm-s-default .cm-link { color: rgb(0, 0, 204); } .cm-invalidchar, .cm-s-default .cm-error { color: red; } .CodeMirror-composing { border-bottom: 2px solid; } div.CodeMirror span.CodeMirror-matchingbracket { color: rgb(0, 187, 0); } div.CodeMirror span.CodeMirror-nonmatchingbracket { color: rgb(170, 34, 34); } .CodeMirror-matchingtag { background: rgba(255, 150, 0, 0.3); } .CodeMirror-activeline-background { background: rgb(232, 242, 255); } .CodeMirror { position: relative; overflow: hidden; background: rgb(255, 255, 255); } .CodeMirror-scroll { margin-bottom: -50px; margin-right: -50px; padding-bottom: 50px; height: 100%; outline: 0px; position: relative; z-index: 0; overflow: scroll !important; } .CodeMirror-sizer { position: relative; border-right: 50px solid transparent; } .CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar { position: absolute; z-index: 6; display: none; outline: 0px; } .CodeMirror-vscrollbar { right: 0px; top: 0px; overflow: hidden scroll; } .CodeMirror-hscrollbar { bottom: 0px; left: 0px; overflow: scroll hidden; } .CodeMirror-scrollbar-filler { right: 0px; bottom: 0px; } .CodeMirror-gutter-filler { left: 0px; bottom: 0px; } .CodeMirror-gutters { position: absolute; left: 0px; top: 0px; min-height: 100%; z-index: 3; } .CodeMirror-gutter { white-space: normal; height: 100%; display: inline-block; vertical-align: top; margin-bottom: -50px; } .CodeMirror-gutter-wrapper { position: absolute; z-index: 4; background: 0px 0px !important; border: none !important; } .CodeMirror-gutter-background { position: absolute; top: 0px; bottom: 0px; z-index: 4; } .CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; } .CodeMirror-gutter-wrapper ::selection { background-color: transparent; } .CodeMirror-lines { cursor: text; min-height: 1px; } .CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like { border-radius: 0px; border-width: 0px; background: 0px 0px; font-family: inherit; font-size: inherit; margin: 0px; white-space: pre; overflow-wrap: normal; line-height: inherit; color: inherit; z-index: 2; position: relative; overflow: visible; -webkit-tap-highlight-color: transparent; font-variant-ligatures: contextual; } .CodeMirror-wrap pre.CodeMirror-line, .CodeMirror-wrap pre.CodeMirror-line-like { overflow-wrap: break-word; white-space: pre-wrap; word-break: normal; } .CodeMirror-linebackground { position: absolute; inset: 0px; z-index: 0; } .CodeMirror-linewidget { position: relative; z-index: 2; padding: 0.1px; } .CodeMirror-rtl pre { direction: rtl; } .CodeMirror-code { outline: 0px; } .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber, .CodeMirror-scroll, .CodeMirror-sizer { box-sizing: content-box; } .CodeMirror-measure { position: absolute; width: 100%; height: 0px; overflow: hidden; visibility: hidden; } .CodeMirror-cursor { position: absolute; pointer-events: none; } .CodeMirror-measure pre { position: static; } div.CodeMirror-cursors { visibility: hidden; position: relative; z-index: 3; } .CodeMirror-focused div.CodeMirror-cursors, div.CodeMirror-dragcursors { visibility: visible; } .CodeMirror-selected { background: rgb(217, 217, 217); } .CodeMirror-focused .CodeMirror-selected { background: rgb(215, 212, 240); } .CodeMirror-crosshair { cursor: crosshair; } .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: rgb(215, 212, 240); } .cm-searching { background-color: rgba(255, 255, 0, 0.4); } .cm-force-border { padding-right: 0.1px; } @media print { .CodeMirror div.CodeMirror-cursors { visibility: hidden; } } .cm-tab-wrap-hack::after { content: ""; } span.CodeMirror-selectedtext { background: 0px 0px; } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/editormd/lib/codemirror/addon/fold/foldgutter.css?editormd_version=1.0.2 @charset “utf-8”; .CodeMirror-foldmarker { color: blue; text-shadow: rgb(187, 153, 255) 1px 1px 2px, rgb(187, 153, 255) -1px -1px 2px, rgb(187, 153, 255) 1px -1px 2px, rgb(187, 153, 255) -1px 1px 2px; font-family: arial; line-height: 0.3; cursor: pointer; } .CodeMirror-foldgutter { width: 0.7em; } .CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded { cursor: pointer; } .CodeMirror-foldgutter-open::after { content: ”▾”; } .CodeMirror-foldgutter-folded::after { content: ”▸”; } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.15.6/katex.min.css?editormd_version=1.0.2 @charset “utf-8”; @font-face { font-family: KaTeX_AMS; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_AMS-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_AMS-Regular.woff”) format(“woff”), url(“fonts/KaTeX_AMS-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Caligraphic; font-style: normal; font-weight: 700; src: url(“fonts/KaTeX_Caligraphic-Bold.woff2”) format(“woff2”), url(“fonts/KaTeX_Caligraphic-Bold.woff”) format(“woff”), url(“fonts/KaTeX_Caligraphic-Bold.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Caligraphic; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Caligraphic-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Caligraphic-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Caligraphic-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Fraktur; font-style: normal; font-weight: 700; src: url(“fonts/KaTeX_Fraktur-Bold.woff2”) format(“woff2”), url(“fonts/KaTeX_Fraktur-Bold.woff”) format(“woff”), url(“fonts/KaTeX_Fraktur-Bold.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Fraktur; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Fraktur-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Fraktur-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Fraktur-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Main; font-style: normal; font-weight: 700; src: url(“fonts/KaTeX_Main-Bold.woff2”) format(“woff2”), url(“fonts/KaTeX_Main-Bold.woff”) format(“woff”), url(“fonts/KaTeX_Main-Bold.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Main; font-style: italic; font-weight: 700; src: url(“fonts/KaTeX_Main-BoldItalic.woff2”) format(“woff2”), url(“fonts/KaTeX_Main-BoldItalic.woff”) format(“woff”), url(“fonts/KaTeX_Main-BoldItalic.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Main; font-style: italic; font-weight: 400; src: url(“fonts/KaTeX_Main-Italic.woff2”) format(“woff2”), url(“fonts/KaTeX_Main-Italic.woff”) format(“woff”), url(“fonts/KaTeX_Main-Italic.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Main; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Main-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Main-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Main-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Math; font-style: italic; font-weight: 700; src: url(“fonts/KaTeX_Math-BoldItalic.woff2”) format(“woff2”), url(“fonts/KaTeX_Math-BoldItalic.woff”) format(“woff”), url(“fonts/KaTeX_Math-BoldItalic.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Math; font-style: italic; font-weight: 400; src: url(“fonts/KaTeX_Math-Italic.woff2”) format(“woff2”), url(“fonts/KaTeX_Math-Italic.woff”) format(“woff”), url(“fonts/KaTeX_Math-Italic.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_SansSerif; font-style: normal; font-weight: 700; src: url(“fonts/KaTeX_SansSerif-Bold.woff2”) format(“woff2”), url(“fonts/KaTeX_SansSerif-Bold.woff”) format(“woff”), url(“fonts/KaTeX_SansSerif-Bold.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_SansSerif; font-style: italic; font-weight: 400; src: url(“fonts/KaTeX_SansSerif-Italic.woff2”) format(“woff2”), url(“fonts/KaTeX_SansSerif-Italic.woff”) format(“woff”), url(“fonts/KaTeX_SansSerif-Italic.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_SansSerif; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_SansSerif-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_SansSerif-Regular.woff”) format(“woff”), url(“fonts/KaTeX_SansSerif-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Script; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Script-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Script-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Script-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Size1; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Size1-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Size1-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Size1-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Size2; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Size2-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Size2-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Size2-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Size3; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Size3-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Size3-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Size3-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Size4; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Size4-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Size4-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Size4-Regular.ttf”) format(“truetype”); } @font-face { font-family: KaTeX_Typewriter; font-style: normal; font-weight: 400; src: url(“fonts/KaTeX_Typewriter-Regular.woff2”) format(“woff2”), url(“fonts/KaTeX_Typewriter-Regular.woff”) format(“woff”), url(“fonts/KaTeX_Typewriter-Regular.ttf”) format(“truetype”); } .katex { text-rendering: auto; font: 1.21em / 1.2 KaTeX_Main, “Times New Roman”, serif; text-indent: 0px; } .katex * { border-color: currentcolor; } .katex .katex-version::after { content: “0.15.6”; } .katex .katex-mathml { clip: rect(1px, 1px, 1px, 1px); border: 0px; height: 1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; } .katex .katex-html > .newline { display: block; } .katex .base { position: relative; white-space: nowrap; width: min-content; } .katex .base, .katex .strut { display: inline-block; } .katex .textbf { font-weight: 700; } .katex .textit { font-style: italic; } .katex .textrm { font-family: KaTeX_Main; } .katex .textsf { font-family: KaTeX_SansSerif; } .katex .texttt { font-family: KaTeX_Typewriter; } .katex .mathnormal { font-family: KaTeX_Math; font-style: italic; } .katex .mathit { font-family: KaTeX_Main; font-style: italic; } .katex .mathrm { font-style: normal; } .katex .mathbf { font-family: KaTeX_Main; font-weight: 700; } .katex .boldsymbol { font-family: KaTeX_Math; font-style: italic; font-weight: 700; } .katex .amsrm, .katex .mathbb, .katex .textbb { font-family: KaTeX_AMS; } .katex .mathcal { font-family: KaTeX_Caligraphic; } .katex .mathfrak, .katex .textfrak { font-family: KaTeX_Fraktur; } .katex .mathtt { font-family: KaTeX_Typewriter; } .katex .mathscr, .katex .textscr { font-family: KaTeX_Script; } .katex .mathsf, .katex .textsf { font-family: KaTeX_SansSerif; } .katex .mathboldsf, .katex .textboldsf { font-family: KaTeX_SansSerif; font-weight: 700; } .katex .mathitsf, .katex .textitsf { font-family: KaTeX_SansSerif; font-style: italic; } .katex .mainrm { font-family: KaTeX_Main; font-style: normal; } .katex .vlist-t { border-collapse: collapse; display: inline-table; table-layout: fixed; } .katex .vlist-r { display: table-row; } .katex .vlist { display: table-cell; position: relative; vertical-align: bottom; } .katex .vlist > span { display: block; height: 0px; position: relative; } .katex .vlist > span > span { display: inline-block; } .katex .vlist > span > .pstrut { overflow: hidden; width: 0px; } .katex .vlist-t2 { margin-right: -2px; } .katex .vlist-s { display: table-cell; font-size: 1px; min-width: 2px; vertical-align: bottom; width: 2px; } .katex .vbox { align-items: baseline; display: inline-flex; flex-direction: column; } .katex .hbox { width: 100%; } .katex .hbox, .katex .thinbox { display: inline-flex; flex-direction: row; } .katex .thinbox { max-width: 0px; width: 0px; } .katex .msupsub { text-align: left; } .katex .mfrac > span > span { text-align: center; } .katex .mfrac .frac-line { border-bottom-style: solid; display: inline-block; width: 100%; } .katex .hdashline, .katex .hline, .katex .mfrac .frac-line, .katex .overline .overline-line, .katex .rule, .katex .underline .underline-line { min-height: 1px; } .katex .mspace { display: inline-block; } .katex .clap, .katex .llap, .katex .rlap { position: relative; width: 0px; } .katex .clap > .inner, .katex .llap > .inner, .katex .rlap > .inner { position: absolute; } .katex .clap > .fix, .katex .llap > .fix, .katex .rlap > .fix { display: inline-block; } .katex .llap > .inner { right: 0px; } .katex .clap > .inner, .katex .rlap > .inner { left: 0px; } .katex .clap > .inner > span { margin-left: -50%; margin-right: 50%; } .katex .rule { border: 0px solid; display: inline-block; position: relative; } .katex .hline, .katex .overline .overline-line, .katex .underline .underline-line { border-bottom-style: solid; display: inline-block; width: 100%; } .katex .hdashline { border-bottom-style: dashed; display: inline-block; width: 100%; } .katex .sqrt > .root { margin-left: 0.277778em; margin-right: -0.555556em; } .katex .fontsize-ensurer.reset-size1.size1, .katex .sizing.reset-size1.size1 { font-size: 1em; } .katex .fontsize-ensurer.reset-size1.size2, .katex .sizing.reset-size1.size2 { font-size: 1.2em; } .katex .fontsize-ensurer.reset-size1.size3, .katex .sizing.reset-size1.size3 { font-size: 1.4em; } .katex .fontsize-ensurer.reset-size1.size4, .katex .sizing.reset-size1.size4 { font-size: 1.6em; } .katex .fontsize-ensurer.reset-size1.size5, .katex .sizing.reset-size1.size5 { font-size: 1.8em; } .katex .fontsize-ensurer.reset-size1.size6, .katex .sizing.reset-size1.size6 { font-size: 2em; } .katex .fontsize-ensurer.reset-size1.size7, .katex .sizing.reset-size1.size7 { font-size: 2.4em; } .katex .fontsize-ensurer.reset-size1.size8, .katex .sizing.reset-size1.size8 { font-size: 2.88em; } .katex .fontsize-ensurer.reset-size1.size9, .katex .sizing.reset-size1.size9 { font-size: 3.456em; } .katex .fontsize-ensurer.reset-size1.size10, .katex .sizing.reset-size1.size10 { font-size: 4.148em; } .katex .fontsize-ensurer.reset-size1.size11, .katex .sizing.reset-size1.size11 { font-size: 4.976em; } .katex .fontsize-ensurer.reset-size2.size1, .katex .sizing.reset-size2.size1 { font-size: 0.833333em; } .katex .fontsize-ensurer.reset-size2.size2, .katex .sizing.reset-size2.size2 { font-size: 1em; } .katex .fontsize-ensurer.reset-size2.size3, .katex .sizing.reset-size2.size3 { font-size: 1.16667em; } .katex .fontsize-ensurer.reset-size2.size4, .katex .sizing.reset-size2.size4 { font-size: 1.33333em; } .katex .fontsize-ensurer.reset-size2.size5, .katex .sizing.reset-size2.size5 { font-size: 1.5em; } .katex .fontsize-ensurer.reset-size2.size6, .katex .sizing.reset-size2.size6 { font-size: 1.66667em; } .katex .fontsize-ensurer.reset-size2.size7, .katex .sizing.reset-size2.size7 { font-size: 2em; } .katex .fontsize-ensurer.reset-size2.size8, .katex .sizing.reset-size2.size8 { font-size: 2.4em; } .katex .fontsize-ensurer.reset-size2.size9, .katex .sizing.reset-size2.size9 { font-size: 2.88em; } .katex .fontsize-ensurer.reset-size2.size10, .katex .sizing.reset-size2.size10 { font-size: 3.45667em; } .katex .fontsize-ensurer.reset-size2.size11, .katex .sizing.reset-size2.size11 { font-size: 4.14667em; } .katex .fontsize-ensurer.reset-size3.size1, .katex .sizing.reset-size3.size1 { font-size: 0.714286em; } .katex .fontsize-ensurer.reset-size3.size2, .katex .sizing.reset-size3.size2 { font-size: 0.857143em; } .katex .fontsize-ensurer.reset-size3.size3, .katex .sizing.reset-size3.size3 { font-size: 1em; } .katex .fontsize-ensurer.reset-size3.size4, .katex .sizing.reset-size3.size4 { font-size: 1.14286em; } .katex .fontsize-ensurer.reset-size3.size5, .katex .sizing.reset-size3.size5 { font-size: 1.28571em; } .katex .fontsize-ensurer.reset-size3.size6, .katex .sizing.reset-size3.size6 { font-size: 1.42857em; } .katex .fontsize-ensurer.reset-size3.size7, .katex .sizing.reset-size3.size7 { font-size: 1.71429em; } .katex .fontsize-ensurer.reset-size3.size8, .katex .sizing.reset-size3.size8 { font-size: 2.05714em; } .katex .fontsize-ensurer.reset-size3.size9, .katex .sizing.reset-size3.size9 { font-size: 2.46857em; } .katex .fontsize-ensurer.reset-size3.size10, .katex .sizing.reset-size3.size10 { font-size: 2.96286em; } .katex .fontsize-ensurer.reset-size3.size11, .katex .sizing.reset-size3.size11 { font-size: 3.55429em; } .katex .fontsize-ensurer.reset-size4.size1, .katex .sizing.reset-size4.size1 { font-size: 0.625em; } .katex .fontsize-ensurer.reset-size4.size2, .katex .sizing.reset-size4.size2 { font-size: 0.75em; } .katex .fontsize-ensurer.reset-size4.size3, .katex .sizing.reset-size4.size3 { font-size: 0.875em; } .katex .fontsize-ensurer.reset-size4.size4, .katex .sizing.reset-size4.size4 { font-size: 1em; } .katex .fontsize-ensurer.reset-size4.size5, .katex .sizing.reset-size4.size5 { font-size: 1.125em; } .katex .fontsize-ensurer.reset-size4.size6, .katex .sizing.reset-size4.size6 { font-size: 1.25em; } .katex .fontsize-ensurer.reset-size4.size7, .katex .sizing.reset-size4.size7 { font-size: 1.5em; } .katex .fontsize-ensurer.reset-size4.size8, .katex .sizing.reset-size4.size8 { font-size: 1.8em; } .katex .fontsize-ensurer.reset-size4.size9, .katex .sizing.reset-size4.size9 { font-size: 2.16em; } .katex .fontsize-ensurer.reset-size4.size10, .katex .sizing.reset-size4.size10 { font-size: 2.5925em; } .katex .fontsize-ensurer.reset-size4.size11, .katex .sizing.reset-size4.size11 { font-size: 3.11em; } .katex .fontsize-ensurer.reset-size5.size1, .katex .sizing.reset-size5.size1 { font-size: 0.555556em; } .katex .fontsize-ensurer.reset-size5.size2, .katex .sizing.reset-size5.size2 { font-size: 0.666667em; } .katex .fontsize-ensurer.reset-size5.size3, .katex .sizing.reset-size5.size3 { font-size: 0.777778em; } .katex .fontsize-ensurer.reset-size5.size4, .katex .sizing.reset-size5.size4 { font-size: 0.888889em; } .katex .fontsize-ensurer.reset-size5.size5, .katex .sizing.reset-size5.size5 { font-size: 1em; } .katex .fontsize-ensurer.reset-size5.size6, .katex .sizing.reset-size5.size6 { font-size: 1.11111em; } .katex .fontsize-ensurer.reset-size5.size7, .katex .sizing.reset-size5.size7 { font-size: 1.33333em; } .katex .fontsize-ensurer.reset-size5.size8, .katex .sizing.reset-size5.size8 { font-size: 1.6em; } .katex .fontsize-ensurer.reset-size5.size9, .katex .sizing.reset-size5.size9 { font-size: 1.92em; } .katex .fontsize-ensurer.reset-size5.size10, .katex .sizing.reset-size5.size10 { font-size: 2.30444em; } .katex .fontsize-ensurer.reset-size5.size11, .katex .sizing.reset-size5.size11 { font-size: 2.76444em; } .katex .fontsize-ensurer.reset-size6.size1, .katex .sizing.reset-size6.size1 { font-size: 0.5em; } .katex .fontsize-ensurer.reset-size6.size2, .katex .sizing.reset-size6.size2 { font-size: 0.6em; } .katex .fontsize-ensurer.reset-size6.size3, .katex .sizing.reset-size6.size3 { font-size: 0.7em; } .katex .fontsize-ensurer.reset-size6.size4, .katex .sizing.reset-size6.size4 { font-size: 0.8em; } .katex .fontsize-ensurer.reset-size6.size5, .katex .sizing.reset-size6.size5 { font-size: 0.9em; } .katex .fontsize-ensurer.reset-size6.size6, .katex .sizing.reset-size6.size6 { font-size: 1em; } .katex .fontsize-ensurer.reset-size6.size7, .katex .sizing.reset-size6.size7 { font-size: 1.2em; } .katex .fontsize-ensurer.reset-size6.size8, .katex .sizing.reset-size6.size8 { font-size: 1.44em; } .katex .fontsize-ensurer.reset-size6.size9, .katex .sizing.reset-size6.size9 { font-size: 1.728em; } .katex .fontsize-ensurer.reset-size6.size10, .katex .sizing.reset-size6.size10 { font-size: 2.074em; } .katex .fontsize-ensurer.reset-size6.size11, .katex .sizing.reset-size6.size11 { font-size: 2.488em; } .katex .fontsize-ensurer.reset-size7.size1, .katex .sizing.reset-size7.size1 { font-size: 0.416667em; } .katex .fontsize-ensurer.reset-size7.size2, .katex .sizing.reset-size7.size2 { font-size: 0.5em; } .katex .fontsize-ensurer.reset-size7.size3, .katex .sizing.reset-size7.size3 { font-size: 0.583333em; } .katex .fontsize-ensurer.reset-size7.size4, .katex .sizing.reset-size7.size4 { font-size: 0.666667em; } .katex .fontsize-ensurer.reset-size7.size5, .katex .sizing.reset-size7.size5 { font-size: 0.75em; } .katex .fontsize-ensurer.reset-size7.size6, .katex .sizing.reset-size7.size6 { font-size: 0.833333em; } .katex .fontsize-ensurer.reset-size7.size7, .katex .sizing.reset-size7.size7 { font-size: 1em; } .katex .fontsize-ensurer.reset-size7.size8, .katex .sizing.reset-size7.size8 { font-size: 1.2em; } .katex .fontsize-ensurer.reset-size7.size9, .katex .sizing.reset-size7.size9 { font-size: 1.44em; } .katex .fontsize-ensurer.reset-size7.size10, .katex .sizing.reset-size7.size10 { font-size: 1.72833em; } .katex .fontsize-ensurer.reset-size7.size11, .katex .sizing.reset-size7.size11 { font-size: 2.07333em; } .katex .fontsize-ensurer.reset-size8.size1, .katex .sizing.reset-size8.size1 { font-size: 0.347222em; } .katex .fontsize-ensurer.reset-size8.size2, .katex .sizing.reset-size8.size2 { font-size: 0.416667em; } .katex .fontsize-ensurer.reset-size8.size3, .katex .sizing.reset-size8.size3 { font-size: 0.486111em; } .katex .fontsize-ensurer.reset-size8.size4, .katex .sizing.reset-size8.size4 { font-size: 0.555556em; } .katex .fontsize-ensurer.reset-size8.size5, .katex .sizing.reset-size8.size5 { font-size: 0.625em; } .katex .fontsize-ensurer.reset-size8.size6, .katex .sizing.reset-size8.size6 { font-size: 0.694444em; } .katex .fontsize-ensurer.reset-size8.size7, .katex .sizing.reset-size8.size7 { font-size: 0.833333em; } .katex .fontsize-ensurer.reset-size8.size8, .katex .sizing.reset-size8.size8 { font-size: 1em; } .katex .fontsize-ensurer.reset-size8.size9, .katex .sizing.reset-size8.size9 { font-size: 1.2em; } .katex .fontsize-ensurer.reset-size8.size10, .katex .sizing.reset-size8.size10 { font-size: 1.44028em; } .katex .fontsize-ensurer.reset-size8.size11, .katex .sizing.reset-size8.size11 { font-size: 1.72778em; } .katex .fontsize-ensurer.reset-size9.size1, .katex .sizing.reset-size9.size1 { font-size: 0.289352em; } .katex .fontsize-ensurer.reset-size9.size2, .katex .sizing.reset-size9.size2 { font-size: 0.347222em; } .katex .fontsize-ensurer.reset-size9.size3, .katex .sizing.reset-size9.size3 { font-size: 0.405093em; } .katex .fontsize-ensurer.reset-size9.size4, .katex .sizing.reset-size9.size4 { font-size: 0.462963em; } .katex .fontsize-ensurer.reset-size9.size5, .katex .sizing.reset-size9.size5 { font-size: 0.520833em; } .katex .fontsize-ensurer.reset-size9.size6, .katex .sizing.reset-size9.size6 { font-size: 0.578704em; } .katex .fontsize-ensurer.reset-size9.size7, .katex .sizing.reset-size9.size7 { font-size: 0.694444em; } .katex .fontsize-ensurer.reset-size9.size8, .katex .sizing.reset-size9.size8 { font-size: 0.833333em; } .katex .fontsize-ensurer.reset-size9.size9, .katex .sizing.reset-size9.size9 { font-size: 1em; } .katex .fontsize-ensurer.reset-size9.size10, .katex .sizing.reset-size9.size10 { font-size: 1.20023em; } .katex .fontsize-ensurer.reset-size9.size11, .katex .sizing.reset-size9.size11 { font-size: 1.43981em; } .katex .fontsize-ensurer.reset-size10.size1, .katex .sizing.reset-size10.size1 { font-size: 0.24108em; } .katex .fontsize-ensurer.reset-size10.size2, .katex .sizing.reset-size10.size2 { font-size: 0.289296em; } .katex .fontsize-ensurer.reset-size10.size3, .katex .sizing.reset-size10.size3 { font-size: 0.337512em; } .katex .fontsize-ensurer.reset-size10.size4, .katex .sizing.reset-size10.size4 { font-size: 0.385728em; } .katex .fontsize-ensurer.reset-size10.size5, .katex .sizing.reset-size10.size5 { font-size: 0.433944em; } .katex .fontsize-ensurer.reset-size10.size6, .katex .sizing.reset-size10.size6 { font-size: 0.48216em; } .katex .fontsize-ensurer.reset-size10.size7, .katex .sizing.reset-size10.size7 { font-size: 0.578592em; } .katex .fontsize-ensurer.reset-size10.size8, .katex .sizing.reset-size10.size8 { font-size: 0.694311em; } .katex .fontsize-ensurer.reset-size10.size9, .katex .sizing.reset-size10.size9 { font-size: 0.833173em; } .katex .fontsize-ensurer.reset-size10.size10, .katex .sizing.reset-size10.size10 { font-size: 1em; } .katex .fontsize-ensurer.reset-size10.size11, .katex .sizing.reset-size10.size11 { font-size: 1.19961em; } .katex .fontsize-ensurer.reset-size11.size1, .katex .sizing.reset-size11.size1 { font-size: 0.200965em; } .katex .fontsize-ensurer.reset-size11.size2, .katex .sizing.reset-size11.size2 { font-size: 0.241158em; } .katex .fontsize-ensurer.reset-size11.size3, .katex .sizing.reset-size11.size3 { font-size: 0.28135em; } .katex .fontsize-ensurer.reset-size11.size4, .katex .sizing.reset-size11.size4 { font-size: 0.321543em; } .katex .fontsize-ensurer.reset-size11.size5, .katex .sizing.reset-size11.size5 { font-size: 0.361736em; } .katex .fontsize-ensurer.reset-size11.size6, .katex .sizing.reset-size11.size6 { font-size: 0.401929em; } .katex .fontsize-ensurer.reset-size11.size7, .katex .sizing.reset-size11.size7 { font-size: 0.482315em; } .katex .fontsize-ensurer.reset-size11.size8, .katex .sizing.reset-size11.size8 { font-size: 0.578778em; } .katex .fontsize-ensurer.reset-size11.size9, .katex .sizing.reset-size11.size9 { font-size: 0.694534em; } .katex .fontsize-ensurer.reset-size11.size10, .katex .sizing.reset-size11.size10 { font-size: 0.833601em; } .katex .fontsize-ensurer.reset-size11.size11, .katex .sizing.reset-size11.size11 { font-size: 1em; } .katex .delimsizing.size1 { font-family: KaTeX_Size1; } .katex .delimsizing.size2 { font-family: KaTeX_Size2; } .katex .delimsizing.size3 { font-family: KaTeX_Size3; } .katex .delimsizing.size4 { font-family: KaTeX_Size4; } .katex .delimsizing.mult .delim-size1 > span { font-family: KaTeX_Size1; } .katex .delimsizing.mult .delim-size4 > span { font-family: KaTeX_Size4; } .katex .nulldelimiter { display: inline-block; width: 0.12em; } .katex .delimcenter, .katex .op-symbol { position: relative; } .katex .op-symbol.small-op { font-family: KaTeX_Size1; } .katex .op-symbol.large-op { font-family: KaTeX_Size2; } .katex .accent > .vlist-t, .katex .op-limits > .vlist-t { text-align: center; } .katex .accent .accent-body { position: relative; } .katex .accent .accent-body:not(.accent-full) { width: 0px; } .katex .overlay { display: block; } .katex .mtable .vertical-separator { display: inline-block; min-width: 1px; } .katex .mtable .arraycolsep { display: inline-block; } .katex .mtable .col-align-c > .vlist-t { text-align: center; } .katex .mtable .col-align-l > .vlist-t { text-align: left; } .katex .mtable .col-align-r > .vlist-t { text-align: right; } .katex .svg-align { text-align: left; } .katex svg { fill: currentcolor; stroke: currentcolor; fill-rule: nonzero; fill-opacity: 1; stroke-width: 1; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-dasharray: none; stroke-dashoffset: 0; stroke-opacity: 1; display: block; height: inherit; position: absolute; width: 100%; } .katex svg path { stroke: none; } .katex img { border-style: none; max-height: none; max-width: none; min-height: 0px; min-width: 0px; } .katex .stretchy { display: block; overflow: hidden; position: relative; width: 100%; } .katex .stretchy::after, .katex .stretchy::before { content: ""; } .katex .hide-tail { overflow: hidden; position: relative; width: 100%; } .katex .halfarrow-left { left: 0px; overflow: hidden; position: absolute; width: 50.2%; } .katex .halfarrow-right { overflow: hidden; position: absolute; right: 0px; width: 50.2%; } .katex .brace-left { left: 0px; overflow: hidden; position: absolute; width: 25.1%; } .katex .brace-center { left: 25%; overflow: hidden; position: absolute; width: 50%; } .katex .brace-right { overflow: hidden; position: absolute; right: 0px; width: 25.1%; } .katex .x-arrow-pad { padding: 0px 0.5em; } .katex .cd-arrow-pad { padding: 0px 0.55556em 0px 0.27778em; } .katex .mover, .katex .munder, .katex .x-arrow { text-align: center; } .katex .boxpad { padding: 0px 0.3em; } .katex .fbox, .katex .fcolorbox { border: 0.04em solid; box-sizing: border-box; } .katex .cancel-pad { padding: 0px 0.2em; } .katex .cancel-lap { margin-left: -0.2em; margin-right: -0.2em; } .katex .sout { border-bottom-style: solid; border-bottom-width: 0.08em; } .katex .angl { border-right: 0.049em solid; border-top: 0.049em solid; box-sizing: border-box; margin-right: 0.03889em; } .katex .anglpad { padding: 0px 0.03889em; } .katex .eqn-num::before { content: ”(” counter(katexEqnNo) ”)”; counter-increment: katexEqnNo 1; } .katex .mml-eqn-num::before { content: ”(” counter(mmlEqnNo) ”)”; counter-increment: mmlEqnNo 1; } .katex .mtr-glue { width: 50%; } .katex .cd-vert-arrow { display: inline-block; position: relative; } .katex .cd-label-left { display: inline-block; position: absolute; right: calc(50% + 0.3em); text-align: left; } .katex .cd-label-right { display: inline-block; left: calc(50% + 0.3em); position: absolute; text-align: right; } .katex-display { display: block; margin: 1em 0px; text-align: center; } .katex-display > .katex { display: block; text-align: center; white-space: nowrap; } .katex-display > .katex > .katex-html { display: block; position: relative; } .katex-display > .katex > .katex-html > .tag { position: absolute; right: 0px; } .katex-display.leqno > .katex > .katex-html > .tag { left: 0px; right: auto; } .katex-display.fleqn > .katex { padding-left: 2em; text-align: left; } body { counter-reset: katexEqnNo 0 mmlEqnNo 0; } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: image/png Content-Transfer-Encoding: binary Content-Location: https://cf-courses-data.s3.us.cloud-object-storage.appdomain.cloud/IBM-DB0110EN-SkillsNetwork/images/MicrosoftTeams-image.png �PNG IHDR�d,X�iTXtXML:com.adobe.xmp footer_6b �>���iCCPsRGB IEC61966-2.1(�u��KA��D%����V��A��/P���Mr�%B�]D�V�D_��� ւ�(��j�h��K bf��o�3�=�V2F�2ټ��“�n�+M�㢃�bh3s�aj��6+�y�Z���k��QxD������Z^�xW�]IE����].(|o��Y�,��z84 �6aw��cU����LzU)��zIK”;?’�[��q3�������K$�GXUI��’;C.���gv��vJiSsSii)��Ps2�VW�V����h��ܓ��’�u����������3�L�H$j�գ]��J8. ����X,�{o4���Z�++U偽(����B�g#� 8��U*��U���V�Y���Z�J%�J��#�bT���?����VVgf�<^�a��dG{Ϲ�b[Qw$�9��� �S��}��fy9�V[W���R[S�Q���bq��1619>9���E��)�N�}����]&cNO��r��D”17�p�������(B(�&����������L�Pp�d2��rOLN��O��x<�:n��{{�u�<�Ѩ��A�EQ\Y]{���X,�:Xl+��{�dG�J�<�E_H&��K��ܟ��K$����e��.���6+��]�p w��{���‘O���H��X�^��ˊ��b�,9�Ud�XGg�$)�xD]�� ��� i֭������K�[���b���¶i~�f���*[���Ч������pq]�b{p��OZT��:q�����F�uMK����9}���|� �@��w.�}og���=� pHYs.#.#x�?v IDATx���wtc�}'�{����9�P�EV� ]�[R+Yɞ�%˚˖<���s6{��sf�3�9g��8�rX�mI�-���U�ՕY,��s&@ "?�w�t��HA0����E�w߽?<��?��{�1F�++�8�^����}��S�T/�ܺ�����x���,$�^���(ohlh�h?s����A�VI$��O����o}ﯿ���3 �%���/�Bm]���o�ͥ�8�6?�Ƿ����ё�D”qp��$=��_2��x<��������IeҒ���7>�ƩS’Mf����Θ(��_Z\���:�թV�b�h4:91����Fb�,�C^�h%≕����ݿ�֯��?��?�η�hrb2 1Ǝ���$���G�++�4������L$>���@w�%³g�GG���?��?���+UU����X�>Z^Znjj��|������hT(�̻B��%�������~����{�h4������ʹ���>c2� ;��㙞�^__��ㅝ9�4����b����1)��*�N��j�J�qG] �T�D"������������|�������\�z���s�3��H�������1�?����fwl��~+��� 0�v��ɤ�F���uZ�Ng�Zj��lEV�Dr���ֶ֣.�F�q[|W��466�����nݸ���>��O��ǽ�������m��d�n���H���5I1Y��wEӆ��(����������� yO�q��bimnlkm.+-�y��u�[7ou �hni…8w���3�z����e�ŧ�gn߽����z�����\�r����Rzh��Ƿ~���W��W�|��Y�L������w���B��Vu���˿��_lh��8n۩����y��a$9�¤RiCC�g�3U�U��gii��w��P��AZ��c+�k�=15�ʔ�ժ�'O����Z,��)�yYG{k]]������ם�(N��y��kW.u�:!�������G]�+.]�t������ [����#��@�����lE�a۩�[7o���#)�RZ]3���\V^�w@Zř����I&���pO ��Eqbr�ݛ�W�����Z�._�+/+�k�=g!��&�>1�M&�L��F���i���r\�����g�Z��=~���ܛ�?��w���}=�T*�_'��:ڦ�;%�mGc�X���Y@�u����+W^�p�b<�8��v����y����φ�����'[������������=>>���u���hta~aqa���Q.����D<���:?7���Dy{R���˽y����Cϓ�$�����kW*�˲\�������a��rQ�9���%Z�Dk�8 D�7�&�^1���b"q;nG��C:���[q抪�RF3�t�Z-����t:݃G��Htl|2���4�5�3o˷����D���4�������3�eeق�i������̓(l��pw:7��QB�T*�>s���&�1��d�-M���Ch~TxR'�(T���o�RԴ�F�T�g˚�I�+��ɧѹak3�:��$�}9uQu���dK��4��+��:�{w�y������vL��<ю�;Cj���Kx�L&�v��8�Ry��,�p8� ��d2�R�������X,>33����#���z���qx��p��='��ժ��=}=�T����#���������]�5z��E�ҥ�m�FI��r�5JZ�%�݊X���O��Ϣ�� Q$�-�ޏ��#��է.*��4���\�^�{����5�s����c�FS_W�ם�C��d���Q����J �(���W�� ����KKk/�_>RUU����R4=��GUU�N��v����V��D���{QQ�R�L&�I����Ry����ʊ*lOh�t!�s���;�����j��v��\�T�>h�q&�� =� ���s���몓}J�~o�/�D�͏���CpqB?h�N�+��oj��*�Jn�%�����wn�7��H9������Ŷ���!�c�7����w����5����<-i�4�� �������2Q�ݹ�0 �\_�9���^~�g��Ѹ�!Z#��1��_�5�R����9 5K[�*�ʤ[�d�'B�[�ܨ 3[�L�ھ��h4�<�t�B��˽I)++��兪 �1�8���O��?���0�'��1�^ sX,L�U�Wѣ+�O��16>1����.��R�}���}�f��d��>���]��\��T�ST��e��^�R} ���RZ\)k�V�L�F2� b��om��R��n�R��L)Y�;Ap��2����T�Ƕ�p��c����ʳ��Q�#��7Q��GP>������_X\"���6_�t��j�9L����o}/��HB*�eo~M���Zk��n���iE=�pR�k-�L��Մs%�7K�E�m�sWd����5���7=*�����t����� ��M�f�e�����h,�\���G��ܛ���ON�B�*+zϟ-+-�9��I�����[�X�Q���Q��9mi��%��\,�ؗu:���;�HP\���菶.���D�R"}%�P(z�v����A��փ��F��ڌ�{J,Blsa�a)i%E���i��cL�ud}�+M��Y���$���rm)i!>3�������(��1����i�@Gbo�D"������!�l6���nj��9��N��A����(O;_S]�������!$���J�]��Fg���]л�t;�|������mw�A�{�l �\�;��[�[�5����Bl��Q����5���A�C��4�1i�?)c������3�,]u�* T��ap�fggoܸ��w�jnn��t��O���ŅŴ��\����������G����H*‘�Wmm����Rٞ;}B�������>n��� u���r�|��z<�ɉ��ug”��o�\�<]S��ؠR�����b3�3����h��eP�P�B�hoo�����½���K+�3s�X\�T���:�ѱ3w �7C��GD��u\�‘�g_W+�ܞJYwnz����B��W�]�����˼�������A��r�b1�ڷ~���”�(�����]^!�475����v�{H&س;����q�錒K��t]UIe�d������\���5����^;�k�3�#�g �����Xlc5��FH��[���k���s#O���TW����Q�a�d}��=d�̻J�d�a�#j3�5Ъ3��<5����D�� ���5������)���466H�}-�����������$���ѩ���gkjj���w�$t$�D,K��R��T���/����r����rn-�����v���M�˝#��Y� G?e�-��d^!��٤j��u��[��n��Xi�9�u �c��ؗ�BO?��v��H_GO�1QՐW���Z��PJ��d�S�a�+�n�iiiYYY�z��|�����ҥKF�����x��yL&ӹs纻�+�]D)mkk�F�][[����$:�z�%����ɍ ��e��j�,�:t�(�_2�"21�\n�ϗ���x,�_�xbk��r��<����H$ccc�s���eJ����?)&�X\ZYZZ:Ў����g��͜_X���K&�F�����b��"�12>�� n���v]U����/��DG�&f��+��zϟ�j4O��'�F��KK���*E~� 1ח�c1�>��K�����D��X���<>157�0U9[Rl�k��C㳳����a���3�]$�bs��?b������T�|���1����vI9�6���?N�^������N{��������|�|��h�ۇ��Ҟ�H$����3�><<|�� �dz��d�~�zgg��WG���T*� B���ڪ}jr�ԩ�Y��httdtmm����{�k�=O�̭�� !� uM i9/N�o�\k �#�.������<O���6=�Ry����3�)��n���{�c�#j=w��Z���"�JK�떖V>l�^Y[S��r'�E&n������\.��]���5_�ݿ@�U�=n���M�>����|����@�����6==m���fs���T*��T*;�B�q�\333n��Zd��� 82<�\wrm��5�>3;?=3��Y��zݶnG�ɭ��x��ܥ8��Jg�?e�H$��\�+�T�^�P(�x”��-�����캪�4� Cw�O�%�< �R��P�P_KYX\������y�x�3���o��y���G��[���8�.K�}�)���uZ{v� �RO�>Fk����GT”�������u��b������b���Ź��p8�v@“����Y\�D”�\ۮr �om��ff���Ɔ�T��e�Ȧ�F��E !UM������}�gz�N��z��ٹ��MO4���[YY��:�v?3˕\�Uթ�#��z,MŶ�)�Z� z}2�����\�ϊ��^�����+X�xs����8�Kn� Nj����2�롒O��ȹ/sm�2 ��s�\���N�۩p$��h,-)�y��k�������T0L{6�?�|ue����Y�������!������^�Rm�6��!�7KN_Vն��Y�N�m��]X\z�����8%D�ŤRi���5UU���$鼬���τ���܈P^’�+��O����?y���:==[UQ�T*����yVX����;��w���$��o��()k������#6���&a!�H�Dc!�=�䧨��to?SSS6��d2��e��A���]]]�}�we0(=�8��b9u�ty����\"�3�*�J�k����B�P�+��z-VK~wI��665D��h4���{B)��rAc;���bbR������N{�^_��F��Vl�q���Pxeu���I$�������mq67”,N�!�����)��m���[��8֝��Ju�왾�s ��Z���be6 ��#Be#�|F������P����r��W�V���u�w?�{�M�.X����d�h��O�8�“�Wi�U��$a/�G��H��\�����###6��ĉG]l����/�����r��!��b߹�g��J�R�t�tZ��~髿��/�:�T”��zCC�o�ƿL�� � �H�������o��o��7�qeB(�2���݇�p�p�6\nBHiIquu�\��m��tlvX��R����{��L&W����H4ZZR_Wc�� !2���� �N�������^�v���/�bQ�2��$�l䫚y�&��B9R��/O����P�ȫ���P]UUSU�r�7\.��}�w�8[fb��_&3w�����Dq�� �~4666Rw��vԵ�+��>4����y��L*�!D�S���d2�L&;�*��%���p�!EVK�պ�l,��F������C^ױ��Z8����ރG���P]U���+M ��'�ʤR�T��d/�힍�ݿ>���!��HK���iK��p���e����ߓL5q?ѫ|y�A��Z-2���Bə�' ��������':���8}s�x�=�yv/��qM��R�N O�����5����uȗ�cC����ܨP�Ŀ�~�Rj�Z�˚ݑjc_]U����a�1���*���5��z��������$I��*$2R�L���PBq/��I��r����4S�f���X��O����9M��,�%�0a”!�H�D�%� R�B�OВ�6�]�x<�Ľ���k!�D” �>�ǕJ��Cj�Z”��c% G��X,���#��.��t ��L��(��p���B!��dݱ>*v 2o��.7!�b1Y��J~]L2�B|}9�IH}���uo�����=^�|����e2�\���7�[�����Lw�Z¾��h�‘5�?�����Fn}/�X��/%�O�!�j�J����S����}!n��p’�X��“k*��>ڀ{h�7YNC))?A:?ϕw�D��>g�o�����ى ��@�+�RS���{�=�6�n����+����t;!dm���c1���U��S} �k�W�e���1�{����c� �����4fR�v�I��)wl��N�stt������đHdvvvpppaaA�L�Ckk�S�JKKsy�J(������S�F��H$�v���{뭷n���ٳg{{{���&&�?y������O�Pd��n�?x���͛{�0�g�w�^o6��Ri”��vjg�=�V��I�d2�L&�Lf2����STT����b��j�ɶ�f�*�j�}�)����v���+ �Z��‘l��x������u:]__GG�������~��37<������ܹ�. ��������� �#i���Ν�֯�����ӎ������œ’�{m��կ~�?���Dy���?��/,,�q���W������aa!�Y�������Ԕ}�D"��������g���z{{s|�K$������X__��|�pX?�r��* ��PTT�����Р���d``�����x|������ޒ��ԯ�1��=<<���s���S��ׯ_/�gr}}�������Y�h�ڞ�����m�%�v��.BH��j�Z�����n{”� ŕ��z�\��_(����h��d2B��h4 ��k�8�U����h��:��U�q&C�Bܯ*�����6�nG��H0F^�>l6�� ��|[.W,�����%$B0��‘H�/s��S/�� IDAT��i�i��O��[��-�;��I-5�)6 !D�o������K�ȉ7��������d���=�{�kR�իȳ���؉O���Q���ܖ������K�.��c��t ���x<�]��|�T����������U��f/�b(����E1�i�2��0!D���<��xK��w8>����8�n�{yy9S=���I�|��Qj�P���8�L��T���di/������(�M&Ƙ���B������ !�(� ���)�jO�D”b�dR�P(��#L����z���H.�g?��$���K��/D��k�����1�N1W��7iY�Q�Ƀ’�I�I�<��F�va4@���$�PF��h�yZ�Bڃ)t�4MGG��霛��yviiidd���H���7�&D”���������1{�t�߿���v�Z�P(vM�'�I����ٳ���L��1�D"����x���N�kii9}�tyyy.[^�D"�'K��ŒH$R?{<�{��=}�4�������_��w���O�nnnF�������$���.����j�io�'>�oݱ.���O�LV^^��e� �"�l87�@2s,���<_d+2������[_wfi.|dRiIi��h�ep��a"��p�6=^Ji��b��� p�.{�b)�YJ��pU��j����@ �Ѩ���u�J�T����r* 73Y[�՟�K�Թ��XM�L�n��Bc��Z*�HI\n{��I���]”�Y�f�y���p�]�ͲҒ�.QB�Es�5Т�W���“�x�������G$ȫ��#3w��M���[Hg#’>�U�9.1��di�=�qu������<�K�>Iz�FN������b�&�mmm���ӧO�ܹ�K��e�druuummmbb��ի��!�J�f���z�;��|�]�1�כ��A|>_4U*3~g�X+�)��b�l����s�γg��vU����������\�r����P��16??����]��/�?y�dhh(K�]"�tuu�;w.��폿�'�W�<�����{�_�t�?��?���8��=d���kkk���ӿ�������ܼy��t��,c���Y:�SJO�<��ۛ���)�E��p8���(���}O�� DAH$���~H$����7?����X,��� �J����{�okk���X߅>�N���-//���>_��$��H$�� !� ��T�lw��vo�7 !EV��j�v6�M��X�����R�D��-�q';ڽ��������WVמ=����i�%�P����O�DU ׯ�� !���N���TZÞC��k��Z*�XM� �=Q��J^��b�ZȇqQzKJ�P�PJr٣t����_y;e�ܗI���#J,5�֙N���o���9m����\�oR>[X��g}�=�.[yV�=F+���d29)i9��� ��v��łd�3Y^^�y�������j�����G���ŋ*�� �e� �����<����D����}��cJKK3 ��|������$��b1i/�����<��X�����p}}���W���g��������N�B����?+������/���S(�����?��Lq�C#�H���bBlmmmO�d29>6>?7_YY1:::77�G�]&��7��|�ŅŽ^�W���P8 BL&��d�v6’�w])�Lz�� ���e%�“�ZM)�j5�ZSC���d4—)�F������Оs�s���htbzF�VMN���/���l��x�������k>L�’�M����T(%6�J�KV:Ч���ۑD��‘v���MF�V�B�p4=�D�N�����$�C�ta����O��‘e R�BKZ������Ŧn3&�4���v|�ꊎEn�Pb2�>[x\�‘h,=a�Jb(��}E���h4J$�כܱ{F�T����Z}ss��ÇSSS��P����V{��9�$��19R�Tf�Y�T�ݮ�ʝg�G�pߵ|I��#���f�Œv�N,{���;w�M$�{�n2��r�J�ߢn�{ss��v��,666?~����eLMMͅ����8R���ž�|�˥�%G]!�455�!���F�t����������O�����tIIqss�����A�!D�P(�mg���ۑ �XJ���]��M��;������EE�+�/�:���d2�������.5RE������O�=}�\�T����O�!j����=�e2�ɾ�9���lx4�/����ڕ��m-��V��ZJ��Ļ�t;nG�R˿< ����� Q!v�wB�BC��K�=�I����^�]���#N�/���,�-|����&-=]��1��Fs���HL����Z��?H�K�P477����)s�ݞʸD+�X,644466V�i����‘O���� !�R��j�XVVVv�Me�3�4�X.�H$��z�ѨB�H; K>��e2Ykk��n��=����&��,���[ZZ �n’����=>��###����J��$�ɧO���������lnn��L����\qqqooomm�!�GB”���9�+�������N7w%%%�����P(��&�lt|����Ȩ׳K41���N�7�OO��q�^e�3Ƣ��ŤR�B��|W�A1�:�X$��R��P�ރG���R�A�L&76\�nߕJ��OvP�ʵǝ>�!�nonzz}[k�V���ZY]�����ϟ��d;���߹����gR�Ԡ�' �c���;R���5[�rS��T$�n$�~1؞DV�y�\N>H�2�;��(�dˑ��X�<�;��u|�6_�:%G�����1����t�I����ԃ�����>Y���։}�Uw���nYyy��l���H������l.\�Jw�C�ccccCCCY��!�HJKK���l6��dEqccc}}}aaaccC3�-�����{ii鋃��t:�͖�5�����H$�Z�T�yF�F�y��l6��i�[[[[[[���B^�7�g�B����S��{����=ϮKB�R)��D”�畄B���A����ֶ������ッ�CCCi{ާ�ƾ��c���Rio_�7����3�is�GB�����GG���{ �B���9����&Ō�L�J�S'+*��za~2FQc�x,c����T��e�"L�BE�]~�Ks����k��Ϝ���}���gs���5:�v�x��*�J�JJ��@o��+�.pWYY��B���h�3|J�g����kW.�:��ro�s��ѱ��ź�e��Ƅ��ʕ�"D�a��~x!vTws%1WR���ڲ�,���=�.��ퟠe�T��^<<��owQQ�ŋ;::^�_^SSC�D"ϟ?������t���Tii��f{��G�V_�v�ڵk�_�>}z�ƍ�Qo�^�������/�h4Z,��v��-���K��Υ}��#3�3��Z��b�����x��糬H)���hoo���,**R*��x���8�������,aw��188h4���rxq�*��b`` g�R�zzzN�:�q�a�������^��C��b�B���b[o_�榇�=�cSYy�g>�����;�v����;N�SJ���^�����՝:}���A��R�T.�766TTlϩ3F�������\!�>�e2��Z9!�4�������pAb�������g#L�2B��x�.!�-������VWI�R��TW[=7�����;!$� ��:��� �Z�V��x�D��~��8��V[S%�J�mE,�����lwŋ��(D��P�ry���‘��XF�O��!��M/�E&n�������}�6]��������}6qs��vJ���I�2pUG! ��.cZ�����8��_҉OӉ�џ���l��{�՝?���������tNOO�<���:<<\TT��7WZ+++i{�����\�~=SNZ�T�?����ƍϟ?O;&�L��v���r�H$��d2���|�@ ���v^�{�=K��h4������X,�e��������,˩��g�����\6�������������������F�RK������Ba0�f��HmF*/������Ǐw�S/�<�ܹ���O8^�z��.Q�38^^^v��'����{�A~�t:��b��2f��SV^��/}�o~<�7�l6�u�����]�v%�x�]�( ��B��?�z$��� �Db�y�D���@^�_��XT�ED���+vY��ef m��v��~pw�a�'�Z-�������� d ��R���%ݞB)-))�����|���C�Z(���^�������V�Ty\�V8�2������/m�}(�lܣ?���o?� ��+8^�-�H���8����p��M��M�8>?��X[[_W����N���#�}:88�������ƾ���[�@��wpO�?�_��XT�ED�[w���u�1�L�����ض���-,�s��WK�U�K�_4�$�2�\�B�*յ+����y;]��{���Q�d2���:֝Ǖ���y���w<�J�5�U�R�ƆR��������N�����<;66VTT��ۛc=�@ ����6M�Z�{��t�,��C����ya���sA�����趜wڀ�B�����F����&�ɭ��0���m�n�����>�h4655��8�g����
���\��p��#�P����gQ$�H!Gri��q\cC]cC#�K�o�xozz�/�e[,��H�VB��紕�|�*�V��h�ɤ�hx�n�z}w�=x<�4!�Z.���T&}�҅��sr{���+�|�B^��(��q‘�bRcH�狓��ש��{��l�.K�O�$s���z~�k���f���D�dN���ЎOR]���á4P��q��n�� ��ds�=�ShII3�=O�����r�R�������t>|�0�E�p8<::Z\��А��H$��=�V��V�“�2�L�T�p8��l4�F�y��T�|iii�T�����Gci�&��f��V^> ��^o,��������|;� B��l6���f���������ۯ�����lbbB���J!$�};��H$uuu�6�����411����i��j����χr�16+���r�|��}{�Z��r%%�&D�f�WWU ���?��?����xSY,�_��?�ě��壕9���弜d��ʕ�\�B�("y~�*�*���E!��)��mI5?�<������ʼnX����cqq���+�.\�=/���ww������6��+�H<����W���� � �/�c����H�k��ds�M�S�3�}��ȓ�yW�u�9N��t�I.P�-�U�t}�%�Ǖs”&�g�x����3K ���t���ܫ�����766v�� !ccc6����’�rY�Ϣ(6��ǣ�h2�,rz��,��dڙ�������z�H����Հ��f�r ��m�NvK�+�J�R��l&� ��WCY����zzz:;;�Pp^�wyy%m~,�|��{WWV���}c����y�������sk[k{� ��r�����4��]y<�DԍM �-/-�=���5�L �"�k$q8��D�#�H �&L�V��\���]����W|��\��BṬJBH( ��TF+��jǑ�F����ŀ/�L�����@0XZb����y�B!���,��"�H8ɯ�x�Ţ�1�q�WP�l[���; ���'���I���^�U'��oq�=��[��W����c��ÓNJ�ޠm��|v"|$I���Ok�������k��b��q���mmmi_[(����o�C�~��Y,�Ų�x ��|/�wIp�h4&���y��4w��mW1�|>߶�|�J���L�R�v6}ߕZ�V��iO��clf�B����A�J����gϞ��mQ�� IDATz|Խ��o������aQ�3,}����ZZ�u:��/�H���jkk�Ҍ�Hƀ���n� DwvpWP��BbQ˷��\A� ����W��!$�C[�TFer���ǁ�<��o��“������s���w��{�hk�o2LFc~�ĢbLI�3���{4b��;�8fܷ��{��X�� ��{/p�!�$�L�I&�۪�jW�i����hf[R����>l�lL��l����DL�H�3��� I;��ڨ��:M��dz�d2iAO �7w�f3A8��R��S�Ź�|����K��N���������c�OP�Ù�d�����N}�,� ��Bb/^q�hk��?�’� U�w������+̿<� wB����Ay��U_����"��-=�G,��;���z�=��|����:�V���W��o���֟)���>_&��/�t�a�)���N��{�I&���_��}{�a] �no�On����ONN �mn��{���W�"�������f�\���V4���w1��R�R��e�w$��Ύ.�ʽ�G��ג������d2�����x����x|d����4!d~a��?��O���K˄�����tu�#“�l$�%�����ߓD”�H$ !��ߥO���H�qz�e��g��?����f$�F”���L��˟��٢����BO�����dN�cjtV�����w�V�a:;;;;;f����W�fff�:�^���y^”��gk�1�^�};�T�ӭ�����x���|%5���<�G���Kt�gY������U����7o.--�w!�=���d2y��/>�������PJ7�:�Z��s�h4��B,�6559���>����B�ax��D�d*Od�ٍ�})%�e4���LZ�2��p8<횝_X�E��d2y�ڍ�S�����ꆵCȗњ��s��?x L�����������S3.�^�z����w ��{�%~��dr �[w��{�“qgN;u����ǻv�ڗ��>��y. ��k���;j��NJ�dY�^��@�V�>w��3�:��{2��w��BH’����/?�a����?y����7I�#x]�‘���x���4/’��L��������X��?��/(C���Ю�H:A�.a�0y_X‘��a��Sd��8HE{��������v�#���� ���nuB����e�ن��S�N}��o�T�� �R����L&��a�BQ0��ײ�a�^��j=��a������܄���Z��0�l��\N���X,�m)�.���ۜ��d��a�ۍF�7o��d� Ϟ=�y�ܹsJ�r���©�‘m��d2U~h!�ccS�]�����?�Q,�J� !”�H��n�Z����K�:6��$�P[[�B��;��?����R�S����T����i�:?��O�����7$IWWg��R�t�T*�JB�?yw��3X����g1�YL��{�|����O���Z�5��/,f2GcÇ�mL�BX�<�’���7���L*�Xj����w�’�O�K�Bz���gHR��(Q����A�g�fR�W”r5�wFV��e|��L��x�3s �;��L&���C�!D*�H$�p�%�E��=�Cʊ��ڈ�F����[�X�q�l���Pv��aA�‘2-Q�|�2�;�㉹��[��[�}&L�!s/�hȹ�X�ă�H����a����������ͯ�b��NX”��H$r��}���U�R��”�f!:3�3��\a��v{rw��h,q�v����jH%���<�/Y!˴�%!�Y�4*<�\X�h-^Ir’V�q�zg�IH�ʌ�x��ez�y�����3Q�I�{:A_��q��5���R�̞VDك�Q�e������Շn6��b�X �C����ύFcSSS�y��Ʈ\�R,�^SS�R����:��b���K�T�J�]=�H$2j�:/��H$�0���Hr �s�7�h��l�e���@ �N���s�+�t�<�^_l�f>�oyy9���.�7(�]]]J��ƍ7�e2�G�I$�S�N}�>o�SgWggW�~WQF]���ξ�U��V;4tt'�y���;8a &��d6��B���N�ׯ�=����UO�ټ�U��5Z9�#��{1#d -������_�Xj>�p���=�H|q���[w�:����f˲���q{m(>u���sg�}3��+����d,��4����i.�i�������4�\�,4����t��/+W�Ϸ�����}�����{�|�nO&��h��~c��=#�TE8���D7H�C�^asj�� WY8�W��'�IH��ΐ7��$����&�ud��h��p�e!�HJ����Dm% =%�PJ�&��!���,���'az��m��H,D�{�]Q�Z����^YYq�*xR@9*�J�VSJ�vʵ9�*�K� !�۷3��j�j�ƃ�#�9�;�ۙSl�b��T*�JU�U��5>>n��*�������b�W�ju�E������������sɓL&�߿������E�M��G��k����0�f�����lvc[x�����V�ӞŔߛ���D#�HKsS��D)�H$VK�N� G”�HD��l>%�H� �Vc��s�j��V3=�*������8[c��ń����)�L$��3��ޕ�w9Cњ8�)��nϪ�C1�&c��n���T%���G�<,���7 �N'zX&��� QP�6��z�z�x]�{���T���,(�BϷ(�v��#r�ϳ�����xr������!�X;�cHX~Cb�R�ǃB<�����9���.��]����D"��j4WWW7�:777;;[SSSɳ*����\�yr�v{mmm%O��>�N���7�swA6�5�N�˻R�\��j�bq2��x<p�f���R�T���d�b�i4��:::Z����7ojkk;;+����zGFF����*�jkk����/ �bpp0�|����h4z��]�Dr���e��Q*V���hP�T�p��Y�� �w������=�E�R�T&��=^��k2ҙ�w��ry�S �B!���Z^YI�R”�[\Z^ZZ������L�����rڻ�V��d\�f”��T�H�S�!f4�p/ج�R���Z�������’3� =���r��� !�uuu���o*��z��Q�ݾ��r4�ٳg���X�-;������a�����t���S6x��j�%���:��]N�P�-m6p:����;�e0J��?8�N������B��p�)�۷�欭���l���,--�2�e;�'�'O�������v{%����l>z�h(���)8 ܾ}���������S��ٹ&������k8�����̧gR�N�� ��,5���W�v��c�H�������Z���V��۬cc�7oߛ�q�b���b8��;l�Y�Uk�sf;7�”���pt�ofr$!S2&;W�}��Xr�m���p6�X”{gX t�=�dJ.����LZ�v�c55х���͓��&{��#�z*�����_ ��jS���D��V|��I�9�u�ѫ�vO��?�b�x�2�*3Q���H��0y_�f���������Y��F��'D����"+�����h���������9�^��X,�_�.�#���~��I.�]b�����O��h�������P�U�LV��y$ ��Lf�-�sA���!�/��}�x^�]�˕�G�uK�f�Xl6������s?~�Fϝ;g�ي�C�Н;w����ʪ�”�����־�e�ޞC�p����SӮ�Ags���}��gNm������,��ˮ4!D����Ү�R�)F�G������4!��E\ߚ_��۽�^o�^&��dbl� �P��:!K��T����H��T$�r�ytv�z�x]��D�����ȵDmy�2����81IN���@����������h6C�� k.���9�TM��wӚ��WVV<O,V��I�X�V��2;;[p��‘O�^�ٳg�N�改 SSSW�^������hhhP(���g����q����Ҳ�N习��D��F�-�i�Z���S����0�^�/��"�m6��d��ͯ�f�###����O�����ko�J�\.[���dz�l�U�F��n�H��E��(�� �B7n�(�ѝ���e�Kl��_W~ue���x<^����������n����W��b�XK�����wGU��vi�l�����?���W�q!�RG����Vkwi~~���;��zȖv�̩�cC�s��d������á��i7jmk=}�tmm�6�ׯ^����bZ�Rq�ⅾ��J� ���2�� �Jc���� �Bj�;G�xfL�YJ��/E6�H$οJigG��h}3;����]���M^\ �N�T|������/ބC�����;kl��PJ����Z�����+-�юIc������k,)D�c�[�C~@v���p7�Xz���C�͵j��+g�������q�zg�Q(�<^ o�r=��J�&��z81i��#dz��������d������cY���{ee����ۜ��ptuuy<�h���H������˿t:�mmm&�I��s�^�x111Q:d�};)p’���������l6�L2�,sg��������Yr�\���<�H$6�d2��t:�^�‘P��t���s�y�z��h�$�����|���d�X,Z�V��?33���R”�N�DN��l%{O$������������ ��y��X�>N=��o>��0X���/�onn����k�g?����2�������o|\e�=�]XX�����|���hmk3�Z��D°��{���۷�D#e�h4�ý�6��D”�n�;6VŴ�� ˱‘O�(�XZ\��+/���bf���p8��$�X&�N)5�&��5;����ݞ���B�6w�c�����D}���S�)��h8ku�Ѩ�V�L&M$o’&g���1KdLSokY2�2>5r�ޭ�V�/��W�҄��vqc�8/�����‘rw��b�Z���<”��~�����;<3eH���%��d��z���”�*,��G wB�z�S�v�{��d?~|�J����$��|���S*����f���4M���b�p\~��=V>rK)mmnr65B�g\c㓛�7����yNDWf�/��V��l�� �ս���8!�h㺎I�vQޘ����㓂 �����&�Z�� U���c���It�)���2�|��ֳ��D�3�<��T�/�Ww]=��vng ב��c}�r��mW�����n�պ��ZZZ>�䓎����D�Z}������J���V��յ#W��eY��P6��k�^��b�N�S(�穼a�� ���oY,;����p\�t���� < �,J�C�x�/6&�L>x�����dr/kxl3K��I�X,G2��>ױ�X,v:����K��-�d6���i5��-� ��M&c��i�5��’��Z[�7������HN�H�>�+4��K ������{y?�Jb =t\�֗��8��O,��B��M�f�0\�~}dd$���F"�����r�H0.v��h�{�d``�����a�XT��gi�)�>{���D"��_q�h;y��"N$W���dұX,��n�~�0NJ�*� �-��5�ý=###���#�Pi�i�e��ږ�J�*�:È8����"[���*�xRJ[��3�ه�������'��R�;�p�S�wV�f��g�� s� �d��Gl2?�|z+�^HB��%�Ǥ"q~�o'&�'& !�6kkK�B.߇BKbŤ��v�c_ O�&�qRE�sJj���1�}���df��uQ߂�(���{�yyY��ßPv�q��Tfz�G������&��->�Bc%���t|@e��1f8����^YYy����gS�T/^����u����v>�<���s��)�Ѹ�u����W��]�������^���KzP��IDAT��<�>;;[l�qz�^]�c(�V�K��v��{�|>ߖ�e�j��>}���]$�P���R�����ׯ�� w�ܑH$_�����������'��s��f�X� ��P��o|�� "y� �%�d2YuKS�Z,��^�z�oz�p4j5�*n�N�;vl�0T�8���;/½�J�:u�d<_XX �[�����������Z����5����;[�UT�T*�ʶOT�i5-�M�3��w|b������c�JI�$����P8�}x-*W3G�����]��?�}� �XE��I ��;������q6759��ҊH���‘��Cv����z,Ă���”�=��E�V�������l��b�}��j�e���狍q�ݷn��y��� w�w����}��WQ���Ç{���,�vuwuuw���uu������49�q�zi—Ζ���[U4�Y(������� !LJ?�pN����ƣ�[? ߽I%��z���(;�������k���˙#�e翣T��4�^H_�,���ߟN��Je.՝뒮R�v�pn��ws�Z�‘s��Г/��@�u���RvH���Sw�r�˿ ?��D�dNL�\Ŝ��8����� # �p���/�^� �]<�ln�N�{)�”!���!�i�3C<ӂ�$��P”���(�T[K��I�a*�n!8�N��9!�Rf�]�X��X��H�L2�7T5Dg��x��Dg�b�;�Y�+�͑D���R5��Qi��2 $�Vޒ��Y��!K�HTD�#r-��(� ��_] p����<��F�j+��A�r�������h4V��D”���n������S1��,ɯja�W�����gO�?s�+�VL’H2JX1�� �n����s9�fK���[��ì��>;1�y����@��+!��̦/����F��-��w��B����߉ Y”�3�?��@�9���=x8��-!�����l�J�� !OdZ�ˑn��B)E�v���R��PW���A�q�?����y��Qt�;���R\�\����B!fgJފlVx�$�����߉e3D”�Ǿ&�H�K�/<O�~���A4jUwg��ֶ������u��cGB�������7 ���g5ju�0�C������ӛ�DL�{9�e�\R�jE;Tyy�H�ѵ����/K�t�k�c�%��t{&�y��ك���d�����G��0������������%��܅s��M���s^K��X�0����}��Z�e�swl�m2��ե{�z�uI���ü^ﳧ�\��T2UvN�V30p����lvz~~���Օ�-T\�-�)���m�p�ʵ/����g/�J���’%<�7Rk�>�]�Z���E$�>�[v������H廞�K��Ix�A<�!:3{�[���21O�F �������C!�a��8���ݮ�B��_���]�;FC}}�!B<91���տ����X����l6�M��|�ŕ����@0�{�RB����6:��á�;w��?�x<�Gr,w�p��fmhl([���������ӧ�\�-� !��� ��_�H$<|�T(��l܅�#U0’��Pjٛ?{��+����ӛ�ߐ��HD���;»�t-��v4�R�|�?�[ʺ1-��������++������C*�r7 �N:����!d��G���dZ�;K,��z�Aωމag3�t:���β� ��4�M����ڽ��d2%F�e����j)۾�“B&�ك����;!���CG��Ƚ����� š��)BΉh����������D6Cf�&��M]��o*���,�c1w�;��F�ɍ�����T�9/;�5�J���Yu{����“�8N ֘�;U�7TU}}�Rq��iK�҆�{]���|$)1R�Ptuv�L+>]e���R)� ���/G�WV��r-���twn��N)qt�F����ˑ��T&M�>Ǩ&mQ����0�3�Se�=��O�F�co�%֣��C|�ۊ�^��yaq�W|52J1 Ǐ49���oz����M���w!e���Z[[^�|Y”�.�l�VG�C�T�emeUp’�Ԙ�LJ���Դkye����5?��Gg�[��:Qu�����k7nMϸA08tt@���R��)��G��N���"ޥt2!L�&�G�_�5۹�>I[��T�ˣ牆��7����ɑDp�7��)%6�h�k�>�DV�[� o�'����k���ˏ�.ԁ����Ɔ��6�L�ߵ�a6�[Z[t:���I���H�����Ͷǵ����;!���H.�������(�ŕ���j���x��9�������'7�o��N S������Cr%�ֳ*-��2*-���I�BH&C2�w�zu?v��C�@v�e���L���N��<{q�˛���V�Ξ:yt���{7�TSc>���f;�=�9������877 � ���d]�]5���-���F�)��&�R!�յ/^�$���w���Ο�Ԙ���1�~Gy������ċ�ߝ"dI8� �$�wJ4����Z#[��1�M�|ǀ��).m'�Dc�;��oݹ��o��\<����aJ�����O���~W����}'�k�ۿ��?��b�UҮ�8������sJ�r�Cdž�Ri"��� (=r�_&�V8����;����-͑p��lf�i��D"�p�Z��۟|������U��}����[w�?J$���Ɔ�/�s69*٠�J K�ԛ��O��t^��g�;J�S�~�٭��qK���0o�q����|�o�~��i*�"��8�?�p��������v7<�u"�(��� �Tj��� ���'*�^<�Ng��ݾv���6���d2�L����8��� �ˬ����X���H$�?��֝0D��Ǐ��U� $�Lȗ �2!_fY���Ѕs��FCu���ɀ;!$�ɼx��ʵ�++�#6�����]� ��U.�����߸ugtl<]*�<}�BQi�v�� !� Lϸ�\��vb279�0� �gO�hin��m�w� +������b$���u�sgN����l�a��9�X����[��.-�}+w�H���~�<��H�:{mWG{kK�N��fO�h4:�}52�vb����X���t�� GC�V�K���_Ji��5%�^]�a;��/���}��"�h�ȭ���������L��6��!⸦�?��?:v������������O~�v�&J����>���[:���G�����Ǐ���qB˱��������P(�4��;w�����W/_n�*p����������ܼ}����x”A��o�‘ߎOrg��tv�5;F�^�T�Y!�L��ٹ���o�f\�H$o��:��S’�Z�b���<��������X,��f7I&�^�������S�ju[���я� V�n’��Ca����˲�h4��rss�ݮ���h�����o5�NI&S~�uս��j��9�R���}�gߎO�u���� BH:�������ύ�DJ�\�R�T*�J�R��J�2�H4B�0���P"���~�e��������f�ԈE��@yb�����칳��{�u�89n��ֻ�d69�N�Vө���# � �]T){z��1�u�ౣ�Pxrz������L(^�J��|�5�K3�D"��������b4X������$�,��ޏ��щ�� �~W�c(����� ����b�����f��wQ��ϮJ�J���9��s(��f�F����8N�RegYV&��TJ�����hq6i5J���LVWg?�s����cdžl����q�F--N���铧���--N�T�����w_*���������3����(�P0 �B�lV.���J�J�R)U*�L&�X�v���dr��fknnnkk�����l�1�p��W��V���b0������w9e���a�L*�Ik̦���@�Ż79˲ÔưC�b�0+�H�ryd2�l6[ʼn���J{��j����l�����Xm֚���jވa�ew�����wt������5 UO�0�������˥8r�_IEND�B`� ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://cdn.plyr.io/3.7.8/plyr.css @charset “utf-8”; @keyframes plyr-progress { 100% { background-position: var(—plyr-progress-loading-size,25px) 0; } } @keyframes plyr-popup { 0% { opacity: 0.5; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0px); } } @keyframes plyr-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } .plyr { -webkit-font-smoothing: antialiased; align-items: center; direction: ltr; display: flex; flex-direction: column; font-family: var(—plyr-font-family,inherit); font-variant-numeric: tabular-nums; font-weight: var(—plyr-font-weight-regular,400); line-height: var(—plyr-line-height,1.7); max-width: 100%; min-width: 200px; position: relative; text-shadow: none; transition: box-shadow 0.3s; z-index: 0; } .plyr audio, .plyr iframe, .plyr video { display: block; height: 100%; width: 100%; } .plyr button { font: inherit; width: auto; } .plyr:focus { outline: 0px; } .plyr—full-ui { box-sizing: border-box; } .plyr—full-ui , .plyr—full-ui ::after, .plyr—full-ui ::before { box-sizing: inherit; } .plyr—full-ui a, .plyr—full-ui button, .plyr—full-ui input, .plyr—full-ui label { touch-action: manipulation; } .plyr__badge { background: var(—plyr-badge-background,#4a5464); border-radius: var(—plyr-badge-border-radius,2px); color: var(—plyr-badge-text-color,#fff); font-size: var(—plyr-font-size-badge,9px); line-height: 1; padding: 3px 4px; } .plyr—full-ui ::-webkit-media-text-track-container { display: none; } .plyr__captions { animation: 0.3s ease 0s 1 normal none running plyr-fade-in; bottom: 0px; display: none; font-size: var(—plyr-font-size-small,13px); left: 0px; padding: var(—plyr-control-spacing,10px); position: absolute; text-align: center; transition: transform 0.4s ease-in-out; width: 100%; } .plyr__captions span:empty { display: none; } @media (min-width: 480px) { .plyr__captions { font-size: var(—plyr-font-size-base,15px); padding: calc(var(—plyr-control-spacing,10px)2); } } @media (min-width: 768px) { .plyr__captions { font-size: var(—plyr-font-size-large,18px); } } .plyr—captions-active .plyr__captions { display: block; } .plyr:not(.plyr—hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions { transform: translateY(calc(var(—plyr-control-spacing,10px)-4)); } .plyr__caption { background: var(—plyr-captions-background,#000c); border-radius: 2px; -webkit-box-decoration-break: clone; color: var(—plyr-captions-text-color,#fff); line-height: 185%; padding: 0.2em 0.5em; white-space: pre-wrap; } .plyr__caption div { display: inline; } .plyr__control { background: rgba(0, 0, 0, 0); border: 0px; border-radius: var(—plyr-control-radius,4px); color: inherit; cursor: pointer; flex-shrink: 0; overflow: visible; padding: calc(var(—plyr-control-spacing,10px).7); position: relative; transition: 0.3s; } .plyr__control svg { fill: currentcolor; display: block; height: var(—plyr-control-icon-size,18px); pointer-events: none; width: var(—plyr-control-icon-size,18px); } .plyr__control:focus { outline: 0px; } .plyr__control:focus-visible { outline: 2px dashed var(—plyr-focus-visible-color,var(—plyr-color-main,var(—plyr-color-main,#00b2ff))); outline-offset: 2px; } a.plyr__control { text-decoration: none; } .plyr__control.plyr__control—pressed .icon—not-pressed, .plyr__control.plyr__control—pressed .label—not-pressed, .plyr__control:not(.plyr__control—pressed) .icon—pressed, .plyr__control:not(.plyr__control—pressed) .label—pressed, a.plyr__control::after, a.plyr__control::before { display: none; } .plyr—full-ui ::-webkit-media-controls { display: none; } .plyr__controls { align-items: center; display: flex; justify-content: flex-end; text-align: center; } .plyr__controls .plyr__progress__container { flex: 1 1 0%; min-width: 0px; } .plyr__controls .plyr__controls__item { margin-left: calc(var(—plyr-control-spacing,10px)/4); } .plyr__controls .plyr__controls__item:first-child { margin-left: 0px; margin-right: auto; } .plyr__controls .plyr__controls__item.plyr__progress__container { padding-left: calc(var(—plyr-control-spacing,10px)/4); } .plyr__controls .plyr__controls__item.plyr__time { padding: 0 calc(var(—plyr-control-spacing,10px)/2); } .plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child { padding-left: 0px; } .plyr [data-plyr=“airplay”], .plyr [data-plyr=“captions”], .plyr [data-plyr=“fullscreen”], .plyr [data-plyr=“pip”], .plyr__controls:empty { display: none; } .plyr—airplay-supported [data-plyr=“airplay”], .plyr—captions-enabled [data-plyr=“captions”], .plyr—fullscreen-enabled [data-plyr=“fullscreen”], .plyr—pip-supported [data-plyr=“pip”] { display: inline-block; } .plyr__menu { display: flex; position: relative; } .plyr__menu .plyr__control svg { transition: transform 0.3s; } .plyr__menu .plyr__control[aria-expanded=“true”] svg { transform: rotate(90deg); } .plyr__menu .plyr__control[aria-expanded=“true”] .plyr__tooltip { display: none; } .plyr__menu__container { animation: 0.2s ease 0s 1 normal none running plyr-popup; background: var(—plyr-menu-background,#ffffffe6); border-radius: var(—plyr-menu-radius,8px); bottom: 100%; box-shadow: var(—plyr-menu-shadow,0 1px 2px #00000026); color: var(—plyr-menu-color,#4a5464); font-size: var(—plyr-font-size-base,15px); margin-bottom: 10px; position: absolute; right: -3px; text-align: left; white-space: nowrap; z-index: 3; } .plyr__menu__container > div { overflow: hidden; transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1); } .plyr__menu__container::after { border-top-style: ; border-top-width: ; border-right-color: ; border-right-style: ; border-right-width: ; border-bottom-color: ; border-bottom-style: ; border-bottom-width: ; border-left-color: ; border-left-style: ; border-left-width: ; border-image-source: ; border-image-slice: ; border-image-width: ; border-image-outset: ; border-image-repeat: ; border-top-color: var(—plyr-menu-background,#ffffffe6); content: ""; height: 0px; position: absolute; right: calc(var(—plyr-control-icon-size,18px)/2 + var(—plyr-control-spacing,10px).7 - var(—plyr-menu-arrow-size,4px)/2); top: 100%; width: 0px; } .plyr__menu__container [role=“menu”] { padding: calc(var(—plyr-control-spacing,10px).7); } .plyr__menu__container [role=“menuitem”], .plyr__menu__container [role=“menuitemradio”] { margin-top: 2px; } .plyr__menu__container [role=“menuitem”]:first-child, .plyr__menu__container [role=“menuitemradio”]:first-child { margin-top: 0px; } .plyr__menu__container .plyr__control { align-items: center; color: var(—plyr-menu-color,#4a5464); display: flex; font-size: var(—plyr-font-size-menu,var(—plyr-font-size-small,13px)); padding: calc(var(—plyr-control-spacing,10px).7/1.5) calc(var(—plyr-control-spacing,10px).71.5); user-select: none; width: 100%; } .plyr__menu__container .plyr__control > span { align-items: inherit; display: flex; width: 100%; } .plyr__menu__container .plyr__control::after { border: var(—plyr-menu-item-arrow-size,4px) solid #0000; content: ""; position: absolute; top: 50%; transform: translateY(-50%); } .plyr__menu__container .plyr__control—forward { padding-right: calc(var(—plyr-control-spacing,10px).74); } .plyr__menu__container .plyr__control—forward::after { border-left-color: var(—plyr-menu-arrow-color,#728197); right: calc(var(—plyr-control-spacing,10px).71.5 - var(—plyr-menu-item-arrow-size,4px)); } .plyr__menu__container .plyr__control—forward:focus-visible::after, .plyr__menu__container .plyr__control—forward:hover::after { border-left-color: initial; } .plyr__menu__container .plyr__control—back { font-weight: var(—plyr-font-weight-regular,400); margin-top: ; margin-right: ; margin-left: ; margin-bottom: calc(var(—plyr-control-spacing,10px).7/2); padding-left: calc(var(—plyr-control-spacing,10px).74); position: relative; width: calc(100% - var(—plyr-control-spacing,10px).72); } .plyr__menu__container .plyr__control—back::after { border-right-color: var(—plyr-menu-arrow-color,#728197); left: calc(var(—plyr-control-spacing,10px).71.5 - var(—plyr-menu-item-arrow-size,4px)); } .plyr__menu__container .plyr__control—back::before { background: var(—plyr-menu-back-border-color,#dcdfe5); box-shadow: 0 1px 0 var(—plyr-menu-back-border-shadow-color,#fff); content: ""; height: 1px; left: 0px; margin-top: calc(var(—plyr-control-spacing,10px).7/2); overflow: hidden; position: absolute; right: 0px; top: 100%; } .plyr__menu__container .plyr__control—back:focus-visible::after, .plyr__menu__container .plyr__control—back:hover::after { border-right-color: initial; } .plyr__menu__container .plyr__control[role=“menuitemradio”] { padding-left: calc(var(—plyr-control-spacing,10px).7); } .plyr__menu__container .plyr__control[role=“menuitemradio”]::after, .plyr__menu__container .plyr__control[role=“menuitemradio”]::before { border-radius: 100%; } .plyr__menu__container .plyr__control[role=“menuitemradio”]::before { background: rgba(0, 0, 0, 0.1); content: ""; display: block; flex-shrink: 0; height: 16px; margin-right: var(—plyr-control-spacing,10px); transition: 0.3s; width: 16px; } .plyr__menu__container .plyr__control[role=“menuitemradio”]::after { background: rgb(255, 255, 255); border: 0px; height: 6px; left: 12px; opacity: 0; top: 50%; transform: translateY(-50%) scale(0); transition: transform 0.3s, opacity 0.3s; width: 6px; } .plyr__menu__container .plyr__control[role=“menuitemradio”][aria-checked=“true”]::before { background: var(—plyr-control-toggle-checked-background,var(—plyr-color-main,var(—plyr-color-main,#00b2ff))); } .plyr__menu__container .plyr__control[role=“menuitemradio”][aria-checked=“true”]::after { opacity: 1; transform: translateY(-50%) scale(1); } .plyr__menu__container .plyr__control[role=“menuitemradio”]:focus-visible::before, .plyr__menu__container .plyr__control[role=“menuitemradio”]:hover::before { background: rgba(35, 40, 47, 0.1); } .plyr__menu__container .plyr__menu__value { align-items: center; display: flex; margin-left: auto; margin-right: calc(var(—plyr-control-spacing,10px).7*-1 - -2px); overflow: hidden; padding-left: calc(var(—plyr-control-spacing,10px).73.5); pointer-events: none; } .plyr—full-ui input[type=“range”] { appearance: none; background: rgba(0, 0, 0, 0); border: 0px; border-radius: calc(var(—plyr-range-thumb-height,13px)2); color: var(—plyr-range-fill-background,var(—plyr-color-main,var(—plyr-color-main,#00b2ff))); display: block; height: calc(var(—plyr-range-thumb-active-shadow-width,3px)2 + var(—plyr-range-thumb-height,13px)); margin: 0px; min-width: 0px; padding: 0px; transition: box-shadow 0.3s; width: 100%; } .plyr—full-ui input[type=“range”]::-webkit-slider-runnable-track { background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgba(0, 0, 0, 0); background-image: linear-gradient(to right,currentColor var(—value,0),#0000 var(—value,0)); border: 0px; border-radius: calc(var(—plyr-range-track-height,5px)/2); height: var(—plyr-range-track-height,5px); transition: box-shadow 0.3s; user-select: none; } .plyr—full-ui input[type=“range”]::-webkit-slider-thumb { appearance: none; background: var(—plyr-range-thumb-background,#fff); border: 0px; border-radius: 100%; box-shadow: var(—plyr-range-thumb-shadow,0 1px 1px #23282f26,0 0 0 1px #23282f33); height: var(—plyr-range-thumb-height,13px); margin-top: calc((var(—plyr-range-thumb-height,13px) - var(—plyr-range-track-height,5px))/2-1); position: relative; transition: 0.2s; width: var(—plyr-range-thumb-height,13px); } .plyr—full-ui input[type=“range”]:focus { outline: 0px; } .plyr—full-ui input[type=“range”]:focus-visible::-webkit-slider-runnable-track { outline: 2px dashed var(—plyr-focus-visible-color,var(—plyr-color-main,var(—plyr-color-main,#00b2ff))); outline-offset: 2px; } .plyr__poster { background-color: var(—plyr-video-background,var(—plyr-video-background,#000)); background-position: 50% 50%; background-repeat: no-repeat; background-size: contain; height: 100%; left: 0px; opacity: 0; position: absolute; top: 0px; transition: opacity 0.2s; width: 100%; z-index: 1; } .plyr—stopped.plyr__poster-enabled .plyr__poster { opacity: 1; } .plyr—youtube.plyr—paused.plyr__poster-enabled:not(.plyr—stopped) .plyr__poster { display: none; } .plyr__time { font-size: var(—plyr-font-size-time,var(—plyr-font-size-small,13px)); } .plyr__time + .plyr__time::before { content: ”⁄”; margin-right: var(—plyr-control-spacing,10px); } @media (max-width: 767px) { .plyr__time + .plyr__time { display: none; } } .plyr__tooltip { background: var(—plyr-tooltip-background,#fff); border-radius: var(—plyr-tooltip-radius,5px); bottom: 100%; box-shadow: var(—plyr-tooltip-shadow,0 1px 2px #00000026); color: var(—plyr-tooltip-color,#4a5464); font-size: var(—plyr-font-size-small,13px); font-weight: var(—plyr-font-weight-regular,400); left: 50%; line-height: 1.3; margin-bottom: calc(var(—plyr-control-spacing,10px)/22); opacity: 0; padding: calc(var(—plyr-control-spacing,10px)/2) calc(var(—plyr-control-spacing,10px)/21.5); pointer-events: none; position: absolute; transform: translate(-50%, 10px) scale(0.8); transform-origin: 50% 100%; transition: transform 0.2s 0.1s, opacity 0.2s 0.1s; white-space: nowrap; z-index: 2; } .plyr__tooltip::before { border-left: var(—plyr-tooltip-arrow-size,4px) solid #0000; border-right: var(—plyr-tooltip-arrow-size,4px) solid #0000; border-top: var(—plyr-tooltip-arrow-size,4px) solid var(—plyr-tooltip-background,#fff); bottom: calc(var(—plyr-tooltip-arrow-size,4px)-1); content: ""; height: 0px; left: 50%; position: absolute; transform: translateX(-50%); width: 0px; z-index: 2; } .plyr .plyr__control:focus-visible .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip—visible { opacity: 1; transform: translate(-50%) scale(1); } .plyr .plyr__control:hover .plyr__tooltip { z-index: 3; } .plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip { left: 0px; transform: translateY(10px) scale(0.8); transform-origin: 0px 100%; } .plyr__controls > .plyr__control:first-child .plyr__tooltip::before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before { left: calc(var(—plyr-control-icon-size,18px)/2 + var(—plyr-control-spacing,10px).7); } .plyr__controls > .plyr__control:last-child .plyr__tooltip { left: auto; right: 0px; transform: translateY(10px) scale(0.8); transform-origin: 100% 100%; } .plyr__controls > .plyr__control:last-child .plyr__tooltip::before { left: auto; right: calc(var(—plyr-control-icon-size,18px)/2 + var(—plyr-control-spacing,10px).7); transform: translateX(50%); } .plyr__controls > .plyr__control:first-child .plyr__tooltip—visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip—visible, .plyr__controls > .plyr__control:first-child + .plyr__control:focus-visible .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip—visible, .plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip { transform: translate(0px) scale(1); } .plyr__progress { left: calc(var(—plyr-range-thumb-height,13px).5); margin-right: var(—plyr-range-thumb-height,13px); position: relative; } .plyr__progress input[type=“range”], .plyr__progress__buffer { margin-left: calc(var(—plyr-range-thumb-height,13px)-.5); margin-right: calc(var(—plyr-range-thumb-height,13px)-.5); width: calc(100% + var(—plyr-range-thumb-height,13px)); } .plyr__progress input[type=“range”] { position: relative; z-index: 2; } .plyr__progress .plyr__tooltip { left: 0px; max-width: 120px; overflow-wrap: break-word; } .plyr__progress__buffer { appearance: none; background: rgba(0, 0, 0, 0); border: 0px; border-radius: 100px; height: var(—plyr-range-track-height,5px); left: 0px; margin-top: calc((var(—plyr-range-track-height,5px)/2)-1); padding: 0px; position: absolute; top: 50%; } .plyr__progress__buffer::-webkit-progress-bar { background: rgba(0, 0, 0, 0); } .plyr__progress__buffer::-webkit-progress-value { background: currentcolor; border-radius: 100px; min-width: var(—plyr-range-track-height,5px); transition: width 0.2s; } .plyr—loading .plyr__progress__buffer { animation: 1s linear 0s infinite normal none running plyr-progress; background-image: linear-gradient(-45deg,var(—plyr-progress-loading-background,#23282f99) 25%,#0000 25%,#0000 50%,var(—plyr-progress-loading-background,#23282f99) 50%,var(—plyr-progress-loading-background,#23282f99) 75%,#0000 75%,#0000); background-repeat: repeat-x; background-size: var(—plyr-progress-loading-size,25px) var(—plyr-progress-loading-size,25px); color: rgba(0, 0, 0, 0); } .plyr—video.plyr—loading .plyr__progress__buffer { background-color: var(—plyr-video-progress-buffered-background,#ffffff40); } .plyr—audio.plyr—loading .plyr__progress__buffer { background-color: var(—plyr-audio-progress-buffered-background,#c1c8d199); } .plyr__progress__marker { background-color: var(—plyr-progress-marker-background,#fff); border-radius: 1px; height: var(—plyr-range-track-height,5px); position: absolute; top: 50%; transform: translate(-50%, -50%); width: var(—plyr-progress-marker-width,3px); z-index: 3; } .plyr__volume { align-items: center; display: flex; position: relative; } .plyr__volume input[type=“range”] { margin-left: calc(var(—plyr-control-spacing,10px)/2); margin-right: calc(var(—plyr-control-spacing,10px)/2); max-width: 90px; min-width: 60px; position: relative; z-index: 2; } .plyr—audio { display: block; } .plyr—audio .plyr__controls { background: var(—plyr-audio-controls-background,#fff); border-radius: inherit; color: var(—plyr-audio-control-color,#4a5464); padding: var(—plyr-control-spacing,10px); } .plyr—audio .plyr__control:focus-visible, .plyr—audio .plyr__control:hover, .plyr—audio .plyr__control[aria-expanded=“true”] { background: var(—plyr-audio-control-background-hover,var(—plyr-color-main,var(—plyr-color-main,#00b2ff))); color: var(—plyr-audio-control-color-hover,#fff); } .plyr—full-ui.plyr—audio input[type=“range”]::-webkit-slider-runnable-track { background-color: var(—plyr-audio-range-track-background,var(—plyr-audio-progress-buffered-background,#c1c8d199)); } .plyr—full-ui.plyr—audio input[type=“range”]:active::-webkit-slider-thumb { box-shadow: var(—plyr-range-thumb-shadow,0 1px 1px #23282f26,0 0 0 1px #23282f33),0 0 0 var(—plyr-range-thumb-active-shadow-width,3px) var(—plyr-audio-range-thumb-active-shadow-color,#23282f1a); } .plyr—audio .plyr__progress__buffer { color: var(—plyr-audio-progress-buffered-background,#c1c8d199); } .plyr—video { overflow: hidden; } .plyr—video.plyr—menu-open { overflow: visible; } .plyr__video-wrapper { background: var(—plyr-video-background,var(—plyr-video-background,#000)); border-radius: inherit; height: 100%; margin: auto; overflow: hidden; position: relative; width: 100%; } .plyr__video-embed, .plyr__video-wrapper—fixed-ratio { aspect-ratio: 16 / 9; } @supports not (aspect-ratio:16/9) { .plyr__video-embed, .plyr__video-wrapper—fixed-ratio { height: 0px; padding-bottom: 56.25%; position: relative; } } .plyr__video-embed iframe, .plyr__video-wrapper—fixed-ratio video { border: 0px; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; } .plyr—full-ui .plyr__video-embed > .plyr__video-embed__container { padding-bottom: 240%; position: relative; transform: translateY(-38.2812%); } .plyr—video .plyr__controls { background: var(—plyr-video-controls-background,linear-gradient(#0000,#000000bf)); border-bottom-left-radius: inherit; border-bottom-right-radius: inherit; bottom: 0px; color: var(—plyr-video-control-color,#fff); left: 0px; padding-right: ; padding-bottom: ; padding-left: ; padding-top: calc(var(—plyr-control-spacing,10px)*2); position: absolute; right: 0px; transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; z-index: 3; } @media (min-width: 480px) { .plyr—video .plyr__controls { padding-right: ; padding-bottom: ; padding-left: ; padding-top: calc(var(—plyr-control-spacing,10px)3.5); } } .plyr—video.plyr—hide-controls .plyr__controls { opacity: 0; pointer-events: none; transform: translateY(100%); } .plyr—video .plyr__control:focus-visible, .plyr—video .plyr__control:hover, .plyr—video .plyr__control[aria-expanded=“true”] { background: var(—plyr-video-control-background-hover,var(—plyr-color-main,var(—plyr-color-main,#00b2ff))); color: var(—plyr-video-control-color-hover,#fff); } .plyr__control—overlaid { background: var(—plyr-video-control-background-hover,var(—plyr-color-main,var(—plyr-color-main,#00b2ff))); border: 0px; border-radius: 100%; color: var(—plyr-video-control-color,#fff); display: none; left: 50%; opacity: 0.9; padding: calc(var(—plyr-control-spacing,10px)1.5); position: absolute; top: 50%; transform: translate(-50%, -50%); transition: 0.3s; z-index: 2; } .plyr__control—overlaid svg { left: 2px; position: relative; } .plyr__control—overlaid:focus, .plyr__control—overlaid:hover { opacity: 1; } .plyr—playing .plyr__control—overlaid { opacity: 0; visibility: hidden; } .plyr—full-ui.plyr—video .plyr__control—overlaid { display: block; } .plyr—full-ui.plyr—video input[type=“range”]::-webkit-slider-runnable-track { background-color: var(—plyr-video-range-track-background,var(—plyr-video-progress-buffered-background,#ffffff40)); } .plyr—full-ui.plyr—video input[type=“range”]:active::-webkit-slider-thumb { box-shadow: var(—plyr-range-thumb-shadow,0 1px 1px #23282f26,0 0 0 1px #23282f33),0 0 0 var(—plyr-range-thumb-active-shadow-width,3px) var(—plyr-audio-range-thumb-active-shadow-color,#ffffff80); } .plyr—video .plyr__progress__buffer { color: var(—plyr-video-progress-buffered-background,#ffffff40); } .plyr:fullscreen { background: rgb(0, 0, 0); height: 100%; margin: 0px; width: 100%; border-radius: 0px !important; } .plyr:fullscreen video { height: 100%; } .plyr:fullscreen .plyr__control .icon—exit-fullscreen { display: block; } .plyr:fullscreen .plyr__control .icon—exit-fullscreen + svg { display: none; } .plyr:fullscreen.plyr—hide-controls { cursor: none; } @media (min-width: 1024px) { .plyr:fullscreen .plyr__captions { font-size: var(—plyr-font-size-xlarge,21px); } } .plyr—fullscreen-fallback { background: rgb(0, 0, 0); inset: 0px; height: 100%; margin: 0px; position: fixed; width: 100%; z-index: 10000000; border-radius: 0px !important; } .plyr—fullscreen-fallback video { height: 100%; } .plyr—fullscreen-fallback .plyr__control .icon—exit-fullscreen { display: block; } .plyr—fullscreen-fallback .plyr__control .icon—exit-fullscreen + svg { display: none; } .plyr—fullscreen-fallback.plyr—hide-controls { cursor: none; } @media (min-width: 1024px) { .plyr—fullscreen-fallback .plyr__captions { font-size: var(—plyr-font-size-xlarge,21px); } } .plyr__ads { border-radius: inherit; inset: 0px; cursor: pointer; overflow: hidden; position: absolute; z-index: -1; } .plyr__ads > div, .plyr__ads > div iframe { height: 100%; position: absolute; width: 100%; } .plyr__ads::after { background: rgb(35, 40, 47); border-radius: 2px; bottom: var(—plyr-control-spacing,10px); color: rgb(255, 255, 255); content: attr(data-badge-text); font-size: 11px; padding: 2px 6px; pointer-events: none; position: absolute; right: var(—plyr-control-spacing,10px); z-index: 3; } .plyr__ads:empty::after { display: none; } .plyr__cues { background: currentcolor; display: block; height: var(—plyr-range-track-height,5px); left: 0px; opacity: 0.8; position: absolute; top: 50%; transform: translateY(-50%); width: 3px; z-index: 3; } .plyr__preview-thumb { background-color: var(—plyr-tooltip-background,#fff); border-radius: var(—plyr-menu-radius,8px); bottom: 100%; box-shadow: var(—plyr-tooltip-shadow,0 1px 2px #00000026); margin-bottom: calc(var(—plyr-control-spacing,10px)/22); opacity: 0; padding: 3px; pointer-events: none; position: absolute; transform: translateY(10px) scale(0.8); transform-origin: 50% 100%; transition: transform 0.2s 0.1s, opacity 0.2s 0.1s; z-index: 2; } .plyr__preview-thumb—is-shown { opacity: 1; transform: translate(0px) scale(1); } .plyr__preview-thumb::before { border-left: var(—plyr-tooltip-arrow-size,4px) solid #0000; border-right: var(—plyr-tooltip-arrow-size,4px) solid #0000; border-top: var(—plyr-tooltip-arrow-size,4px) solid var(—plyr-tooltip-background,#fff); bottom: calc(var(—plyr-tooltip-arrow-size,4px)-1); content: ""; height: 0px; left: calc(50% + var(—preview-arrow-offset)); position: absolute; transform: translateX(-50%); width: 0px; z-index: 2; } .plyr__preview-thumb__image-container { background: rgb(193, 200, 209); border-radius: calc(var(—plyr-menu-radius,8px) - 1px); overflow: hidden; position: relative; z-index: 0; } .plyr__preview-thumb__image-container img, .plyr__preview-thumb__image-container::after { height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; } .plyr__preview-thumb__image-container::after { border-radius: inherit; box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px inset; content: ""; pointer-events: none; } .plyr__preview-thumb__image-container img { max-height: none; max-width: none; } .plyr__preview-thumb__time-container { background: var(—plyr-video-controls-background,linear-gradient(#0000,#000000bf)); border-bottom-left-radius: calc(var(—plyr-menu-radius,8px) - 1px); border-bottom-right-radius: calc(var(—plyr-menu-radius,8px) - 1px); bottom: 0px; left: 0px; line-height: 1.1; padding: 20px 6px 6px; position: absolute; right: 0px; z-index: 3; } .plyr__preview-thumb__time-container span { color: rgb(255, 255, 255); font-size: var(—plyr-font-size-time,var(—plyr-font-size-small,13px)); } .plyr__preview-scrubbing { inset: 0px; filter: blur(1px); height: 100%; margin: auto; opacity: 0; overflow: hidden; pointer-events: none; position: absolute; transition: opacity 0.3s; width: 100%; z-index: 1; } .plyr__preview-scrubbing—is-shown { opacity: 1; } .plyr__preview-scrubbing img { height: 100%; left: 0px; max-height: none; max-width: none; object-fit: contain; position: absolute; top: 0px; width: 100%; } .plyr—no-transition { transition: none !important; } .plyr__sr-only { clip: rect(1px, 1px, 1px, 1px); overflow: hidden; border: 0px !important; height: 1px !important; padding: 0px !important; position: absolute !important; width: 1px !important; } .plyr [hidden] { display: none !important; } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R---- Content-Type: text/css Content-Transfer-Encoding: binary Content-Location: https://author-ide.skills.network/public/css/custom_plyr.css?version=3.3.3 @charset “utf-8”; div.editormd-preview { —plyr-color-main: #486581; —plyr-audio-controls-background: #DDDDDD; —plyr-audio-control-color: #666; —plyr-audio-control-color-hover: #DDDDDD; —plyr-audio-progress-buffered-background: #F4F4F4; —plyr-menu-color: #666; —plyr-menu-background: #F4F4F4; —plyr-menu-arrow-color: #486581; —plyr-tooltip-background: #F4F4F4; —plyr-tooltip-color: #666; —audio-outdated-color: #FFA500; —audio-invalid-color: #DC143C; } div.editormd-preview-theme-dark { —plyr-color-main: #bcccdc; —plyr-audio-controls-background: #3C3C3C; —plyr-audio-control-color: #FFFFFF; —plyr-audio-control-color-hover: #3C3C3C; —plyr-audio-progress-buffered-background: #707070; —plyr-menu-color: #FFFFFF; —plyr-menu-background: #707070; —plyr-menu-arrow-color: #bcccdc; —plyr-tooltip-background: #707070; —plyr-tooltip-color: #FFFFFF; —audio-outdated-color: #FFB74D; —audio-invalid-color: #FF6347; } .plyr__menu__container { bottom: 0px; top: 100%; } #audio-widget { padding-left: 15%; padding-right: 15%; padding-top: 15px; margin-bottom: 15px; background: var(—preview-container-background); } #audio-container { background: var(—preview-container-background); z-index: 1; } #audioToggleButton { width: 45px; } #audio-toggle-button > button:focus { outline: none; box-shadow: none; } #audioToggleButton.collapsed::after { content: ””; font-family: FontAwesome; } #audioToggleButton:not(.collapsed)::after { content: ””; font-family: FontAwesome; } .plyr__menu__container > div { background: inherit; } .plyr.plyr—full-ui { border-radius: 10px; } #audio-widget.disabled .plyr { opacity: 0.5; } #audio-widget.disabled .plyr, #audio-widget.disabled .plyr__controls__item, #audio-widget.disabled .plyr__controls__item > input { cursor: not-allowed; } #audio-widget.disabled .plyr__progress, #audio-widget.disabled .plyr__control, #audio-widget.disabled .plyr__controls__item > input { pointer-events: none; } #audioWarning { color: var(—audio-invalid-color); position: relative; left: 100%; } #audioWarning.outdated { color: var(—audio-outdated-color); } ------MultipartBoundary—NvCGnsrY84ICWkI5Xecj9uS6vlrosuFks4ufSvXG9R------