/* @tailwind base; (it clashes with bootstrap styles)*/

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.collapse {
  visibility: collapse !important;
}

.absolute {
  position: absolute !important;
}

.relative {
  position: relative !important;
}

.right-6 {
  right: 1.5rem !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.z-30 {
  z-index: 30 !important;
}

.col-span-2 {
  grid-column: span 2 / span 2 !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-\[15\%\] {
  margin-top: 15% !important;
  margin-bottom: 15% !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-\[2px\] {
  margin-bottom: 2px !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.table {
  display: table !important;
}

.hidden {
  display: none !important;
}

.h-20 {
  height: 5rem !important;
}

.h-24 {
  height: 6rem !important;
}

.h-32 {
  height: 8rem !important;
}

.h-\[100px\] {
  height: 100px !important;
}

.h-\[133px\] {
  height: 133px !important;
}

.h-\[80\%\] {
  height: 80% !important;
}

.h-auto {
  height: auto !important;
}

.h-full {
  height: 100% !important;
}

.max-h-8 {
  max-height: 2rem !important;
}

.min-h-\[700px\] {
  min-height: 700px !important;
}

.min-h-max {
  min-height: -moz-max-content !important;
  min-height: max-content !important;
}

.w-14 {
  width: 3.5rem !important;
}

.w-32 {
  width: 8rem !important;
}

.w-72 {
  width: 18rem !important;
}

.w-\[200px\] {
  width: 200px !important;
}

.w-\[70\%\] {
  width: 70% !important;
}

.w-\[71\%\] {
  width: 71% !important;
}

.w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.w-full {
  width: 100% !important;
}

.min-w-\[50\%\] {
  min-width: 50% !important;
}

.max-w-\[300px\] {
  max-width: 300px !important;
}

.max-w-\[500px\] {
  max-width: 500px !important;
}

.max-w-\[60\%\] {
  max-width: 60% !important;
}

.max-w-\[600px\] {
  max-width: 600px !important;
}

.max-w-\[800px\] {
  max-width: 800px !important;
}

.max-w-fit {
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}

.flex-1 {
  flex: 1 1 0% !important;
}

.basis-1\/4 {
  flex-basis: 25% !important;
}

.basis-1\/5 {
  flex-basis: 20% !important;
}

.basis-2\/4 {
  flex-basis: 50% !important;
}

.basis-2\/5 {
  flex-basis: 40% !important;
}

.basis-3\/5 {
  flex-basis: 60% !important;
}

.table-auto {
  table-layout: auto !important;
}

.table-fixed {
  table-layout: fixed !important;
}

.border-collapse {
  border-collapse: collapse !important;
}

.flex-col {
  flex-direction: column !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.items-center {
  align-items: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-16 {
  gap: 4rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

.gap-8 {
  gap: 2rem !important;
}

.self-end {
  align-self: flex-end !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.text-nowrap {
  text-wrap: nowrap !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.5rem !important;
}

.border {
  border-width: 1px !important;
}

.border-0 {
  border-width: 0px !important;
}

.border-t-4 {
  border-top-width: 4px !important;
}

.border-none {
  border-style: none !important;
}

.border-t-rs-red {
  --tw-border-opacity: 1 !important;
  border-top-color: rgb(239 0 0 / var(--tw-border-opacity)) !important;
}

.bg-\[\#005f69\] {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 95 105 / var(--tw-bg-opacity)) !important;
}

.bg-black {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
}

.bg-blue-100 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity)) !important;
}

.bg-gray-200 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity)) !important;
}

.bg-gray-300 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity)) !important;
}

.bg-green-200 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity)) !important;
}

.bg-green-500 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity)) !important;
}

.bg-pink-800 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(157 23 77 / var(--tw-bg-opacity)) !important;
}

.bg-red-700 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity)) !important;
}

.bg-red-800 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity)) !important;
}

.bg-rs-human-red {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 130 130 / var(--tw-bg-opacity)) !important;
}

.bg-rs-midtone-red {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(160 15 40 / var(--tw-bg-opacity)) !important;
}

.bg-rs-red {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(239 0 0 / var(--tw-bg-opacity)) !important;
}

.bg-slate-300 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity)) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-white {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}

.bg-none {
  background-image: none !important;
}

