2677 lines
63 KiB
CSS
2677 lines
63 KiB
CSS
@charset "UTF-8";
|
||
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900|Inter:100,200,300,400,500,600,700,800,900&display=swap");
|
||
:root {
|
||
/* Red */
|
||
--red-50: #f6d9d9;
|
||
--red-100: #f3b5ab;
|
||
--red-200: #eb9280;
|
||
--red-300: #e06e56;
|
||
--red-400: #d2462d;
|
||
--red-500: #c00000;
|
||
--red-600: #9f0004;
|
||
--red-700: #7f0005;
|
||
--red-800: #600004;
|
||
--red-900: #430000;
|
||
/* Green */
|
||
--green-50: #ecfdf5;
|
||
--green-100: #d1fae5;
|
||
--green-200: #a7f3d0;
|
||
--green-300: #6ee7b7;
|
||
--green-400: #34d399;
|
||
--green-500: #10b981;
|
||
--green-600: #059669;
|
||
--green-700: #047857;
|
||
--green-800: #065f46;
|
||
--green-900: #064e3b;
|
||
/* Primary */
|
||
--primary-50: #dadfe3;
|
||
--primary-100: #afb6c1;
|
||
--primary-200: #858fa0;
|
||
--primary-300: #5d6a80;
|
||
--primary-400: #364761;
|
||
--primary-500: #0a2744;
|
||
--primary-600: #0b2138;
|
||
--primary-700: #0b1b2d;
|
||
--primary-800: #091522;
|
||
--primary-900: #040e18;
|
||
/* Secondary */
|
||
--secondary-50: #fff7e0;
|
||
--secondary-100: #ffefc4;
|
||
--secondary-200: #ffe7a5;
|
||
--secondary-300: #ffde85;
|
||
--secondary-400: #ffd561;
|
||
--secondary-500: #ffcc33;
|
||
--secondary-600: #d3a92b;
|
||
--secondary-700: #a88722;
|
||
--secondary-800: #80661a;
|
||
--secondary-900: #594712;
|
||
/* Gray */
|
||
--gray-50: rgba(249, 250, 251, 1);
|
||
--gray-100: rgba(243, 244, 246, 1);
|
||
--gray-200: rgba(229, 231, 235, 1);
|
||
--gray-300: rgba(209, 213, 219, 1);
|
||
--gray-400: rgba(156, 163, 175, 1);
|
||
--gray-500: rgba(107, 114, 128, 1);
|
||
--gray-600: rgba(75, 85, 99, 1);
|
||
--gray-700: rgba(55, 65, 81, 1);
|
||
--gray-800: rgba(31, 41, 55, 1);
|
||
--gray-900: rgba(17, 24, 39, 1);
|
||
/* Black & White */
|
||
--black: #000;
|
||
--white: #fff;
|
||
}
|
||
/* Box sizing rules */
|
||
*,
|
||
*::before,
|
||
*::after {
|
||
box-sizing: border-box;
|
||
}
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
font: inherit;
|
||
}
|
||
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
|
||
ul[role=list],
|
||
ol[role=list] {
|
||
list-style: none;
|
||
}
|
||
/* Set core root defaults */
|
||
html:focus-within {
|
||
scroll-behavior: smooth;
|
||
}
|
||
html,
|
||
body {
|
||
height: 100%;
|
||
scroll-behavior: smooth;
|
||
}
|
||
/* Set core body defaults */
|
||
body {
|
||
text-rendering: optimizeSpeed;
|
||
line-height: 1.5;
|
||
}
|
||
/* A elements that don't have a class get default styles */
|
||
a:not([class]) {
|
||
-webkit-text-decoration-skip: ink;
|
||
text-decoration-skip-ink: auto;
|
||
}
|
||
/* Make images easier to work with */
|
||
img,
|
||
picture,
|
||
svg {
|
||
max-width: 100%;
|
||
display: block;
|
||
}
|
||
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
|
||
@media (prefers-reduced-motion: reduce) {
|
||
html:focus-within {
|
||
scroll-behavior: auto;
|
||
}
|
||
*,
|
||
*::before,
|
||
*::after {
|
||
animation-duration: 0.01ms !important;
|
||
animation-iteration-count: 1 !important;
|
||
transition-duration: 0.01ms !important;
|
||
scroll-behavior: auto !important;
|
||
}
|
||
}
|
||
/* FORMS */
|
||
input[type=checkbox]:focus,
|
||
input[type=color]:focus,
|
||
input[type=date]:focus,
|
||
input[type=datetime-local]:focus,
|
||
input[type=datetime]:focus,
|
||
input[type=email]:focus,
|
||
input[type=month]:focus,
|
||
input[type=number]:focus,
|
||
input[type=password]:focus,
|
||
input[type=radio]:focus,
|
||
input[type=search]:focus,
|
||
input[type=tel]:focus,
|
||
input[type=text]:focus,
|
||
input[type=textarea]:focus,
|
||
input[type=time]:focus,
|
||
input[type=url]:focus,
|
||
input[type=week]:focus,
|
||
select:focus,
|
||
textarea:focus {
|
||
border-color: #0a2744 !important;
|
||
border-color: var(--primary-500) !important;
|
||
box-shadow: 0 0 0 1px rgba(107, 114, 128, 1) !important;
|
||
box-shadow: 0 0 0 1px var(--gray-500) !important;
|
||
outline: 2px solid transparent !important;
|
||
}
|
||
[type=text],
|
||
[type=email],
|
||
[type=url],
|
||
[type=password],
|
||
[type=number],
|
||
[type=date],
|
||
[type=datetime-local],
|
||
[type=month],
|
||
[type=search],
|
||
[type=tel],
|
||
[type=time],
|
||
[type=week],
|
||
[multiple],
|
||
textarea,
|
||
select {
|
||
width: 100% !important;
|
||
}
|
||
textarea,
|
||
textarea:focus,
|
||
textarea:focus-within {
|
||
border-color: #040e18 !important;
|
||
border-color: var(--primary-900) !important;
|
||
}
|
||
/* WordPress */
|
||
/* Archive Widget */
|
||
/* Latest Posts Featured Image */
|
||
.wp-block-latest-posts__featured-image img {
|
||
border-radius: 0.5rem;
|
||
}
|
||
/* Latest Posts Title */
|
||
.wp-block-latest-posts__post-title {
|
||
font-weight: 600;
|
||
}
|
||
/* Login Page */
|
||
#login {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
padding: 0;
|
||
}
|
||
.login #nav {
|
||
font-size: 16px;
|
||
font-weight: 400;
|
||
}
|
||
.login #nav a,
|
||
.login #backtoblog a {
|
||
color: #fff;
|
||
color: var(--white);
|
||
}
|
||
.login #backtoblog a:hover,
|
||
.login #nav a:hover,
|
||
.login h1 a:hover {
|
||
color: #858fa0;
|
||
color: var(--primary-200);
|
||
}
|
||
.login .button.wp-hide-pw {
|
||
color: #000;
|
||
color: var(--black);
|
||
}
|
||
.login .button.wp-hide-pw:hover {
|
||
color: #0a2744;
|
||
color: var(--primary-500);
|
||
}
|
||
.login .button.wp-hide-pw:focus {
|
||
background: 0 0;
|
||
border-color: #040e18;
|
||
border-color: var(--primary-900);
|
||
box-shadow: 0 0 0 1px;
|
||
outline: 2px solid transparent;
|
||
}
|
||
#login h1 a,
|
||
.login h1 a {
|
||
background-image: url("../../assets/images/logos/Leon-Pharmacy-Logo-whitebg.png");
|
||
background-repeat: no-repeat;
|
||
background-position: center center;
|
||
background-size: 200px;
|
||
width: 200px;
|
||
height: 84px;
|
||
margin: 0px 0px 0.5rem;
|
||
}
|
||
.login form {
|
||
border-radius: 8px;
|
||
}
|
||
.login .message {
|
||
border-left: 8px solid #0a2744;
|
||
border-left: 8px solid var(--primary-500);
|
||
}
|
||
/* Customize Login Screen */
|
||
body.login .button-primary {
|
||
font-size: 100%;
|
||
width: 100%;
|
||
margin: 0.5rem 0 0;
|
||
line-height: 1;
|
||
cursor: pointer;
|
||
position: relative;
|
||
-webkit-text-decoration: none;
|
||
text-decoration: none;
|
||
overflow: visible;
|
||
padding: 0.75rem 1.25rem;
|
||
font-weight: 400;
|
||
left: auto;
|
||
color: #fff;
|
||
color: var(--white);
|
||
background-color: #0a2744;
|
||
background-color: var(--primary-500);
|
||
border: 0;
|
||
display: inline-block;
|
||
background-image: none;
|
||
box-shadow: none;
|
||
text-shadow: none;
|
||
border-radius: 0.375rem;
|
||
transition: all 600ms ease-in-out;
|
||
}
|
||
body.login .button-primary:active,
|
||
body.login .button-primary:focus,
|
||
body.login .button-primary:hover {
|
||
background-color: #fff;
|
||
background-color: var(--white);
|
||
-webkit-text-decoration: none;
|
||
text-decoration: none;
|
||
background-image: none;
|
||
color: #000;
|
||
color: var(--black);
|
||
border-radius: 0.375rem;
|
||
border: 1px solid rgba(17, 24, 39, 1);
|
||
border: 1px solid var(--gray-900);
|
||
}
|
||
body.login {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
background-size: cover;
|
||
background-position: center center;
|
||
background-image: url("../../assets/images/bgs/leon-pharmacy-entrance.jpg");
|
||
background-color: rgba(31, 41, 55, 1);
|
||
background-color: var(--gray-800);
|
||
background-blend-mode: multiply;
|
||
}
|
||
.login-action-confirm_admin_email #login {
|
||
margin-top: auto;
|
||
}
|
||
/* Pinegrow generated Design Panel Init Begin */
|
||
/* Pinegrow generated Design Panel Init End */
|
||
/* ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com */
|
||
/*
|
||
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
||
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
||
*/
|
||
*,
|
||
::before,
|
||
::after {
|
||
box-sizing: border-box;
|
||
/* 1 */
|
||
border-width: 0;
|
||
/* 2 */
|
||
border-style: solid;
|
||
/* 2 */
|
||
border-color: #e5e7eb;
|
||
/* 2 */
|
||
}
|
||
::before,
|
||
::after {
|
||
--tw-content: "";
|
||
}
|
||
/*
|
||
1. Use a consistent sensible line-height in all browsers.
|
||
2. Prevent adjustments of font size after orientation changes in iOS.
|
||
3. Use a more readable tab size.
|
||
4. Use the user's configured `sans` font-family by default.
|
||
5. Use the user's configured `sans` font-feature-settings by default.
|
||
6. Use the user's configured `sans` font-variation-settings by default.
|
||
*/
|
||
html {
|
||
line-height: 1.5;
|
||
/* 1 */
|
||
-webkit-text-size-adjust: 100%;
|
||
/* 2 */
|
||
-moz-tab-size: 4;
|
||
/* 3 */
|
||
-o-tab-size: 4;
|
||
tab-size: 4;
|
||
/* 3 */
|
||
font-family: "Montserrat", sans-serif;
|
||
/* 4 */
|
||
font-feature-settings: normal;
|
||
/* 5 */
|
||
font-variation-settings: normal;
|
||
/* 6 */
|
||
}
|
||
/*
|
||
1. Remove the margin in all browsers.
|
||
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
||
*/
|
||
body {
|
||
margin: 0;
|
||
/* 1 */
|
||
line-height: inherit;
|
||
/* 2 */
|
||
}
|
||
/*
|
||
1. Add the correct height in Firefox.
|
||
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
||
3. Ensure horizontal rules are visible by default.
|
||
*/
|
||
hr {
|
||
height: 0;
|
||
/* 1 */
|
||
color: inherit;
|
||
/* 2 */
|
||
border-top-width: 1px;
|
||
/* 3 */
|
||
}
|
||
/*
|
||
Add the correct text decoration in Chrome, Edge, and Safari.
|
||
*/
|
||
abbr:where([title]) {
|
||
-webkit-text-decoration: underline dotted;
|
||
text-decoration: underline;
|
||
text-decoration: underline dotted;
|
||
}
|
||
/*
|
||
Remove the default font size and weight for headings.
|
||
*/
|
||
h1,
|
||
h2,
|
||
h3,
|
||
h4,
|
||
h5,
|
||
h6 {
|
||
font-size: inherit;
|
||
font-weight: inherit;
|
||
}
|
||
/*
|
||
Reset links to optimize for opt-in styling instead of opt-out.
|
||
*/
|
||
a {
|
||
color: inherit;
|
||
text-decoration: inherit;
|
||
}
|
||
/*
|
||
Add the correct font weight in Edge and Safari.
|
||
*/
|
||
b,
|
||
strong {
|
||
font-weight: bolder;
|
||
}
|
||
/*
|
||
1. Use the user's configured `mono` font family by default.
|
||
2. Correct the odd `em` font sizing in all browsers.
|
||
*/
|
||
code,
|
||
kbd,
|
||
samp,
|
||
pre {
|
||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||
/* 1 */
|
||
font-size: 1em;
|
||
/* 2 */
|
||
}
|
||
/*
|
||
Add the correct font size in all browsers.
|
||
*/
|
||
small {
|
||
font-size: 80%;
|
||
}
|
||
/*
|
||
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
||
*/
|
||
sub,
|
||
sup {
|
||
font-size: 75%;
|
||
line-height: 0;
|
||
position: relative;
|
||
vertical-align: baseline;
|
||
}
|
||
sub {
|
||
bottom: -0.25em;
|
||
}
|
||
sup {
|
||
top: -0.5em;
|
||
}
|
||
/*
|
||
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
||
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
||
3. Remove gaps between table borders by default.
|
||
*/
|
||
table {
|
||
text-indent: 0;
|
||
/* 1 */
|
||
border-color: inherit;
|
||
/* 2 */
|
||
border-collapse: collapse;
|
||
/* 3 */
|
||
}
|
||
/*
|
||
1. Change the font styles in all browsers.
|
||
2. Remove the margin in Firefox and Safari.
|
||
3. Remove default padding in all browsers.
|
||
*/
|
||
button,
|
||
input,
|
||
optgroup,
|
||
select,
|
||
textarea {
|
||
font-family: inherit;
|
||
/* 1 */
|
||
font-feature-settings: inherit;
|
||
/* 1 */
|
||
font-variation-settings: inherit;
|
||
/* 1 */
|
||
font-size: 100%;
|
||
/* 1 */
|
||
font-weight: inherit;
|
||
/* 1 */
|
||
line-height: inherit;
|
||
/* 1 */
|
||
color: inherit;
|
||
/* 1 */
|
||
margin: 0;
|
||
/* 2 */
|
||
padding: 0;
|
||
/* 3 */
|
||
}
|
||
/*
|
||
Remove the inheritance of text transform in Edge and Firefox.
|
||
*/
|
||
button,
|
||
select {
|
||
text-transform: none;
|
||
}
|
||
/*
|
||
1. Correct the inability to style clickable types in iOS and Safari.
|
||
2. Remove default button styles.
|
||
*/
|
||
button,
|
||
[type=button],
|
||
[type=reset],
|
||
[type=submit] {
|
||
-webkit-appearance: button;
|
||
/* 1 */
|
||
background-color: transparent;
|
||
/* 2 */
|
||
background-image: none;
|
||
/* 2 */
|
||
}
|
||
/*
|
||
Use the modern Firefox focus style for all focusable elements.
|
||
*/
|
||
:-moz-focusring {
|
||
outline: auto;
|
||
}
|
||
/*
|
||
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
||
*/
|
||
:-moz-ui-invalid {
|
||
box-shadow: none;
|
||
}
|
||
/*
|
||
Add the correct vertical alignment in Chrome and Firefox.
|
||
*/
|
||
progress {
|
||
vertical-align: baseline;
|
||
}
|
||
/*
|
||
Correct the cursor style of increment and decrement buttons in Safari.
|
||
*/
|
||
::-webkit-inner-spin-button,
|
||
::-webkit-outer-spin-button {
|
||
height: auto;
|
||
}
|
||
/*
|
||
1. Correct the odd appearance in Chrome and Safari.
|
||
2. Correct the outline style in Safari.
|
||
*/
|
||
[type=search] {
|
||
-webkit-appearance: textfield;
|
||
/* 1 */
|
||
outline-offset: -2px;
|
||
/* 2 */
|
||
}
|
||
/*
|
||
Remove the inner padding in Chrome and Safari on macOS.
|
||
*/
|
||
::-webkit-search-decoration {
|
||
-webkit-appearance: none;
|
||
}
|
||
/*
|
||
1. Correct the inability to style clickable types in iOS and Safari.
|
||
2. Change font properties to `inherit` in Safari.
|
||
*/
|
||
::-webkit-file-upload-button {
|
||
-webkit-appearance: button;
|
||
/* 1 */
|
||
font: inherit;
|
||
/* 2 */
|
||
}
|
||
/*
|
||
Add the correct display in Chrome and Safari.
|
||
*/
|
||
summary {
|
||
display: list-item;
|
||
}
|
||
/*
|
||
Removes the default spacing and border for appropriate elements.
|
||
*/
|
||
blockquote,
|
||
dl,
|
||
dd,
|
||
h1,
|
||
h2,
|
||
h3,
|
||
h4,
|
||
h5,
|
||
h6,
|
||
hr,
|
||
figure,
|
||
p,
|
||
pre {
|
||
margin: 0;
|
||
}
|
||
fieldset {
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
legend {
|
||
padding: 0;
|
||
}
|
||
ol,
|
||
ul,
|
||
menu {
|
||
list-style: none;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
/*
|
||
Reset default styling for dialogs.
|
||
*/
|
||
dialog {
|
||
padding: 0;
|
||
}
|
||
/*
|
||
Prevent resizing textareas horizontally by default.
|
||
*/
|
||
textarea {
|
||
resize: vertical;
|
||
}
|
||
/*
|
||
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
||
2. Set the default placeholder color to the user's configured gray 400 color.
|
||
*/
|
||
input::-moz-placeholder, textarea::-moz-placeholder {
|
||
opacity: 1;
|
||
/* 1 */
|
||
color: #9ca3af;
|
||
/* 2 */
|
||
}
|
||
input::placeholder,
|
||
textarea::placeholder {
|
||
opacity: 1;
|
||
/* 1 */
|
||
color: #9ca3af;
|
||
/* 2 */
|
||
}
|
||
/*
|
||
Set the default cursor for buttons.
|
||
*/
|
||
button,
|
||
[role=button] {
|
||
cursor: pointer;
|
||
}
|
||
/*
|
||
Make sure disabled buttons don't get the pointer cursor.
|
||
*/
|
||
:disabled {
|
||
cursor: default;
|
||
}
|
||
/*
|
||
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
||
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
||
This can trigger a poorly considered lint error in some tools but is included by design.
|
||
*/
|
||
img,
|
||
svg,
|
||
video,
|
||
canvas,
|
||
audio,
|
||
iframe,
|
||
embed,
|
||
object {
|
||
display: block;
|
||
/* 1 */
|
||
vertical-align: middle;
|
||
/* 2 */
|
||
}
|
||
/*
|
||
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
||
*/
|
||
img,
|
||
video {
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
/* Make elements with the HTML hidden attribute stay hidden by default */
|
||
[hidden] {
|
||
display: none;
|
||
}
|
||
[type=text], input:where(:not([type])), [type=email], [type=url], [type=password], [type=number], [type=date], [type=datetime-local], [type=month], [type=search], [type=tel], [type=time], [type=week], [multiple], textarea, select {
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
background-color: #fff;
|
||
border-color: #6b7280;
|
||
border-width: 1px;
|
||
border-radius: 0px;
|
||
padding-top: 0.5rem;
|
||
padding-right: 0.75rem;
|
||
padding-bottom: 0.5rem;
|
||
padding-left: 0.75rem;
|
||
font-size: 1rem;
|
||
line-height: 1.5rem;
|
||
--tw-shadow: 0 0 rgba(0,0,0,0);
|
||
}
|
||
[type=text]:focus, input:where(:not([type])):focus, [type=email]:focus, [type=url]:focus, [type=password]:focus, [type=number]:focus, [type=date]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=week]:focus, [multiple]:focus, textarea:focus, select:focus {
|
||
outline: 2px solid transparent;
|
||
outline-offset: 2px;
|
||
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
||
--tw-ring-offset-width: 0px;
|
||
--tw-ring-offset-color: #fff;
|
||
--tw-ring-color: #0b2138;
|
||
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
||
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
||
box-shadow: var(--tw-empty, ) 0 0 0 0px #fff, var(--tw-empty, ) 0 0 0 calc(1px + 0px) #0b2138, var(--tw-shadow);
|
||
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
border-color: #0b2138;
|
||
}
|
||
input::-moz-placeholder, textarea::-moz-placeholder {
|
||
color: #6b7280;
|
||
opacity: 1;
|
||
}
|
||
input::placeholder, textarea::placeholder {
|
||
color: #6b7280;
|
||
opacity: 1;
|
||
}
|
||
::-webkit-datetime-edit-fields-wrapper {
|
||
padding: 0;
|
||
}
|
||
::-webkit-date-and-time-value {
|
||
min-height: 1.5em;
|
||
text-align: inherit;
|
||
}
|
||
::-webkit-datetime-edit {
|
||
display: inline-flex;
|
||
}
|
||
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
||
padding-top: 0;
|
||
padding-bottom: 0;
|
||
}
|
||
select {
|
||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
|
||
background-position: right 0.5rem center;
|
||
background-repeat: no-repeat;
|
||
background-size: 1.5em 1.5em;
|
||
padding-right: 2.5rem;
|
||
-webkit-print-color-adjust: exact;
|
||
print-color-adjust: exact;
|
||
}
|
||
[multiple], [size]:where(select:not([size="1"])) {
|
||
background-image: none;
|
||
background-image: initial;
|
||
background-position: 0 0;
|
||
background-position: initial;
|
||
background-repeat: repeat;
|
||
background-repeat: initial;
|
||
background-size: auto auto;
|
||
background-size: initial;
|
||
padding-right: 0.75rem;
|
||
-webkit-print-color-adjust: unset;
|
||
print-color-adjust: inherit;
|
||
}
|
||
[type=checkbox], [type=radio] {
|
||
-webkit-appearance: none;
|
||
-moz-appearance: none;
|
||
appearance: none;
|
||
padding: 0;
|
||
-webkit-print-color-adjust: exact;
|
||
print-color-adjust: exact;
|
||
display: inline-block;
|
||
vertical-align: middle;
|
||
background-origin: border-box;
|
||
-webkit-user-select: none;
|
||
-moz-user-select: none;
|
||
user-select: none;
|
||
flex-shrink: 0;
|
||
height: 1rem;
|
||
width: 1rem;
|
||
color: #0b2138;
|
||
background-color: #fff;
|
||
border-color: #6b7280;
|
||
border-width: 1px;
|
||
--tw-shadow: 0 0 rgba(0,0,0,0);
|
||
}
|
||
[type=checkbox] {
|
||
border-radius: 0px;
|
||
}
|
||
[type=radio] {
|
||
border-radius: 100%;
|
||
}
|
||
[type=checkbox]:focus, [type=radio]:focus {
|
||
outline: 2px solid transparent;
|
||
outline-offset: 2px;
|
||
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
||
--tw-ring-offset-width: 2px;
|
||
--tw-ring-offset-color: #fff;
|
||
--tw-ring-color: #0b2138;
|
||
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
||
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
||
box-shadow: var(--tw-empty, ) 0 0 0 2px #fff, var(--tw-empty, ) 0 0 0 calc(2px + 2px) #0b2138, var(--tw-shadow);
|
||
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
||
}
|
||
[type=checkbox]:checked, [type=radio]:checked {
|
||
border-color: transparent;
|
||
background-color: currentColor;
|
||
background-size: 100% 100%;
|
||
background-position: center;
|
||
background-repeat: no-repeat;
|
||
}
|
||
[type=checkbox]:checked {
|
||
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
|
||
}
|
||
[type=radio]:checked {
|
||
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
||
}
|
||
[type=checkbox]:checked:hover, [type=checkbox]:checked:focus, [type=radio]:checked:hover, [type=radio]:checked:focus {
|
||
border-color: transparent;
|
||
background-color: currentColor;
|
||
}
|
||
[type=checkbox]:indeterminate {
|
||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
|
||
border-color: transparent;
|
||
background-color: currentColor;
|
||
background-size: 100% 100%;
|
||
background-position: center;
|
||
background-repeat: no-repeat;
|
||
}
|
||
[type=checkbox]:indeterminate:hover, [type=checkbox]:indeterminate:focus {
|
||
border-color: transparent;
|
||
background-color: currentColor;
|
||
}
|
||
[type=file] {
|
||
background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
|
||
background: initial;
|
||
border-color: inherit;
|
||
border-width: 0;
|
||
border-radius: 0;
|
||
padding: 0;
|
||
font-size: inherit;
|
||
line-height: inherit;
|
||
}
|
||
[type=file]:focus {
|
||
outline: 1px solid ButtonText;
|
||
outline: 1px auto -webkit-focus-ring-color;
|
||
}
|
||
*, ::before, ::after {
|
||
--tw-border-spacing-x: 0;
|
||
--tw-border-spacing-y: 0;
|
||
--tw-translate-x: 0;
|
||
--tw-translate-y: 0;
|
||
--tw-rotate: 0;
|
||
--tw-skew-x: 0;
|
||
--tw-skew-y: 0;
|
||
--tw-scale-x: 1;
|
||
--tw-scale-y: 1;
|
||
--tw-pan-x: ;
|
||
--tw-pan-y: ;
|
||
--tw-pinch-zoom: ;
|
||
--tw-scroll-snap-strictness: proximity;
|
||
--tw-gradient-from-position: ;
|
||
--tw-gradient-via-position: ;
|
||
--tw-gradient-to-position: ;
|
||
--tw-ordinal: ;
|
||
--tw-slashed-zero: ;
|
||
--tw-numeric-figure: ;
|
||
--tw-numeric-spacing: ;
|
||
--tw-numeric-fraction: ;
|
||
--tw-ring-inset: ;
|
||
--tw-ring-offset-width: 0px;
|
||
--tw-ring-offset-color: #fff;
|
||
--tw-ring-color: rgba(10, 39, 68, 0.5);
|
||
--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
|
||
--tw-ring-shadow: 0 0 rgba(0,0,0,0);
|
||
--tw-shadow: 0 0 rgba(0,0,0,0);
|
||
--tw-shadow-colored: 0 0 rgba(0,0,0,0);
|
||
--tw-blur: ;
|
||
--tw-brightness: ;
|
||
--tw-contrast: ;
|
||
--tw-grayscale: ;
|
||
--tw-hue-rotate: ;
|
||
--tw-invert: ;
|
||
--tw-saturate: ;
|
||
--tw-sepia: ;
|
||
--tw-drop-shadow: ;
|
||
--tw-backdrop-blur: ;
|
||
--tw-backdrop-brightness: ;
|
||
--tw-backdrop-contrast: ;
|
||
--tw-backdrop-grayscale: ;
|
||
--tw-backdrop-hue-rotate: ;
|
||
--tw-backdrop-invert: ;
|
||
--tw-backdrop-opacity: ;
|
||
--tw-backdrop-saturate: ;
|
||
--tw-backdrop-sepia: ;
|
||
}
|
||
::backdrop {
|
||
--tw-border-spacing-x: 0;
|
||
--tw-border-spacing-y: 0;
|
||
--tw-translate-x: 0;
|
||
--tw-translate-y: 0;
|
||
--tw-rotate: 0;
|
||
--tw-skew-x: 0;
|
||
--tw-skew-y: 0;
|
||
--tw-scale-x: 1;
|
||
--tw-scale-y: 1;
|
||
--tw-pan-x: ;
|
||
--tw-pan-y: ;
|
||
--tw-pinch-zoom: ;
|
||
--tw-scroll-snap-strictness: proximity;
|
||
--tw-gradient-from-position: ;
|
||
--tw-gradient-via-position: ;
|
||
--tw-gradient-to-position: ;
|
||
--tw-ordinal: ;
|
||
--tw-slashed-zero: ;
|
||
--tw-numeric-figure: ;
|
||
--tw-numeric-spacing: ;
|
||
--tw-numeric-fraction: ;
|
||
--tw-ring-inset: ;
|
||
--tw-ring-offset-width: 0px;
|
||
--tw-ring-offset-color: #fff;
|
||
--tw-ring-color: rgba(10, 39, 68, 0.5);
|
||
--tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
|
||
--tw-ring-shadow: 0 0 rgba(0,0,0,0);
|
||
--tw-shadow: 0 0 rgba(0,0,0,0);
|
||
--tw-shadow-colored: 0 0 rgba(0,0,0,0);
|
||
--tw-blur: ;
|
||
--tw-brightness: ;
|
||
--tw-contrast: ;
|
||
--tw-grayscale: ;
|
||
--tw-hue-rotate: ;
|
||
--tw-invert: ;
|
||
--tw-saturate: ;
|
||
--tw-sepia: ;
|
||
--tw-drop-shadow: ;
|
||
--tw-backdrop-blur: ;
|
||
--tw-backdrop-brightness: ;
|
||
--tw-backdrop-contrast: ;
|
||
--tw-backdrop-grayscale: ;
|
||
--tw-backdrop-hue-rotate: ;
|
||
--tw-backdrop-invert: ;
|
||
--tw-backdrop-opacity: ;
|
||
--tw-backdrop-saturate: ;
|
||
--tw-backdrop-sepia: ;
|
||
}
|
||
.container {
|
||
width: 100%;
|
||
}
|
||
@media (min-width: 640px) {
|
||
.container {
|
||
max-width: 640px;
|
||
}
|
||
}
|
||
@media (min-width: 768px) {
|
||
.container {
|
||
max-width: 768px;
|
||
}
|
||
}
|
||
@media (min-width: 1024px) {
|
||
.container {
|
||
max-width: 1024px;
|
||
}
|
||
}
|
||
@media (min-width: 1280px) {
|
||
.container {
|
||
max-width: 1280px;
|
||
}
|
||
}
|
||
@media (min-width: 1536px) {
|
||
.container {
|
||
max-width: 1536px;
|
||
}
|
||
}
|
||
.prose {
|
||
color: var(--tw-prose-body);
|
||
max-width: 65ch;
|
||
}
|
||
.prose :where(p):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 1.25em;
|
||
margin-bottom: 1.25em;
|
||
}
|
||
.prose :where([class~=lead]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-lead);
|
||
font-size: 1.25em;
|
||
line-height: 1.6;
|
||
margin-top: 1.2em;
|
||
margin-bottom: 1.2em;
|
||
}
|
||
.prose :where(a):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-links);
|
||
-webkit-text-decoration: underline;
|
||
text-decoration: underline;
|
||
font-weight: 500;
|
||
}
|
||
.prose :where(strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-bold);
|
||
font-weight: 600;
|
||
}
|
||
.prose :where(a strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(blockquote strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(thead th strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: decimal;
|
||
margin-top: 1.25em;
|
||
margin-bottom: 1.25em;
|
||
padding-left: 1.625em;
|
||
}
|
||
.prose :where(ol[type=A]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: upper-alpha;
|
||
}
|
||
.prose :where(ol[type=a]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: lower-alpha;
|
||
}
|
||
.prose :where(ol[type=A s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: upper-alpha;
|
||
}
|
||
.prose :where(ol[type=a s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: lower-alpha;
|
||
}
|
||
.prose :where(ol[type=I]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: upper-roman;
|
||
}
|
||
.prose :where(ol[type=i]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: lower-roman;
|
||
}
|
||
.prose :where(ol[type=I s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: upper-roman;
|
||
}
|
||
.prose :where(ol[type=i s]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: lower-roman;
|
||
}
|
||
.prose :where(ol[type="1"]):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: decimal;
|
||
}
|
||
.prose :where(ul):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
list-style-type: disc;
|
||
margin-top: 1.25em;
|
||
margin-bottom: 1.25em;
|
||
padding-left: 1.625em;
|
||
}
|
||
.prose :where(ol > li):not(:where([class~=not-prose], [class~=not-prose] *))::marker {
|
||
font-weight: 400;
|
||
color: var(--tw-prose-counters);
|
||
}
|
||
.prose :where(ul > li):not(:where([class~=not-prose], [class~=not-prose] *))::marker {
|
||
color: var(--tw-prose-bullets);
|
||
}
|
||
.prose :where(dt):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-headings);
|
||
font-weight: 600;
|
||
margin-top: 1.25em;
|
||
}
|
||
.prose :where(hr):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
border-color: var(--tw-prose-hr);
|
||
border-top-width: 1px;
|
||
margin-top: 3em;
|
||
margin-bottom: 3em;
|
||
}
|
||
.prose :where(blockquote):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
font-weight: 500;
|
||
font-style: italic;
|
||
color: var(--tw-prose-quotes);
|
||
border-left-width: 0.25rem;
|
||
border-left-color: var(--tw-prose-quote-borders);
|
||
quotes: "“" "”" "‘" "’";
|
||
margin-top: 1.6em;
|
||
margin-bottom: 1.6em;
|
||
padding-left: 1em;
|
||
}
|
||
.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose], [class~=not-prose] *))::before {
|
||
content: open-quote;
|
||
}
|
||
.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose], [class~=not-prose] *))::after {
|
||
content: close-quote;
|
||
}
|
||
.prose :where(h1):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-headings);
|
||
font-weight: 800;
|
||
font-size: 2.25em;
|
||
margin-top: 0;
|
||
margin-bottom: 0.8888889em;
|
||
line-height: 1.1111111;
|
||
}
|
||
.prose :where(h1 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
font-weight: 900;
|
||
color: inherit;
|
||
}
|
||
.prose :where(h2):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-headings);
|
||
font-weight: 700;
|
||
font-size: 1.5em;
|
||
margin-top: 2em;
|
||
margin-bottom: 1em;
|
||
line-height: 1.3333333;
|
||
}
|
||
.prose :where(h2 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
font-weight: 800;
|
||
color: inherit;
|
||
}
|
||
.prose :where(h3):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-headings);
|
||
font-weight: 600;
|
||
font-size: 1.25em;
|
||
margin-top: 1.6em;
|
||
margin-bottom: 0.6em;
|
||
line-height: 1.6;
|
||
}
|
||
.prose :where(h3 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
font-weight: 700;
|
||
color: inherit;
|
||
}
|
||
.prose :where(h4):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-headings);
|
||
font-weight: 600;
|
||
margin-top: 1.5em;
|
||
margin-bottom: 0.5em;
|
||
line-height: 1.5;
|
||
}
|
||
.prose :where(h4 strong):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
font-weight: 700;
|
||
color: inherit;
|
||
}
|
||
.prose :where(img):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
}
|
||
.prose :where(picture):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
display: block;
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
}
|
||
.prose :where(kbd):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
font-weight: 500;
|
||
font-family: inherit;
|
||
color: var(--tw-prose-kbd);
|
||
box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows)/10%);
|
||
font-size: 0.875em;
|
||
border-radius: 0.3125rem;
|
||
padding-top: 0.1875em;
|
||
padding-right: 0.375em;
|
||
padding-bottom: 0.1875em;
|
||
padding-left: 0.375em;
|
||
}
|
||
.prose :where(code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-code);
|
||
font-weight: 600;
|
||
font-size: 0.875em;
|
||
}
|
||
.prose :where(code):not(:where([class~=not-prose], [class~=not-prose] *))::before {
|
||
content: "`";
|
||
}
|
||
.prose :where(code):not(:where([class~=not-prose], [class~=not-prose] *))::after {
|
||
content: "`";
|
||
}
|
||
.prose :where(a code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(h1 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(h2 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
font-size: 0.875em;
|
||
}
|
||
.prose :where(h3 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
font-size: 0.9em;
|
||
}
|
||
.prose :where(h4 code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(blockquote code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(thead th code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: inherit;
|
||
}
|
||
.prose :where(pre):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-pre-code);
|
||
background-color: var(--tw-prose-pre-bg);
|
||
overflow-x: auto;
|
||
font-weight: 400;
|
||
font-size: 0.875em;
|
||
line-height: 1.7142857;
|
||
margin-top: 1.7142857em;
|
||
margin-bottom: 1.7142857em;
|
||
border-radius: 0.375rem;
|
||
padding-top: 0.8571429em;
|
||
padding-right: 1.1428571em;
|
||
padding-bottom: 0.8571429em;
|
||
padding-left: 1.1428571em;
|
||
}
|
||
.prose :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
background-color: transparent;
|
||
border-width: 0;
|
||
border-radius: 0;
|
||
padding: 0;
|
||
font-weight: inherit;
|
||
color: inherit;
|
||
font-size: inherit;
|
||
font-family: inherit;
|
||
line-height: inherit;
|
||
}
|
||
.prose :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *))::before {
|
||
content: none;
|
||
}
|
||
.prose :where(pre code):not(:where([class~=not-prose], [class~=not-prose] *))::after {
|
||
content: none;
|
||
}
|
||
.prose :where(table):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
width: 100%;
|
||
table-layout: auto;
|
||
text-align: left;
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
font-size: 0.875em;
|
||
line-height: 1.7142857;
|
||
}
|
||
.prose :where(thead):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
border-bottom-width: 1px;
|
||
border-bottom-color: var(--tw-prose-th-borders);
|
||
}
|
||
.prose :where(thead th):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-headings);
|
||
font-weight: 600;
|
||
vertical-align: bottom;
|
||
padding-right: 0.5714286em;
|
||
padding-bottom: 0.5714286em;
|
||
padding-left: 0.5714286em;
|
||
}
|
||
.prose :where(tbody tr):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
border-bottom-width: 1px;
|
||
border-bottom-color: var(--tw-prose-td-borders);
|
||
}
|
||
.prose :where(tbody tr:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
border-bottom-width: 0;
|
||
}
|
||
.prose :where(tbody td):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
vertical-align: baseline;
|
||
}
|
||
.prose :where(tfoot):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
border-top-width: 1px;
|
||
border-top-color: var(--tw-prose-th-borders);
|
||
}
|
||
.prose :where(tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
vertical-align: top;
|
||
}
|
||
.prose :where(figure > *):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
}
|
||
.prose :where(figcaption):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
color: var(--tw-prose-captions);
|
||
font-size: 0.875em;
|
||
line-height: 1.4285714;
|
||
margin-top: 0.8571429em;
|
||
}
|
||
.prose {
|
||
--tw-prose-body: #374151;
|
||
--tw-prose-headings: #111827;
|
||
--tw-prose-lead: #4b5563;
|
||
--tw-prose-links: #111827;
|
||
--tw-prose-bold: #111827;
|
||
--tw-prose-counters: #6b7280;
|
||
--tw-prose-bullets: #d1d5db;
|
||
--tw-prose-hr: #e5e7eb;
|
||
--tw-prose-quotes: #111827;
|
||
--tw-prose-quote-borders: #e5e7eb;
|
||
--tw-prose-captions: #6b7280;
|
||
--tw-prose-kbd: #111827;
|
||
--tw-prose-kbd-shadows: 17 24 39;
|
||
--tw-prose-code: #111827;
|
||
--tw-prose-pre-code: #e5e7eb;
|
||
--tw-prose-pre-bg: #1f2937;
|
||
--tw-prose-th-borders: #d1d5db;
|
||
--tw-prose-td-borders: #e5e7eb;
|
||
--tw-prose-invert-body: #d1d5db;
|
||
--tw-prose-invert-headings: #fff;
|
||
--tw-prose-invert-lead: #9ca3af;
|
||
--tw-prose-invert-links: #fff;
|
||
--tw-prose-invert-bold: #fff;
|
||
--tw-prose-invert-counters: #9ca3af;
|
||
--tw-prose-invert-bullets: #4b5563;
|
||
--tw-prose-invert-hr: #374151;
|
||
--tw-prose-invert-quotes: #f3f4f6;
|
||
--tw-prose-invert-quote-borders: #374151;
|
||
--tw-prose-invert-captions: #9ca3af;
|
||
--tw-prose-invert-kbd: #fff;
|
||
--tw-prose-invert-kbd-shadows: 255 255 255;
|
||
--tw-prose-invert-code: #fff;
|
||
--tw-prose-invert-pre-code: #d1d5db;
|
||
--tw-prose-invert-pre-bg: rgba(0, 0, 0, 0.5);
|
||
--tw-prose-invert-th-borders: #4b5563;
|
||
--tw-prose-invert-td-borders: #374151;
|
||
font-size: 1rem;
|
||
line-height: 1.75;
|
||
}
|
||
.prose :where(picture > img):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0;
|
||
margin-bottom: 0;
|
||
}
|
||
.prose :where(video):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
}
|
||
.prose :where(li):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0.5em;
|
||
margin-bottom: 0.5em;
|
||
}
|
||
.prose :where(ol > li):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
padding-left: 0.375em;
|
||
}
|
||
.prose :where(ul > li):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
padding-left: 0.375em;
|
||
}
|
||
.prose :where(.prose > ul > li p):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0.75em;
|
||
margin-bottom: 0.75em;
|
||
}
|
||
.prose :where(.prose > ul > li > *:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 1.25em;
|
||
}
|
||
.prose :where(.prose > ul > li > *:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-bottom: 1.25em;
|
||
}
|
||
.prose :where(.prose > ol > li > *:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 1.25em;
|
||
}
|
||
.prose :where(.prose > ol > li > *:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-bottom: 1.25em;
|
||
}
|
||
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0.75em;
|
||
margin-bottom: 0.75em;
|
||
}
|
||
.prose :where(dl):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 1.25em;
|
||
margin-bottom: 1.25em;
|
||
}
|
||
.prose :where(dd):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0.5em;
|
||
padding-left: 1.625em;
|
||
}
|
||
.prose :where(hr + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0;
|
||
}
|
||
.prose :where(h2 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0;
|
||
}
|
||
.prose :where(h3 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0;
|
||
}
|
||
.prose :where(h4 + *):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0;
|
||
}
|
||
.prose :where(thead th:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
padding-left: 0;
|
||
}
|
||
.prose :where(thead th:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
padding-right: 0;
|
||
}
|
||
.prose :where(tbody td, tfoot td):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
padding-top: 0.5714286em;
|
||
padding-right: 0.5714286em;
|
||
padding-bottom: 0.5714286em;
|
||
padding-left: 0.5714286em;
|
||
}
|
||
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
padding-left: 0;
|
||
}
|
||
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
padding-right: 0;
|
||
}
|
||
.prose :where(figure):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 2em;
|
||
margin-bottom: 2em;
|
||
}
|
||
.prose :where(.prose > :first-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-top: 0;
|
||
}
|
||
.prose :where(.prose > :last-child):not(:where([class~=not-prose], [class~=not-prose] *)) {
|
||
margin-bottom: 0;
|
||
}
|
||
.sr-only {
|
||
position: absolute;
|
||
width: 1px;
|
||
height: 1px;
|
||
padding: 0;
|
||
margin: -1px;
|
||
overflow: hidden;
|
||
clip: rect(0, 0, 0, 0);
|
||
white-space: nowrap;
|
||
border-width: 0;
|
||
}
|
||
.static {
|
||
position: static;
|
||
}
|
||
.absolute {
|
||
position: absolute;
|
||
}
|
||
.relative {
|
||
position: relative;
|
||
}
|
||
.sticky {
|
||
position: sticky;
|
||
}
|
||
.bottom-0 {
|
||
bottom: 0px;
|
||
}
|
||
.left-0 {
|
||
left: 0px;
|
||
}
|
||
.top-0 {
|
||
top: 0px;
|
||
}
|
||
.top-8 {
|
||
top: 2rem;
|
||
}
|
||
.top-full {
|
||
top: 100%;
|
||
}
|
||
.isolate {
|
||
isolation: isolate;
|
||
}
|
||
.z-10 {
|
||
z-index: 10;
|
||
}
|
||
.z-20 {
|
||
z-index: 20;
|
||
}
|
||
.z-30 {
|
||
z-index: 30;
|
||
}
|
||
.z-50 {
|
||
z-index: 50;
|
||
}
|
||
.col-span-2 {
|
||
grid-column: span 2/span 2;
|
||
}
|
||
.col-span-4 {
|
||
grid-column: span 4/span 4;
|
||
}
|
||
.col-span-5 {
|
||
grid-column: span 5/span 5;
|
||
}
|
||
.m-auto {
|
||
margin: auto;
|
||
}
|
||
.mx-auto {
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
.my-4 {
|
||
margin-top: 1rem;
|
||
margin-bottom: 1rem;
|
||
}
|
||
.mb-12 {
|
||
margin-bottom: 3rem;
|
||
}
|
||
.mb-2 {
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
.mb-28 {
|
||
margin-bottom: 7rem;
|
||
}
|
||
.mb-3 {
|
||
margin-bottom: 0.75rem;
|
||
}
|
||
.mb-4 {
|
||
margin-bottom: 1rem;
|
||
}
|
||
.mb-5 {
|
||
margin-bottom: 1.25rem;
|
||
}
|
||
.mb-8 {
|
||
margin-bottom: 2rem;
|
||
}
|
||
.ml-4 {
|
||
margin-left: 1rem;
|
||
}
|
||
.mr-4 {
|
||
margin-right: 1rem;
|
||
}
|
||
.mt-12 {
|
||
margin-top: 3rem;
|
||
}
|
||
.mt-2 {
|
||
margin-top: 0.5rem;
|
||
}
|
||
.mt-4 {
|
||
margin-top: 1rem;
|
||
}
|
||
.mt-6 {
|
||
margin-top: 1.5rem;
|
||
}
|
||
.mt-8 {
|
||
margin-top: 2rem;
|
||
}
|
||
.mt-auto {
|
||
margin-top: auto;
|
||
}
|
||
.inline-block {
|
||
display: inline-block;
|
||
}
|
||
.flex {
|
||
display: flex;
|
||
}
|
||
.inline-flex {
|
||
display: inline-flex;
|
||
}
|
||
.grid {
|
||
display: grid;
|
||
}
|
||
.hidden {
|
||
display: none;
|
||
}
|
||
.h-16 {
|
||
height: 4rem;
|
||
}
|
||
.h-4 {
|
||
height: 1rem;
|
||
}
|
||
.h-44 {
|
||
height: 11rem;
|
||
}
|
||
.h-5 {
|
||
height: 1.25rem;
|
||
}
|
||
.h-56 {
|
||
height: 14rem;
|
||
}
|
||
.h-full {
|
||
height: 100%;
|
||
}
|
||
.max-h-full {
|
||
max-height: 100%;
|
||
}
|
||
.w-11\/12 {
|
||
width: 91.666667%;
|
||
}
|
||
.w-16 {
|
||
width: 4rem;
|
||
}
|
||
.w-36 {
|
||
width: 9rem;
|
||
}
|
||
.w-4 {
|
||
width: 1rem;
|
||
}
|
||
.w-4\/6 {
|
||
width: 66.666667%;
|
||
}
|
||
.w-5 {
|
||
width: 1.25rem;
|
||
}
|
||
.w-7\/12 {
|
||
width: 58.333333%;
|
||
}
|
||
.w-full {
|
||
width: 100%;
|
||
}
|
||
.min-w-full {
|
||
min-width: 100%;
|
||
}
|
||
.min-w-max {
|
||
min-width: -moz-max-content;
|
||
min-width: max-content;
|
||
}
|
||
.max-w-2xl {
|
||
max-width: 42rem;
|
||
}
|
||
.max-w-6xl {
|
||
max-width: 72rem;
|
||
}
|
||
.max-w-7xl {
|
||
max-width: 80rem;
|
||
}
|
||
.max-w-max {
|
||
max-width: -moz-max-content;
|
||
max-width: max-content;
|
||
}
|
||
.max-w-none {
|
||
max-width: none;
|
||
}
|
||
.max-w-screen-xl {
|
||
max-width: 1280px;
|
||
}
|
||
.flex-1 {
|
||
flex: 1 1 0%;
|
||
}
|
||
.flex-shrink-0 {
|
||
flex-shrink: 0;
|
||
}
|
||
.-rotate-180 {
|
||
--tw-rotate: -180deg;
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
}
|
||
.-skew-x-12 {
|
||
--tw-skew-x: -12deg;
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(-12deg) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
}
|
||
.skew-x-12 {
|
||
--tw-skew-x: 12deg;
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(12deg) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
}
|
||
.transform {
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
}
|
||
.cursor-pointer {
|
||
cursor: pointer;
|
||
}
|
||
.list-disc {
|
||
list-style-type: disc;
|
||
}
|
||
.list-none {
|
||
list-style-type: none;
|
||
}
|
||
.grid-cols-1 {
|
||
grid-template-columns: repeat(1, minmax(0, 1fr));
|
||
}
|
||
.grid-cols-2 {
|
||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||
}
|
||
.grid-cols-4 {
|
||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||
}
|
||
.flex-col {
|
||
flex-direction: column;
|
||
}
|
||
.flex-col-reverse {
|
||
flex-direction: column-reverse;
|
||
}
|
||
.items-start {
|
||
align-items: flex-start;
|
||
}
|
||
.items-center {
|
||
align-items: center;
|
||
}
|
||
.items-baseline {
|
||
align-items: baseline;
|
||
}
|
||
.justify-end {
|
||
justify-content: flex-end;
|
||
}
|
||
.justify-center {
|
||
justify-content: center;
|
||
}
|
||
.justify-between {
|
||
justify-content: space-between;
|
||
}
|
||
.gap-4 {
|
||
gap: 1rem;
|
||
}
|
||
.gap-6 {
|
||
gap: 1.5rem;
|
||
}
|
||
.gap-8 {
|
||
gap: 2rem;
|
||
}
|
||
.gap-x-16 {
|
||
-moz-column-gap: 4rem;
|
||
column-gap: 4rem;
|
||
}
|
||
.gap-x-2 {
|
||
-moz-column-gap: 0.5rem;
|
||
column-gap: 0.5rem;
|
||
}
|
||
.gap-y-4 {
|
||
row-gap: 1rem;
|
||
}
|
||
.gap-y-8 {
|
||
row-gap: 2rem;
|
||
}
|
||
.-space-x-px > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-x-reverse: 0;
|
||
margin-right: calc(-1px * 0);
|
||
margin-right: calc(-1px * var(--tw-space-x-reverse));
|
||
margin-left: calc(-1px * (1 - 0));
|
||
margin-left: calc(-1px * (1 - var(--tw-space-x-reverse)));
|
||
}
|
||
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-x-reverse: 0;
|
||
margin-right: calc(1rem * 0);
|
||
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
||
margin-left: calc(1rem * (1 - 0));
|
||
margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
|
||
}
|
||
.space-y-0 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-y-reverse: 0;
|
||
margin-top: calc(0px * (1 - 0));
|
||
margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
|
||
margin-bottom: calc(0px * 0);
|
||
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
||
}
|
||
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-y-reverse: 0;
|
||
margin-top: calc(0.25rem * (1 - 0));
|
||
margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
|
||
margin-bottom: calc(0.25rem * 0);
|
||
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
||
}
|
||
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-y-reverse: 0;
|
||
margin-top: calc(0.5rem * (1 - 0));
|
||
margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
|
||
margin-bottom: calc(0.5rem * 0);
|
||
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
||
}
|
||
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-y-reverse: 0;
|
||
margin-top: calc(1rem * (1 - 0));
|
||
margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
|
||
margin-bottom: calc(1rem * 0);
|
||
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
||
}
|
||
.overflow-hidden {
|
||
overflow: hidden;
|
||
}
|
||
.overflow-x-hidden {
|
||
overflow-x: hidden;
|
||
}
|
||
.rounded {
|
||
border-radius: 0.25rem;
|
||
}
|
||
.rounded-full {
|
||
border-radius: 9999px;
|
||
}
|
||
.rounded-lg {
|
||
border-radius: 0.5rem;
|
||
}
|
||
.rounded-md {
|
||
border-radius: 0.375rem;
|
||
}
|
||
.border {
|
||
border-width: 1px;
|
||
}
|
||
.border-t {
|
||
border-top-width: 1px;
|
||
}
|
||
.border-black {
|
||
--tw-border-opacity: 1;
|
||
border-color: rgba(0, 0, 0,1);
|
||
border-color: rgba(0, 0, 0,var(--tw-border-opacity));
|
||
}
|
||
.border-gray-200 {
|
||
--tw-border-opacity: 1;
|
||
border-color: rgba(229, 231, 235,1);
|
||
border-color: rgba(229, 231, 235,var(--tw-border-opacity));
|
||
}
|
||
.border-gray-300 {
|
||
--tw-border-opacity: 1;
|
||
border-color: rgba(209, 213, 219,1);
|
||
border-color: rgba(209, 213, 219,var(--tw-border-opacity));
|
||
}
|
||
.border-indigo-500 {
|
||
--tw-border-opacity: 1;
|
||
border-color: rgba(99, 102, 241,1);
|
||
border-color: rgba(99, 102, 241,var(--tw-border-opacity));
|
||
}
|
||
.border-white {
|
||
--tw-border-opacity: 1;
|
||
border-color: rgba(255, 255, 255,1);
|
||
border-color: rgba(255, 255, 255,var(--tw-border-opacity));
|
||
}
|
||
.border-yellow-500 {
|
||
--tw-border-opacity: 1;
|
||
border-color: rgba(250, 204, 21,1);
|
||
border-color: rgba(250, 204, 21,var(--tw-border-opacity));
|
||
}
|
||
.bg-blue-50 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(218, 223, 227,1);
|
||
background-color: rgba(218, 223, 227,var(--tw-bg-opacity));
|
||
}
|
||
.bg-blue-500 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(10, 39, 68,1);
|
||
background-color: rgba(10, 39, 68,var(--tw-bg-opacity));
|
||
}
|
||
.bg-blue-600 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(11, 33, 56,1);
|
||
background-color: rgba(11, 33, 56,var(--tw-bg-opacity));
|
||
}
|
||
.bg-gray-100 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(243, 244, 246,1);
|
||
background-color: rgba(243, 244, 246,var(--tw-bg-opacity));
|
||
}
|
||
.bg-gray-200 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(229, 231, 235,1);
|
||
background-color: rgba(229, 231, 235,var(--tw-bg-opacity));
|
||
}
|
||
.bg-green-400 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(52, 211, 153,1);
|
||
background-color: rgba(52, 211, 153,var(--tw-bg-opacity));
|
||
}
|
||
.bg-indigo-50 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(238, 242, 255,1);
|
||
background-color: rgba(238, 242, 255,var(--tw-bg-opacity));
|
||
}
|
||
.bg-red-500 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(192, 0, 0,1);
|
||
background-color: rgba(192, 0, 0,var(--tw-bg-opacity));
|
||
}
|
||
.bg-white {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(255, 255, 255,1);
|
||
background-color: rgba(255, 255, 255,var(--tw-bg-opacity));
|
||
}
|
||
.bg-opacity-50 {
|
||
--tw-bg-opacity: 0.5;
|
||
}
|
||
.bg-gradient-to-r {
|
||
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
||
}
|
||
.from-white {
|
||
--tw-gradient-from: #fff var(--tw-gradient-from-position);
|
||
--tw-gradient-to: rgba(255, 255, 255, 0) var(--tw-gradient-to-position);
|
||
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
||
}
|
||
.via-transparent {
|
||
--tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
|
||
--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
|
||
}
|
||
.to-white {
|
||
--tw-gradient-to: #fff var(--tw-gradient-to-position);
|
||
}
|
||
.bg-cover {
|
||
background-size: cover;
|
||
}
|
||
.bg-top {
|
||
background-position: top;
|
||
}
|
||
.object-contain {
|
||
-o-object-fit: contain;
|
||
object-fit: contain;
|
||
}
|
||
.object-cover {
|
||
-o-object-fit: cover;
|
||
object-fit: cover;
|
||
}
|
||
.object-center {
|
||
-o-object-position: center;
|
||
object-position: center;
|
||
}
|
||
.object-left-top {
|
||
-o-object-position: left top;
|
||
object-position: left top;
|
||
}
|
||
.object-top {
|
||
-o-object-position: top;
|
||
object-position: top;
|
||
}
|
||
.p-2 {
|
||
padding: 0.5rem;
|
||
}
|
||
.p-3 {
|
||
padding: 0.75rem;
|
||
}
|
||
.p-4 {
|
||
padding: 1rem;
|
||
}
|
||
.px-2 {
|
||
padding-left: 0.5rem;
|
||
padding-right: 0.5rem;
|
||
}
|
||
.px-4 {
|
||
padding-left: 1rem;
|
||
padding-right: 1rem;
|
||
}
|
||
.px-5 {
|
||
padding-left: 1.25rem;
|
||
padding-right: 1.25rem;
|
||
}
|
||
.py-12 {
|
||
padding-top: 3rem;
|
||
padding-bottom: 3rem;
|
||
}
|
||
.py-16 {
|
||
padding-top: 4rem;
|
||
padding-bottom: 4rem;
|
||
}
|
||
.py-2 {
|
||
padding-top: 0.5rem;
|
||
padding-bottom: 0.5rem;
|
||
}
|
||
.py-4 {
|
||
padding-top: 1rem;
|
||
padding-bottom: 1rem;
|
||
}
|
||
.py-5 {
|
||
padding-top: 1.25rem;
|
||
padding-bottom: 1.25rem;
|
||
}
|
||
.py-8 {
|
||
padding-top: 2rem;
|
||
padding-bottom: 2rem;
|
||
}
|
||
.pb-12 {
|
||
padding-bottom: 3rem;
|
||
}
|
||
.pb-16 {
|
||
padding-bottom: 4rem;
|
||
}
|
||
.pb-28 {
|
||
padding-bottom: 7rem;
|
||
}
|
||
.pb-8 {
|
||
padding-bottom: 2rem;
|
||
}
|
||
.pl-8 {
|
||
padding-left: 2rem;
|
||
}
|
||
.pt-1 {
|
||
padding-top: 0.25rem;
|
||
}
|
||
.pt-10 {
|
||
padding-top: 2.5rem;
|
||
}
|
||
.pt-12 {
|
||
padding-top: 3rem;
|
||
}
|
||
.pt-24 {
|
||
padding-top: 6rem;
|
||
}
|
||
.pt-28 {
|
||
padding-top: 7rem;
|
||
}
|
||
.pt-36 {
|
||
padding-top: 9rem;
|
||
}
|
||
.pt-8 {
|
||
padding-top: 2rem;
|
||
}
|
||
.text-left {
|
||
text-align: left;
|
||
}
|
||
.text-center {
|
||
text-align: center;
|
||
}
|
||
.text-2xl {
|
||
font-size: 1.5rem;
|
||
line-height: 2rem;
|
||
}
|
||
.text-3xl {
|
||
font-size: 1.875rem;
|
||
line-height: 2.25rem;
|
||
}
|
||
.text-4xl {
|
||
font-size: 2.25rem;
|
||
line-height: 2.5rem;
|
||
}
|
||
.text-base {
|
||
font-size: 1rem;
|
||
line-height: 1.5rem;
|
||
}
|
||
.text-lg {
|
||
font-size: 1.125rem;
|
||
line-height: 1.75rem;
|
||
}
|
||
.text-sm {
|
||
font-size: 0.875rem;
|
||
line-height: 1.25rem;
|
||
}
|
||
.text-xl {
|
||
font-size: 1.25rem;
|
||
line-height: 1.75rem;
|
||
}
|
||
.text-xs {
|
||
font-size: 0.75rem;
|
||
line-height: 1rem;
|
||
}
|
||
.font-black {
|
||
font-weight: 900;
|
||
}
|
||
.font-bold {
|
||
font-weight: 700;
|
||
}
|
||
.font-medium {
|
||
font-weight: 500;
|
||
}
|
||
.font-normal {
|
||
font-weight: 400;
|
||
}
|
||
.font-semibold {
|
||
font-weight: 600;
|
||
}
|
||
.uppercase {
|
||
text-transform: uppercase;
|
||
}
|
||
.capitalize {
|
||
text-transform: capitalize;
|
||
}
|
||
.leading-6 {
|
||
line-height: 1.5rem;
|
||
}
|
||
.tracking-tight {
|
||
letter-spacing: -0.025em;
|
||
}
|
||
.text-black {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(0, 0, 0,1);
|
||
color: rgba(0, 0, 0,var(--tw-text-opacity));
|
||
}
|
||
.text-blue-500 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(10, 39, 68,1);
|
||
color: rgba(10, 39, 68,var(--tw-text-opacity));
|
||
}
|
||
.text-gray-400 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(156, 163, 175,1);
|
||
color: rgba(156, 163, 175,var(--tw-text-opacity));
|
||
}
|
||
.text-gray-500 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(107, 114, 128,1);
|
||
color: rgba(107, 114, 128,var(--tw-text-opacity));
|
||
}
|
||
.text-gray-600 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(75, 85, 99,1);
|
||
color: rgba(75, 85, 99,var(--tw-text-opacity));
|
||
}
|
||
.text-gray-700 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(55, 65, 81,1);
|
||
color: rgba(55, 65, 81,var(--tw-text-opacity));
|
||
}
|
||
.text-gray-900 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(17, 24, 39,1);
|
||
color: rgba(17, 24, 39,var(--tw-text-opacity));
|
||
}
|
||
.text-indigo-600 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(79, 70, 229,1);
|
||
color: rgba(79, 70, 229,var(--tw-text-opacity));
|
||
}
|
||
.text-inherit {
|
||
color: inherit;
|
||
}
|
||
.text-purple-900 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(67, 20, 44,1);
|
||
color: rgba(67, 20, 44,var(--tw-text-opacity));
|
||
}
|
||
.text-red-500 {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(192, 0, 0,1);
|
||
color: rgba(192, 0, 0,var(--tw-text-opacity));
|
||
}
|
||
.text-white {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(255, 255, 255,1);
|
||
color: rgba(255, 255, 255,var(--tw-text-opacity));
|
||
}
|
||
.underline {
|
||
text-decoration-line: underline;
|
||
}
|
||
.antialiased {
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
}
|
||
.shadow {
|
||
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
|
||
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
||
box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
|
||
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
|
||
}
|
||
.shadow-lg {
|
||
--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
|
||
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
||
box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
|
||
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
|
||
}
|
||
.shadow-sm {
|
||
--tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
||
box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||
box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
|
||
}
|
||
.outline {
|
||
outline-style: solid;
|
||
}
|
||
.transition-colors {
|
||
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||
transition-duration: 150ms;
|
||
}
|
||
.transition-transform {
|
||
transition-property: transform;
|
||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||
transition-duration: 150ms;
|
||
}
|
||
.duration-300 {
|
||
transition-duration: 300ms;
|
||
}
|
||
.duration-700 {
|
||
transition-duration: 700ms;
|
||
}
|
||
.ease-in-out {
|
||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||
}
|
||
/* Pinegrow generated Design Panel Extra Rules Begin */
|
||
h1, h2, h3, h4 {
|
||
font-family: "Montserrat", sans-serif;
|
||
}
|
||
body, html {
|
||
min-height: 100vh;
|
||
}
|
||
/* Pinegrow generated Design Panel Extra Rules End */
|
||
.hover\:-translate-y-2:hover {
|
||
--tw-translate-y: -0.5rem;
|
||
transform: translate(var(--tw-translate-x), -0.5rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
}
|
||
.hover\:bg-gray-200:hover {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(229, 231, 235,1);
|
||
background-color: rgba(229, 231, 235,var(--tw-bg-opacity));
|
||
}
|
||
.hover\:bg-gray-50:hover {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(249, 250, 251,1);
|
||
background-color: rgba(249, 250, 251,var(--tw-bg-opacity));
|
||
}
|
||
.hover\:text-black:hover {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(0, 0, 0,1);
|
||
color: rgba(0, 0, 0,var(--tw-text-opacity));
|
||
}
|
||
.hover\:text-blue-100:hover {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(175, 182, 193,1);
|
||
color: rgba(175, 182, 193,var(--tw-text-opacity));
|
||
}
|
||
.hover\:text-yellow-500:hover {
|
||
--tw-text-opacity: 1;
|
||
color: rgba(250, 204, 21,1);
|
||
color: rgba(250, 204, 21,var(--tw-text-opacity));
|
||
}
|
||
.hover\:underline:hover {
|
||
text-decoration-line: underline;
|
||
}
|
||
.hover\:duration-700:hover {
|
||
transition-duration: 700ms;
|
||
}
|
||
.hover\:ease-in-out:hover {
|
||
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
||
}
|
||
.focus\:z-20:focus {
|
||
z-index: 20;
|
||
}
|
||
.group:hover .group-hover\:translate-y-0 {
|
||
--tw-translate-y: 0px;
|
||
transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
}
|
||
@media (prefers-color-scheme: dark) {
|
||
.dark\:bg-gray-900 {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(17, 24, 39,1);
|
||
background-color: rgba(17, 24, 39,var(--tw-bg-opacity));
|
||
}
|
||
}
|
||
@media (min-width: 640px) {
|
||
.sm\:rounded-lg {
|
||
border-radius: 0.5rem;
|
||
}
|
||
.sm\:p-6 {
|
||
padding: 1.5rem;
|
||
}
|
||
.sm\:text-5xl {
|
||
font-size: 3rem;
|
||
line-height: 1;
|
||
}
|
||
}
|
||
@media (min-width: 768px) {
|
||
.md\:absolute {
|
||
position: absolute;
|
||
}
|
||
.md\:left-0 {
|
||
left: 0px;
|
||
}
|
||
.md\:my-4 {
|
||
margin-top: 1rem;
|
||
margin-bottom: 1rem;
|
||
}
|
||
.md\:mb-14 {
|
||
margin-bottom: 3.5rem;
|
||
}
|
||
.md\:mt-4 {
|
||
margin-top: 1rem;
|
||
}
|
||
.md\:block {
|
||
display: block;
|
||
}
|
||
.md\:flex {
|
||
display: flex;
|
||
}
|
||
.md\:grid {
|
||
display: grid;
|
||
}
|
||
.md\:h-96 {
|
||
height: 24rem;
|
||
}
|
||
.md\:h-full {
|
||
height: 100%;
|
||
}
|
||
.md\:h-\[1080px\] {
|
||
height: 1080px;
|
||
}
|
||
.md\:h-\[720px\] {
|
||
height: 720px;
|
||
}
|
||
.md\:h-\[360px\] {
|
||
height: 360px;
|
||
}
|
||
.md\:w-1\/2 {
|
||
width: 50%;
|
||
}
|
||
.md\:w-6\/12 {
|
||
width: 50%;
|
||
}
|
||
.md\:w-max {
|
||
width: -moz-max-content;
|
||
width: max-content;
|
||
}
|
||
.md\:max-w-7xl {
|
||
max-width: 80rem;
|
||
}
|
||
.md\:max-w-md {
|
||
max-width: 28rem;
|
||
}
|
||
.md\:grid-cols-2 {
|
||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||
}
|
||
.md\:grid-cols-3 {
|
||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||
}
|
||
.md\:flex-row {
|
||
flex-direction: row;
|
||
}
|
||
.md\:flex-row-reverse {
|
||
flex-direction: row-reverse;
|
||
}
|
||
.md\:items-end {
|
||
align-items: flex-end;
|
||
}
|
||
.md\:gap-2 {
|
||
gap: 0.5rem;
|
||
}
|
||
.md\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-x-reverse: 0;
|
||
margin-right: calc(1rem * 0);
|
||
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
||
margin-left: calc(1rem * (1 - 0));
|
||
margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
|
||
}
|
||
.md\:p-12 {
|
||
padding: 3rem;
|
||
}
|
||
.md\:px-4 {
|
||
padding-left: 1rem;
|
||
padding-right: 1rem;
|
||
}
|
||
.md\:px-8 {
|
||
padding-left: 2rem;
|
||
padding-right: 2rem;
|
||
}
|
||
.md\:py-8 {
|
||
padding-top: 2rem;
|
||
padding-bottom: 2rem;
|
||
}
|
||
.md\:text-2xl {
|
||
font-size: 1.5rem;
|
||
line-height: 2rem;
|
||
}
|
||
.md\:text-4xl {
|
||
font-size: 2.25rem;
|
||
line-height: 2.5rem;
|
||
}
|
||
.md\:text-lg {
|
||
font-size: 1.125rem;
|
||
line-height: 1.75rem;
|
||
}
|
||
.md\:text-xl {
|
||
font-size: 1.25rem;
|
||
line-height: 1.75rem;
|
||
}
|
||
.md\:font-semibold {
|
||
font-weight: 600;
|
||
}
|
||
}
|
||
@media (min-width: 1024px) {
|
||
.lg\:relative {
|
||
position: relative;
|
||
}
|
||
.lg\:-top-32 {
|
||
top: -8rem;
|
||
}
|
||
.lg\:left-4 {
|
||
left: 1rem;
|
||
}
|
||
.lg\:left-8 {
|
||
left: 2rem;
|
||
}
|
||
.lg\:col-span-2 {
|
||
grid-column: span 2/span 2;
|
||
}
|
||
.lg\:col-span-3 {
|
||
grid-column: span 3/span 3;
|
||
}
|
||
.lg\:mx-auto {
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
.lg\:mb-0 {
|
||
margin-bottom: 0px;
|
||
}
|
||
.lg\:mr-2 {
|
||
margin-right: 0.5rem;
|
||
}
|
||
.lg\:mt-0 {
|
||
margin-top: 0px;
|
||
}
|
||
.lg\:block {
|
||
display: block;
|
||
}
|
||
.lg\:flex {
|
||
display: flex;
|
||
}
|
||
.lg\:grid {
|
||
display: grid;
|
||
}
|
||
.lg\:hidden {
|
||
display: none;
|
||
}
|
||
.lg\:h-28 {
|
||
height: 7rem;
|
||
}
|
||
.lg\:h-32 {
|
||
height: 8rem;
|
||
}
|
||
.lg\:h-96 {
|
||
height: 24rem;
|
||
}
|
||
.lg\:h-full {
|
||
height: 100%;
|
||
}
|
||
.lg\:h-\[720px\] {
|
||
height: 720px;
|
||
}
|
||
.lg\:w-2\/4 {
|
||
width: 50%;
|
||
}
|
||
.lg\:w-32 {
|
||
width: 8rem;
|
||
}
|
||
.lg\:max-w-7xl {
|
||
max-width: 80rem;
|
||
}
|
||
.lg\:max-w-screen-2xl {
|
||
max-width: 1536px;
|
||
}
|
||
.lg\:translate-y-full {
|
||
--tw-translate-y: 100%;
|
||
transform: translate(var(--tw-translate-x), 100%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
||
}
|
||
.lg\:grid-cols-2 {
|
||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||
}
|
||
.lg\:grid-cols-3 {
|
||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||
}
|
||
.lg\:grid-cols-4 {
|
||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||
}
|
||
.lg\:grid-cols-5 {
|
||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||
}
|
||
.lg\:grid-cols-6 {
|
||
grid-template-columns: repeat(6, minmax(0, 1fr));
|
||
}
|
||
.lg\:flex-col {
|
||
flex-direction: column;
|
||
}
|
||
.lg\:items-center {
|
||
align-items: center;
|
||
}
|
||
.lg\:items-stretch {
|
||
align-items: stretch;
|
||
}
|
||
.lg\:justify-end {
|
||
justify-content: flex-end;
|
||
}
|
||
.lg\:justify-between {
|
||
justify-content: space-between;
|
||
}
|
||
.lg\:gap-8 {
|
||
gap: 2rem;
|
||
}
|
||
.lg\:gap-x-4 {
|
||
-moz-column-gap: 1rem;
|
||
column-gap: 1rem;
|
||
}
|
||
.lg\:gap-y-0 {
|
||
row-gap: 0px;
|
||
}
|
||
.lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-x-reverse: 0;
|
||
margin-right: calc(1.25rem * 0);
|
||
margin-right: calc(1.25rem * var(--tw-space-x-reverse));
|
||
margin-left: calc(1.25rem * (1 - 0));
|
||
margin-left: calc(1.25rem * (1 - var(--tw-space-x-reverse)));
|
||
}
|
||
.lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-y-reverse: 0;
|
||
margin-top: calc(0px * (1 - 0));
|
||
margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
|
||
margin-bottom: calc(0px * 0);
|
||
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
||
}
|
||
.lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) {
|
||
--tw-space-y-reverse: 0;
|
||
margin-top: calc(1.5rem * (1 - 0));
|
||
margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
|
||
margin-bottom: calc(1.5rem * 0);
|
||
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
||
}
|
||
.lg\:rounded-md {
|
||
border-radius: 0.375rem;
|
||
}
|
||
.lg\:bg-white {
|
||
--tw-bg-opacity: 1;
|
||
background-color: rgba(255, 255, 255,1);
|
||
background-color: rgba(255, 255, 255,var(--tw-bg-opacity));
|
||
}
|
||
.lg\:p-0 {
|
||
padding: 0px;
|
||
}
|
||
.lg\:p-28 {
|
||
padding: 7rem;
|
||
}
|
||
.lg\:px-0 {
|
||
padding-left: 0px;
|
||
padding-right: 0px;
|
||
}
|
||
.lg\:px-16 {
|
||
padding-left: 4rem;
|
||
padding-right: 4rem;
|
||
}
|
||
.lg\:px-4 {
|
||
padding-left: 1rem;
|
||
padding-right: 1rem;
|
||
}
|
||
.lg\:py-0 {
|
||
padding-top: 0px;
|
||
padding-bottom: 0px;
|
||
}
|
||
.lg\:py-16 {
|
||
padding-top: 4rem;
|
||
padding-bottom: 4rem;
|
||
}
|
||
.lg\:py-28 {
|
||
padding-top: 7rem;
|
||
padding-bottom: 7rem;
|
||
}
|
||
.lg\:py-4 {
|
||
padding-top: 1rem;
|
||
padding-bottom: 1rem;
|
||
}
|
||
.lg\:py-5 {
|
||
padding-top: 1.25rem;
|
||
padding-bottom: 1.25rem;
|
||
}
|
||
.lg\:py-8 {
|
||
padding-top: 2rem;
|
||
padding-bottom: 2rem;
|
||
}
|
||
.lg\:pl-4 {
|
||
padding-left: 1rem;
|
||
}
|
||
.lg\:pr-32 {
|
||
padding-right: 8rem;
|
||
}
|
||
.lg\:pr-8 {
|
||
padding-right: 2rem;
|
||
}
|
||
.lg\:pt-28 {
|
||
padding-top: 7rem;
|
||
}
|
||
.lg\:text-2xl {
|
||
font-size: 1.5rem;
|
||
line-height: 2rem;
|
||
}
|
||
.lg\:text-4xl {
|
||
font-size: 2.25rem;
|
||
line-height: 2.5rem;
|
||
}
|
||
.lg\:text-5xl {
|
||
font-size: 3rem;
|
||
line-height: 1;
|
||
}
|
||
.lg\:text-6xl {
|
||
font-size: 3.75rem;
|
||
line-height: 1;
|
||
}
|
||
}
|
||
@media (min-width: 1280px) {
|
||
.xl\:max-w-7xl {
|
||
max-width: 80rem;
|
||
}
|
||
.xl\:pr-16 {
|
||
padding-right: 4rem;
|
||
}
|
||
.xl\:text-center {
|
||
text-align: center;
|
||
}
|
||
}
|
||
@media (min-width: 1536px) {
|
||
.\32 xl\:mx-auto {
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
.\32 xl\:ml-auto {
|
||
margin-left: auto;
|
||
}
|
||
.\32 xl\:mr-auto {
|
||
margin-right: auto;
|
||
}
|
||
.\32 xl\:max-w-screen-2xl {
|
||
max-width: 1536px;
|
||
}
|
||
.\32 xl\:pl-44 {
|
||
padding-left: 11rem;
|
||
}
|
||
.\32 xl\:pr-44 {
|
||
padding-right: 11rem;
|
||
}
|
||
.\32 xl\:text-right {
|
||
text-align: right;
|
||
}
|
||
.\32 xl\:capitalize {
|
||
text-transform: capitalize;
|
||
}
|
||
}
|
||
.toggle-menu {
|
||
width: 30px;
|
||
height: 50px;
|
||
position: relative;
|
||
z-index: 1000;
|
||
}
|
||
.toggle-menu i {
|
||
position: absolute;
|
||
height: 2px;
|
||
background: #2f2057;
|
||
background: #040e18;
|
||
background: var(--primary-900);
|
||
width: 30px;
|
||
transition: all 0.3s;
|
||
}
|
||
.toggle-menu i:nth-child(1) {
|
||
top: 16px;
|
||
}
|
||
.toggle-menu i:nth-child(2) {
|
||
top: 24px;
|
||
}
|
||
.toggle-menu i:nth-child(3) {
|
||
top: 32px;
|
||
}
|
||
.toggle-menu.active i:nth-child(1) {
|
||
top: 25px;
|
||
transform: rotateZ(45deg);
|
||
}
|
||
.toggle-menu.active i:nth-child(2) {
|
||
background: transparent;
|
||
display: none;
|
||
}
|
||
.toggle-menu.active i:nth-child(3) {
|
||
top: 25px;
|
||
transform: rotateZ(-45deg);
|
||
}
|
||
#menu_wrapper {
|
||
height: 0px;
|
||
transition: height 600ms ease-in-out;
|
||
}
|
||
#menu_wrapper.expand {
|
||
height: 100vh;
|
||
}
|
||
@media screen and (min-width: 1024px) {
|
||
#menu_wrapper {
|
||
height: auto;
|
||
}
|
||
#menu_wrapper.expand {
|
||
height: auto;
|
||
}
|
||
}
|
||
#main_menu li a:after {
|
||
background: none repeat scroll 0 0 transparent;
|
||
bottom: 0;
|
||
content: "";
|
||
display: block;
|
||
height: 2px;
|
||
left: 50%;
|
||
position: absolute;
|
||
background: #fff;
|
||
transition: width 0.3s ease 0s, left 0.3s ease 0s;
|
||
width: 0;
|
||
}
|
||
#main_menu li a:hover:after {
|
||
width: 100%;
|
||
left: 0;
|
||
}
|
||
.active-highlight {
|
||
color: #ffcc33;
|
||
-webkit-text-decoration: underline;
|
||
text-decoration: underline;
|
||
font-weight: bold;
|
||
}
|
||
body.noScroll {
|
||
height: 100%;
|
||
overflow: hidden;
|
||
}
|
||
#footer li a {
|
||
position: relative;
|
||
}
|
||
#footer li a:after {
|
||
background: none repeat scroll 0 0 transparent;
|
||
bottom: 0;
|
||
content: "";
|
||
display: block;
|
||
height: 2px;
|
||
left: 50%;
|
||
position: absolute;
|
||
background: #0a2744;
|
||
background: var(--primary-500);
|
||
transition: width 0.3s ease 0s, left 0.3s ease 0s;
|
||
width: 0;
|
||
}
|
||
#footer li a:hover:after {
|
||
width: 100%;
|
||
left: 0;
|
||
}
|
||
/* HERO SECTION */
|
||
#hero {
|
||
height: 100vh;
|
||
background-image: url(../../assets/images/bgs/team_of_pharmacists.jpeg);
|
||
background-size: cover;
|
||
background-repeat: no-repeat;
|
||
background-position: bottom;
|
||
background-color: var(--white-500);
|
||
background-blend-mode: multiply;
|
||
}
|
||
@media screen and (min-width: 1024px) {
|
||
#hero {
|
||
height: 90vh;
|
||
background-position: center center;
|
||
}
|
||
}
|
||
#leon-difference_1 {
|
||
background-image: url(../../assets/images/bgs/pharmacist_smiling.jpeg);
|
||
}
|
||
#leon-difference_2 {
|
||
background-image: url(../../assets/images/bgs/hero-bg.jpeg);
|
||
filter: brightness(1.1);
|
||
}
|
||
/* TEMPLATE HEADERS */
|
||
.page-header {
|
||
background-image: url("../../assets/images/bgs/page-bg.jpeg");
|
||
background-size: cover;
|
||
background-position: bottom 25% center;
|
||
background-color: #858fa0;
|
||
background-color: var(--primary-200);
|
||
background-blend-mode: multiply;
|
||
}
|
||
.services-header {
|
||
background-image: url("../../assets/images/bgs/services-bg.jpeg");
|
||
background-size: cover;
|
||
background-position: top 40% center;
|
||
background-color: #858fa0;
|
||
background-color: var(--primary-200);
|
||
background-blend-mode: multiply;
|
||
}
|
||
.category-header {
|
||
background-image: url("../../assets/images/bgs/pharmacist_advising.jpeg");
|
||
background-size: cover;
|
||
background-position: top 60% center;
|
||
background-color: #858fa0;
|
||
background-color: var(--primary-200);
|
||
background-blend-mode: multiply;
|
||
}
|
||
.post-header {
|
||
background-image: url("../../assets/images/bgs/pharmacist_getting_prescription.jpg");
|
||
background-size: cover;
|
||
background-position: center center;
|
||
background-color: #858fa0;
|
||
background-color: var(--primary-200);
|
||
background-blend-mode: multiply;
|
||
}
|