.object-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-\[0_50\%\] {
  -o-object-position: 0 50% !important;
     object-position: 0 50% !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-1\.5 {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-\[15px\] {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

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

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

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

.font-noto {
  font-family: Noto Sans, sans-serif !important;
}

.font-oswald {
  font-family: Oswald, sans-serif !important;
}

.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}

.text-5xl {
  font-size: 3rem !important;
  line-height: 1 !important;
}

.text-6xl {
  font-size: 3.75rem !important;
  line-height: 1 !important;
}

.text-7xl {
  font-size: 4.5rem !important;
  line-height: 1 !important;
}

.text-\[0\.9em\] {
  font-size: 0.9em !important;
}

.text-\[2\.8rem\] {
  font-size: 2.8rem !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-medium {
  font-weight: 500 !important;
}

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

.tracking-\[0\.08em\] {
  letter-spacing: 0.08em !important;
}

.text-blue-400 {
  --tw-text-opacity: 1 !important;
  color: rgb(96 165 250 / var(--tw-text-opacity)) !important;
}

.text-blue-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(59 130 246 / var(--tw-text-opacity)) !important;
}

.text-blue-900 {
  --tw-text-opacity: 1 !important;
  color: rgb(30 58 138 / var(--tw-text-opacity)) !important;
}

.text-gray-200 {
  --tw-text-opacity: 1 !important;
  color: rgb(229 231 235 / var(--tw-text-opacity)) !important;
}

.text-gray-400 {
  --tw-text-opacity: 1 !important;
  color: rgb(156 163 175 / var(--tw-text-opacity)) !important;
}

.text-gray-600 {
  --tw-text-opacity: 1 !important;
  color: rgb(75 85 99 / var(--tw-text-opacity)) !important;
}

.text-gray-900 {
  --tw-text-opacity: 1 !important;
  color: rgb(17 24 39 / var(--tw-text-opacity)) !important;
}

.text-green-900 {
  --tw-text-opacity: 1 !important;
  color: rgb(20 83 45 / var(--tw-text-opacity)) !important;
}

.text-orange-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(249 115 22 / var(--tw-text-opacity)) !important;
}

.text-red-500 {
  --tw-text-opacity: 1 !important;
  color: rgb(239 68 68 / var(--tw-text-opacity)) !important;
}

.text-red-600 {
  --tw-text-opacity: 1 !important;
  color: rgb(220 38 38 / var(--tw-text-opacity)) !important;
}

.text-rs-blue {
  --tw-text-opacity: 1 !important;
  color: rgb(18 57 135 / var(--tw-text-opacity)) !important;
}

.text-rs-midtone-red {
  --tw-text-opacity: 1 !important;
  color: rgb(160 15 40 / var(--tw-text-opacity)) !important;
}

.text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}

.underline {
  text-decoration-line: underline !important;
}

.no-underline {
  text-decoration-line: none !important;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important;
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

/* ! tailwindcss v3.4.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.
7. Disable tap highlights on iOS
*/

html,
:host {
  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: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
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 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. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. 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-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
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 */
  letter-spacing: 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,
input:where([type='button']),
input:where([type='reset']),
input:where([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;
}

*, ::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: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::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: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --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:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

body {
  background-color: #eeeeee;
  font-family: "Noto Sans", sans-serif;
}

.rs_header {
  padding: 17px;
  background-color: white;
}

span.select2-selection.select2-selection--single {
  border: 1px solid #cccccc;
  padding-top: 4px;
  height: 34px;
}

.tableParc tr td {
  text-align: center;
  font-size: 11px;
}

.backcustomer td{
  background-color: #b8ffc4;
}

.headParc th {
  font-size: 9px;
  background-color: grey;
  color: white;
  text-align: center;
}

#rs_metrobundle_retour_materiels>.form-group {
  display: table;
  width: 90%;
  position: relative;
}

#rs_metrobundle_retour_materiels>.form-group>div {
  display: table-row;
}

#rs_metrobundle_retour_materiels>.form-group>div>div {
  display: table-cell;
}

#rs_metrobundle_retour_materiels a.btn.btn-danger {
  position: absolute;
  right: -98px;
  top: 45px;
}

.statsFournisseurs tr td {
  border: 1px solid #cacaca;
  padding: 1px 5px;
  font-size: 12px;
  text-align: center;
}

.statsFournisseurs tr th {
  border: 1px solid #cacaca;
  padding: 1px 5px;
  font-size: 12px;
  text-align: center;
  background-color: #949494;
  color: white;
}

.formImporter button {
  font-size: 9px;
}

.formImporter {
  float: right;
  background-color: #d8d8d8;
  text-align: center;
  padding: 7px;
  font-size: 10px;
  line-height: 7px;
  margin-bottom: 9px;
}

tr.avenir_order td, tr.avenir_order td a {
  background-color: #563097!important;
  color: white;
}

.stats tr th {
  font-size: 10px;
  text-align: center;
  padding: 6px 1px;
  border: 1px solid #d0d0d0;
  background-color: #949494;
  color: white;
}

select#year {
  margin-bottom: 12px;
  width: 159px;
  padding: 6px;
}

.stats tr td {
  border: 1px solid #e6e6e6;
  font-size: 12px;
  padding: 4px 7px;
  text-align: center;
}

.stats tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.slogan{
  margin-left: 20px;
}

.logo_block_account img.logo_rs {
  max-width: 85px;
}

.logo_block_account a:hover, .logo_block_account a:hover {
  text-decoration: none;
}

.btn-violet:hover {
  color: white;
}

input.search {
  margin-left: 34px;
  width: 100%;
  max-width: 450px;
  padding: 10px;
}

.dejaId{
  cursor:pointer;
}

.connect_links a:active {
  text-decoration: none;
}

.connect_links a {
  color: #3f3f3f;
}

.logoutlink{
  color:#97d4f6;
  font-size: 14px!important;
}

.login_links.pull-right {
  color: #ee1a30;
}

.btn-violet {
  background-color: #573097;
  color: white;
}

.logo_block_account {
  width: 139px;
  text-align: center;
}

.logo_block_account h1 {
  font-size: 14px;
  margin-top: 9px;
  margin-bottom: 5px;
}

.col_rs_home {
  background-image: url(img/bandeau.png);
  background-size: 64%;
  background-repeat: no-repeat;
  background-position-y: -408px;
  background-position-x: 13px;
}

.connect_hover {
  background-color: #563392;
  padding: 14px;
  position: absolute;
  right: 69px;
  top: 52px;
  display:none;
  z-index: 9;
}

a.identifiant_oublie, a.password_oublie {
  font-size: 9px!important;
}

.connect_links a:hover{
  text-decoration: none;
}

input.form-control.btn-violet-co {
  background-color: transparent;
  border: none;
  color: white;
  float: right;
  background-image: url('img/connect_me.png');
  background-repeat: no-repeat;
  background-position: 10px 10px;
}

table.table_login {
  min-width: 244px;
}

.form_login input[type=text]{
  margin-bottom: 10px!important;
}

.form_login input[type=text], .form_login input[type=password] {
  margin: 6px 1px!important;
  border-radius: 0px;
  font-style: italic;
  font-size: 13px;
  width: 100%;
}

input.form-control.btn-violet-co {
  background-color: transparent;
  border: none;
  color: white;
  float: right;
  background-image: url(img/connect_me.png);
  background-repeat: no-repeat;
  background-position-x: 109px;
  padding-right: 35px;
  background-position-y: 4px;
}

.reparations,
.add_parc_form {
  label.required:after {
    content: "*";
    color: black;
  }
}

.prestation_text {
  text-align: left;
  margin-left: 278px;
  font-size: 15px;
  line-height: 24px;
  max-width: 502px;
}

.description_text {
  margin-left: 160px;
  text-align: left;
  max-width: 571px;
  font-size: 15px;
  margin-top: 19px;
  margin-bottom: 15px;
  line-height: 24px;
}

.logo_block h1 {
  font-size: 18px;
  margin-top: 11px;
  margin-bottom: 0px;
}

.logo_block {
  text-align: center;
  max-width: 309px;
  position: absolute;
  top: 50px;
  left: 70px;
}

p.detail_login {
  font-size: 12px;
  margin-top: 17px;
  margin-bottom: 0px;
}

.reponseGa .form-group:nth-child(6){
  display:none;
}

img.img_mesure {
  float: right;
}

.container.main_container {
  background-color: white;
}

input.search_btn {
  background: url('img/search.jpg') top left no-repeat;
  border: 0px;
  width: 49px;
  height: 45px;
}

.col_red_rs {
  padding: 8px;
  color: white;
}

h1.home_title {
  color: white;
  text-transform: uppercase;
  font-size: 27px;
  margin-top: 98px;
  margin-left: 298px;
}

.presentation{
  text-align: center;
  font-size: 17px;
}

.home_loginform input[type=submit] {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}

.home_loginform h1 {
  font-weight: bold;
  font-size: 24px;
  font-weight: 900;
}

.btn_signin:hover {
  text-decoration: none;
  color:white;
}

.btn_signin {
  border-radius: 0px;
  height: auto;
  text-transform: uppercase;
  margin-top: 0px;
  background-color: #563392;
  color: white;
  border: none;
  font-size: 20px;
  padding: 13px 31px;
}

.links_footer {
  text-align: center;
  margin-bottom: 41px;
  line-height: 27px;
}

.links_footer a {
  color: #6e6f6a;
  font-size: 11px;
  text-decoration: underline;
}

.bottom_line {
  max-width: 1150px;
  margin: auto;
  font-size: 12px;
}

.bottom_line img {
  padding-right: 14px;
}

p.legals_footer {
  text-align: center;
  font-size: 10px;
}

a.forget_link {
  font-size: 12px;
}

.panel_home {
  margin-top: 25px;
}

.contactus_num {
  font-weight: 900;
  font-size: 14px;
  color: #343434;
}

.phone_legal {
  font-size: 11px;
  font-style: italic;
}

.table_login tr td:first-child {
  min-width: 100px;
  text-align: center;
}

.row_menu {
  margin-top: 7px;
}

.links_top {
  float: right;
  margin-top: 15px;
  margin-right: 12px;
}

@media (max-width: 1199px){
  .img_mesure {
    display:none;
  }
}

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

.formsignin {
  text-align: center;
  max-width: 656px;
  margin-top: 24px;
}

.home_loginform h1 span {
  display: block;
  font-size: 15px;
  margin-top: 6px;
}

.home_loginform input {
  border-radius: 0px;
}

.conseil {
  margin-left: 25px;
  text-align: center;
}

.conseil h2 {
  color: black;
  font-size: 17px;
  margin-bottom: 6px;
  text-align: center;
}

a.connect_block.connect-bottom {
  color: white;
  font-size: 12px;
}

a.connect_block.connect-bottom:hover {
  text-decoration: none;
}

.col_img_pres{
  padding-right:0px!important;
}

.inner_header {
  padding-top: 20px;
}

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

.retard_order td {
  background-color: #d9534f !important;
  color: white !important;
}

.is_deficient {
  text-decoration: line-through;
}

.top_rs {
  background-color: #a3a3a3;
  padding: 9px;
}

.top_rs a {
  color: white;
}

.site_name.pull-left {
  color: #cd0b00;
  font-size: 25px;
  font-weight: bold;
  margin-top: 13px;
  font-weight: 900;
}

.retard_order td i {
  color: white !important;
}

.dropdown-menu > li > a {
  padding: 9px 20px;
}

.submit_no {
  background-color: transparent;
  border: none;
}

.submit_no img {
  height: 2.5em;
  border-radius: 4px;
}

.custom_sort thead th * {
  text-decoration: none;
  color: #3a3a3a;
  display: block;
  padding-left: 16px;
  background-image: url("img/sort_both.png");
  background-repeat: no-repeat;
  background-position: center left;
  font-size: 0.9rem;
}

.custom_sort thead a.asc {
  background-image: url("img/sort_asc.png");
}

.custom_sort thead a.desc {
  background-image: url("img/sort_desc.png");
}

.custom_sort {
  cursor: pointer;
}

.login_links a {
  font-size: 16px;
}

.buttons_table {
  width: 100px;
}

.hasDatepicker {
  min-width: 99px;
}

.count_elems {
  margin-bottom: 20px;
}

.login_links {
  margin-top: 10px;
  margin-left: 25px;
}

.form-quotation .form-group {
  margin-bottom: 4px;
}

.panel-infos-contact input, .panel-infos-contact select {
  margin-bottom: 5px;
}

.inner_cart {
  padding-top: 22px;
}

a.amount_cart_header {
  color: black;
  font-size: 22px;
  font-weight: bold;
  padding-left: 13px;
  margin-top: 3px;
  display: block;
  float: left;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: white;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e00a0a+0,ab0b0b+100 */
  background: #e00a0a;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e00a0a 0%, #ab0b0b 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e00a0a', endColorstr='#ab0b0b', GradientType=0);
  /* IE6-9 */
}

.navbar_rs {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a5a5a5+0,8c8c8c+100 */
  background: #a5a5a5;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #a5a5a5 0%, #8c8c8c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a5a5a5', endColorstr='#8c8c8c', GradientType=0);
  /* IE6-9 */
}

.navbar-default .navbar-nav > li > a {
  color: white;
  text-transform: uppercase;
}

.dropdown-menu li:hover .sub-menu {
  visibility: visible;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.btn-danger {
  background-color: #ce200e;
}

.btn-success {
  background-color: #a00f28;
  border-color: #a00f28;
}

.btn-success:hover {
  background-color: #a00f28;
  border-color: #a00f28;
}

.form_login input[type=text], .form_login input[type=password] {
  margin: 2px 19px;
}

h1 {
  color: #c60000;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 25px;
}

.title_menu {
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  background: #b4b4b4;
  background: linear-gradient(to bottom, #b4b4b4 0%, #e6e6e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b4b4b4', endColorstr='#e6e6e6', GradientType=0);
  padding: 7px;
  border-bottom: 1px solid white;
  letter-spacing: 3px;
}

.sub_title_menu {
  text-align: center;
  font-weight: bold;
  padding: 6px;
  color: #3e3e3e;
  font-size: 15px;
  background: url('img/icone_plus.png') right no-repeat #cccccc;
  background-position: right 8px top 7px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}

#menu a {
  background-color: #EDEDEE;
  display: block;
  padding: 10px;
  color: #272727;
  font-size: 12px;
  border-top: 1px solid white;
  border-bottom: 1px solid #cccccc;
}

#menu a:hover {
  text-decoration: none;
  background-color: #dadada;
}

.panel-blueLeg .panel-heading {
  border-color: #c20a0a;
  color: #fff;
  background-color: #c20a0a;
}

.panel-blueLeg {
  border-color: #c20a0a;
}

.panel-greyLeg .panel-heading {
  border-color: #909090;
  color: #fff;
  background-color: #909090;
}

.panel-greyLeg {
  border-color: #909090;
}

.huge {
  font-size: 20px;
}

.table_orders tr td {
  text-align: center;
  padding: 10px 2px !important;
  font-size: 11px;
  vertical-align: middle !important;
}

.adresse_intervention{
  display:none;
}

.formOrder .form-group {
  margin-right: 0px;
  margin-left: 0px;
}

.table_orders thead tr th {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b6b6b6+0,e3e3e3+100 */
  background: #b6b6b6;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #b6b6b6 0%, #e3e3e3 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b6b6b6', endColorstr='#e3e3e3', GradientType=0);
  /* IE6-9 */
  text-align: center;
  vertical-align: middle;
}

.left_col_table tr td:first-child {
  font-weight: bold;
}

.contactform textarea {
  height: 200px;
}

.login-tile-frame {
  margin-right: 20px;
}

.login-tile {
  width: 190px;
  margin: 10px;
  display: table-cell;
  float:right;
  color: white;
  padding-top: 10px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  height: 92%;
}

.equal {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.login-tile-special {
  width: 400px;
  margin: 10px;
  display: inline-block;
  float:right;
}

.imgtile{
  width:100%;
}

.row.equal>div {
  margin-bottom: 19px;
}

.block_home{
  color: white;
  text-align: center;
  font-size: 1.8vw;
  line-height: 172%;
  font-weight: bold;
}

.blue_home {
  background-color: #00b9d5;
  height: 100%;
  line-height: 116%;
  display: inline-table;
  width: 100%;
}

.centervert {
  vertical-align: middle;
  display: table-cell;
  padding: 0px 12px;
}

.bgimage {
  background-image: url(img/bandeau.png);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position-y: -347px;
  background-position-x: -1px;
}

.violet_home {
  background-color: #563292;
  height: 100%;
  display: inline-table;
  width: 100%;
}

.green_home {
  background-color: #d8db42;
  height: 100%;
  line-height: 115%;
  display: inline-table;
  width: 100%;
}

.red_home {
  background-color: #ee382d;
  height: 100%;
  display: inline-table;
  width: 100%;
}

.yellow_home {
  background-color: #ffc543;
  height: 100%;
  display: inline-table;
  width: 100%;
}

.login-tile-container {
  width: 100%;
  height: 100%;
  overflow:auto;
  display: table;
}

.login-tile-img {
  width: 100%;
}

@media only screen and (max-width: 1400px) {
  .logo_block {
    top: 10px;
    left: 18px;
  }
}

@media only screen and (max-width: 1200px) {
  .logo_block {
    top: 67px;
    left: 293px;
  }
}

@media only screen and (max-width: 991px) {
  .logo_block {
    top: 26px;
    left: 216px;
  }
}

@media only screen and (max-width: 767px) {
  .logo_block {
    top: 26px;
    left: 310px;
    position: initial;
    margin-left: 111px;
    margin-bottom: 12px;
  }

  .bgimage {
    padding-top: 13px;
    background-size: 424px;
  }
}

@media only screen and (max-width: 600px) {
  .login-tile {
    width: 150px;
    height: 150px;
    margin: 10px;
    display: inline-block;
    float:right;
    color: white;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
  }

  .login-tile-special {
    width: 320px;
    height: 150px;
    margin: 10px;
    display: inline-block;
    float:right;
  }

  .logo_block {
    text-align: center;
    max-width: 309px;
    top: 50px;
    left: 70px;
    position:initial;
  }

  .connect_block {
    position: absolute;
    display: inline;
    right: 175px;
    top: -163px;
  }

  .connect_hover {
    background-color: #563392;
    padding: 14px;
    position: absolute;
    right: -83px;
    top: 52px;
    display: none;
    z-index: 9;
  }

  .top_rs .container div {
    visibility: hidden;
  }

  footer {
    padding: 0px 15px 0px 15px;
  }
}

#tarteaucitronAlertBig {
  background: #FFF;
}

/* FONT FACES */

/* oswald-regular - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Oswald';

  font-style: normal;

  font-weight: 400;

  src: url('../fonts/oswald/oswald-v49-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/oswald/oswald-v49-latin-regular.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-500 - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Oswald';

  font-style: normal;

  font-weight: 500;

  src: url('../fonts/oswald/oswald-v49-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/oswald/oswald-v49-latin-500.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-600 - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Oswald';

  font-style: normal;

  font-weight: 600;

  src: url('../fonts/oswald/oswald-v49-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/oswald/oswald-v49-latin-600.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* oswald-700 - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Oswald';

  font-style: normal;

  font-weight: 700;

  src: url('../fonts/oswald/oswald-v49-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/oswald/oswald-v49-latin-700.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-regular - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: normal;

  font-weight: 400;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-regular.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-italic - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: italic;

  font-weight: 400;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-italic.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-500 - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: normal;

  font-weight: 500;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-500.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-500italic - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: italic;

  font-weight: 500;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-500italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-500italic.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-600 - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: normal;

  font-weight: 600;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-600.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-600italic - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: italic;

  font-weight: 600;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-600italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-600italic.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-700 - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: normal;

  font-weight: 700;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-700.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-700italic - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: italic;

  font-weight: 700;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-700italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-700italic.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-800 - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: normal;

  font-weight: 800;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-800.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-800italic - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: italic;

  font-weight: 800;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-800italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-800italic.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-900 - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: normal;

  font-weight: 900;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-900.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-900italic - latin */

@font-face {
  font-display: swap;

  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */

  font-family: 'Noto Sans';

  font-style: italic;

  font-weight: 900;

  src: url('../fonts/noto-sans/noto-sans-v27-latin-900italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
         url('../fonts/noto-sans/noto-sans-v27-latin-900italic.woff') format('woff');

  /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

.before\:absolute::before {
  content: var(--tw-content) !important;
  position: absolute !important;
}

.before\:right-0::before {
  content: var(--tw-content) !important;
  right: 0px !important;
}

.before\:top-0::before {
  content: var(--tw-content) !important;
  top: 0px !important;
}

.before\:h-full::before {
  content: var(--tw-content) !important;
  height: 100% !important;
}

.before\:w-full::before {
  content: var(--tw-content) !important;
  width: 100% !important;
}

.before\:bg-rs-midtone-red::before {
  content: var(--tw-content) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(160 15 40 / var(--tw-bg-opacity)) !important;
}

.before\:content-\[\'\'\]::before {
  --tw-content: '' !important;
  content: var(--tw-content) !important;
}

.odd\:bg-gray-100:nth-child(odd) {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity)) !important;
}

.visited\:text-black:visited {
  color: rgb(0 0 0 ) !important;
}

.hover\:bg-slate-400:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(148 163 184 / var(--tw-bg-opacity)) !important;
}

.hover\:text-rs-blue:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(18 57 135 / var(--tw-text-opacity)) !important;
}

.hover\:underline:hover {
  text-decoration-line: underline !important;
}

.hover\:no-underline:hover {
  text-decoration-line: none !important;
}

@media (min-width: 640px) {
  .sm\:max-w-\[200px\] {
    max-width: 200px !important;
  }

  .sm\:gap-16 {
    gap: 4rem !important;
  }

  .sm\:text-\[5\.8rem\] {
    font-size: 5.8rem !important;
  }

  .sm\:text-\[6\.2rem\] {
    font-size: 6.2rem !important;
  }

  .sm\:tracking-wide {
    letter-spacing: 0.025em !important;
  }
}

@media (min-width: 768px) {
  .md\:visible {
    visibility: visible !important;
  }

  .md\:flex {
    display: flex !important;
  }

  .md\:h-\[120px\] {
    height: 120px !important;
  }

  .md\:max-h-\[1200px\] {
    max-height: 1200px !important;
  }

  .md\:min-h-\[700px\] {
    min-height: 700px !important;
  }

  .md\:w-\[65\%\] {
    width: 65% !important;
  }

  .md\:max-w-\[28rem\] {
    max-width: 28rem !important;
  }

  .md\:flex-none {
    flex: none !important;
  }

  .md\:basis-0 {
    flex-basis: 0px !important;
  }

  .md\:basis-1\/5 {
    flex-basis: 20% !important;
  }

  .md\:flex-row {
    flex-direction: row !important;
  }

  .md\:items-start {
    align-items: flex-start !important;
  }

  .md\:items-end {
    align-items: flex-end !important;
  }

  .md\:justify-start {
    justify-content: flex-start !important;
  }

  .md\:gap-12 {
    gap: 3rem !important;
  }

  .md\:self-center {
    align-self: center !important;
  }

  .md\:p-4 {
    padding: 1rem !important;
  }

  .md\:pb-24 {
    padding-bottom: 6rem !important;
  }

  .md\:pt-12 {
    padding-top: 3rem !important;
  }

  .md\:pt-6 {
    padding-top: 1.5rem !important;
  }

  .md\:text-left {
    text-align: left !important;
  }

  .md\:text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
  }

  .md\:before\:origin-\[100\%_100\%\]::before {
    content: var(--tw-content) !important;
    transform-origin: 100% 100% !important;
  }

  .md\:before\:skew-x-\[10deg\]::before {
    content: var(--tw-content) !important;
    --tw-skew-x: 10deg !important;
    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)) !important;
  }

  .md\:before\:border-r-\[30px\]::before {
    content: var(--tw-content) !important;
    border-right-width: 30px !important;
  }

  .md\:before\:border-solid::before {
    content: var(--tw-content) !important;
    border-style: solid !important;
  }

  .md\:before\:border-transparent::before {
    content: var(--tw-content) !important;
    border-color: transparent !important;
  }
}

@media (min-width: 1024px) {
  .lg\:w-\[45\%\] {
    width: 45% !important;
  }

  .lg\:w-\[75\%\] {
    width: 75% !important;
  }

  .lg\:min-w-\[540px\] {
    min-width: 540px !important;
  }

  .lg\:max-w-\[360px\] {
    max-width: 360px !important;
  }

  .lg\:flex-none {
    flex: none !important;
  }

  .lg\:flex-row {
    flex-direction: row !important;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap !important;
  }

  .lg\:justify-center {
    justify-content: center !important;
  }

  .lg\:gap-16 {
    gap: 4rem !important;
  }

  .lg\:text-\[5\.8rem\] {
    font-size: 5.8rem !important;
  }

  .lg\:text-\[6\.2rem\] {
    font-size: 6.2rem !important;
  }
}

@media (min-width: 1280px) {
  .xl\:gap-16 {
    gap: 4rem !important;
  }
}

@media (min-width: 1536px) {
  .\32xl\:w-\[40\%\] {
    width: 40% !important;
  }

  .\32xl\:pt-32 {
    padding-top: 8rem !important;
  }

  .\32xl\:text-\[3\.25rem\] {
    font-size: 3.25rem !important;
  }

  .\32xl\:text-\[6\.7rem\] {
    font-size: 6.7rem !important;
  }

  .\32xl\:text-\[7\.2rem\] {
    font-size: 7.2rem !important;
  }
}

@media (min-height: 2000px) {
  .extra-tall\:w-\[60\%\] {
    width: 60% !important;
  }
}
