diff --git a/assets/alarm-clock.png b/assets/alarm-clock.png
deleted file mode 100644
index b404a12..0000000
Binary files a/assets/alarm-clock.png and /dev/null differ
diff --git a/assets/arrow.png b/assets/arrow.png
deleted file mode 100644
index e6a3dbf..0000000
Binary files a/assets/arrow.png and /dev/null differ
diff --git a/assets/css/orbit.min.css b/assets/css/orbit.min.css
deleted file mode 100644
index 83a2c9f..0000000
--- a/assets/css/orbit.min.css
+++ /dev/null
@@ -1,443 +0,0 @@
-/*!
-
-## Orbit initial css variable declaration
-
-When start a new Orbit project following css variables are declared:
-
-```css
-:root {
- --o-from: 0deg;
- --o-range: 360deg;
- --o-ellipse-x: 1;
- --o-ellipse-y: 1;
-}
-```
-
-**Important:** Orbit can have multiples instances in same project. If your want different initial setup for some instances css variables can be redeclare at first `.orbital-zone`
-
-```css
-.instance-1 {
- --o-from: 90deg;
- --o-range: 360deg;
- --o-ellipse-x: 1;
- --o-ellipse-y: 1;
-}
-
-.instance-2 {
- --o-from: 0deg;
- --o-range: 1800deg;
- --o-ellipse-x: 0.8;
- --o-ellipse-y: 1;
-}
-```
-
-```html
-
-
-
-
-
-```
-
-*/:root{--o-from: 0deg;--o-range: 360deg;--o-ellipse-x: 1;--o-ellipse-y: 1}.orbit-zone *{box-sizing:border-box;margin:0}.orbit-zone * ::before,.orbit-zone * ::after{box-sizing:border-box}.orbit-zone * input,.orbit-zone * button,.orbit-zone * textarea,.orbit-zone * select{font:inherit}.orbit-zone * p,.orbit-zone * h1,.orbit-zone * h2,.orbit-zone * h3,.orbit-zone * h4,.orbit-zone * h5,.orbit-zone * h6{overflow-wrap:break-word}.orbit-zone * img,.orbit-zone * picture,.orbit-zone * video,.orbit-zone * canvas,.orbit-zone * svg{max-width:unset}/*!
-## .orbit-zone
-
-Orbit-zone is a container class that groups `.orbit` classes. It serves as a container with a size defined once by `--o-length` when the Orbit app is initialized.
-~~When orbit-zone is nested into a `.satellite`, its length will depend on the `.satellite`'s `.orbit` diameter.~~
-
-### Customization
-
- - Aligment class utilities: `.center`, `center-left`, `.center-right`, `.top-left`, `.top-center`, `.top-right`, `.bottom-left`, `.bottom-center`, `.bottom-right`. Default `.center`
-
-**Note:** Orbit is 100% CSS, but in case user needs Orbit be responsive there is an optional tiny JS script that modifies `--o-length` when a parent element of `.orbit-zone` is resized. See how to use in Orbit.resize docs
-
-**Important:** The `orbit-zone` class can only be nested into a `.satellite`.
-
-### Usage
-
-```html
-
-
-
-
-
-
-
-
-
-
-```
-*/.orbit-zone{container-name:orbitzone;--o-length: 500px;--o-from: 0deg;--o-range: 360deg;--o-ellipse-x: 1;--o-ellipse-y: 1;--o-fit-range: 0;--o-direction: 1;--o-size-ratio: 1;width:var(--o-length);aspect-ratio:1;position:absolute;display:flex;align-items:center;justify-content:center;border:none}/*!
-## .orbit or .orbit-*
-
-This class renders a circumsference inside an .orbit-zone. Inside `.orbit` can be placed many elements, such as satellites, sectors, progress, spokes, segments, and labels.
-By default there are 12 orbits. The number can be modify with `$max-orbits` var at `_variables.scss`.
-
-**Important:** .orbit or .orbit-* is a direct child element of .orbit-zone.
-
-### Stack order
-Orbits stack order is same as any html element. First orbit is below second one.
-
-### Usage:
-
-- Basic example that renders two orbits
- ```html
-
-
-
-
- ```
-
-- Basic example that renders two orbits of same radius the latter one is abowe the former.
- ```html
-
-
-
-
- ```
-
-- This renders three orbits with custom distribution
- ```html
-
-
-
- ```
-
-- This renders nested orbits around a satellite
- ```html
-
-
-
-
-
-
-
-
-
-
- ```
-
-### Customization:
-
-It has some special attributes and css variables to customize it or its children elements:
-
- - Utility class `.reduce-*`: To decrease size according an orbit fracction percentage. Default 1.
- - Utility class `.goey-fx`: This utility allows orbit child elements to look grouped and sticky. Try it!
-
- - CSS styles. User can customize `.orbit` by adding CSS properties.
-
-Besides css properties that user can change according his needs, there two css variables to turn `.orbit`or `.orbit-*` into
-an ellipse (`--o-ellipse-x`, and `--o-ellipse-y`). This will affect orbit and its children, with an excepcion of ``, ``, and `` web components that will be hiden when orbit is an ellipse. Values range from 0 to 1.
-
-```html
-
-
-
-
-
-
-
-
-
-
-```
-
-There are some utility classes that are set on `.orbit` element and affect its child radial layout (`.from-*`, `.range-*`, etc). Please see [**Radial Layout section**].
-
-*/.orbit,[class*=orbit-]:not(.orbit-zone){container-name:orbit;--o-base-diameter: var(--o-orbit-number) * var(--o-length) / 12;--o-prev-diameter: (var(--o-orbit-number) - 1) * var(--o-length) / 12;--o-diameter: calc(var(--o-base-diameter) - ((var(--o-base-diameter) - var(--o-prev-diameter)) * var(--o-orbit-ratio, 0)));--o-radius: calc(var(--o-diameter) / 2);width:calc(var(--o-diameter)/var(--o-ellipse-x));height:calc(var(--o-diameter)/var(--o-ellipse-y));position:absolute;display:flex;justify-content:center;align-items:center;border-radius:50%;pointer-events:none}/*!
-## .satellite
-
-Elements with `.satellite` are placed along an `.orbit` or `.orbit-*` serving as content place and/or to nest `.orbits` using `.orbit-zone`.
-By default up to 24 satellites can be placed in an orbit. The number can be modify with `$max-orbiters` var at `_variables.scss`.
-
-### Content
-Satellites are suitable to render different content. It is desirable to use `.capsule` inside a `.satellite` to put content.
-
-### Shapes
-
-Satellite provides an unstyled circle shape, but it can be easily changed according project needs.
-
-A few set of shapes utilities are provided (`.circle`, `.box`, `.rounded-box`). Nevertheless, users can set any shapes using svg, images, etc. At this instance, Orbit is focused on setting a radial layout, not in UI styles.
-
-### Customization
-
- - Utility class `.range-*`: Default '360deg'
- - Utility class `.from-*`: Default '0deg'
- - Utility class `.grow-*x`: To increase size according number of orbits. Default 1.
- - Utility class `.reduce-*`: To decrease size according an orbit fracction percentage. Default 1.
- - Utility class `.inner-orbit`: To place `.satellite` just below its orbit
- - Utility class `.outer-orbit`: To place `.satellite` just above its orbit
- - Utility class `.quarter-inner-orbit`: To place `.satellite` a 25% into its orbit.
- - Utility class `.quarter-outer-orbit`: To place `.satellite` a 25% outer its orbit.
-
- - CSS styles. User can customize `.satellite` by adding CSS properties to it.
-
-### Usage
-
-- This renders six satellites with different properties
-```html
-
-
-
- Change volume
-
-
-
-
-
-
-
-
-```
-
-- This renders two satellites. One of which nests `.orbital-zone` with some orbits
-```html
-
-
-
-
-
-
-
-
-
-
-```
-
-**Important:**
-
-- `.satellite` can only be placed into a parent `.orbit` or `.orbit-*`
-- There is no limit for nesting orbit-zone in satellites.
-
-
-*/.satellite{container-name:satellite;--o-angle-composite: (var(--o-angle) * var(--o-orbit-child-number) var(--o-offset, + 270deg)) * var(--o-direction, 1);--o-transform: translate( calc( (var(--o-radius) - var(--o-aligment, 0px)) / var(--o-ellipse-x) * cos(var(--o-from) + var(--o-angle-composite )) ), calc( (var(--o-radius) - var(--o-aligment, 0px)) / var(--o-ellipse-y) * sin(var(--o-from) + var(--o-angle-composite)) ) );transform:var(--o-transform);width:calc(var(--o-radius)/var(--o-orbit-number)*var(--o-size-ratio, 1));height:calc(var(--o-radius)/var(--o-orbit-number)*var(--o-size-ratio, 1));position:absolute;display:flex;justify-content:center;align-items:center;border-radius:50%}.satellite.at-center{--o-transform: rotate(0deg)}.satellite.circle{border-radius:50%}.satellite.box{border-radius:0%}.satellite.rounded-box{border-radius:8px}/*!
-## .spoke
-
-This class renders a perpendicular dash line along an orbit. By default there are 24 spokes per orbit. The number can be modify with `$max-orbiters` var at `_variables.scss`.
-
-### Customization
-
-It has some special classes and css variables to customize it:
-
- - Utility class `.range-*`: Default '360deg'
- - Utility class `.from-*`: Default '0deg'
- - Utility class `.grow-*x`: To increase size according number of orbits. Default 1.
- - Utility class `.reduce-*`: To decrease size according an orbit fracction percentage. Default 1.
- - Utility class `.inner-orbit`: To place `.spoke` just below its orbit
- - Utility class `.outer-orbit`: To place `.spoke` just above its orbit
- - Utility class `.quarter-inner-orbit`: To place `.spoke` a 25% into its orbit.
- - Utility class `.quarter-outer-orbit`: To place `.spoke` a 25% outer its orbit.
-
- - CSS styles. User can customize `.spoke` by adding CSS properties to it.
-
-### Usage
-
-```html
-
-
-
-
-
-
-```
-
-**Important:** `.spoke` can only be placed into a parent `.orbit` or `.orbit-*`
-
-*/.spoke{container-name:spoke;--o-angle-composite: (var(--o-angle) * var(--o-orbit-child-number) var(--o-offset, + 270deg)) * var(--o-direction, 1);--o-transform: translate( calc( (var(--o-radius) - var(--o-aligment, 1px)) / var(--o-ellipse-x) * cos(var(--o-from) + var(--o-angle-composite)) ), calc( (var(--o-radius) - var(--o-aligment, 1px)) / var(--o-ellipse-y) * sin(var(--o-from) + var(--o-angle-composite)) ) ) rotate( calc(var(--o-from) + var(--o-angle-composite)) );width:calc(var(--o-radius)/var(--o-orbit-number)*var(--o-size-ratio, 1));position:absolute;display:flex;align-items:center;transform:var(--o-transform);height:1px;pointer-events:none;border:none}.spoke.at-center{--o-transform: rotate( calc(var(--o-from) + var(--o-angle-composite)) ) }/*!
-## .segment
-
-This class renders a segment that if it used with other segment renders a regular polygon figure. By default there are 24 segments per orbit. The number can be modify with `$max-orbiters` var at `_variables.scss`.
-
-### Customization
-
-It has some special classes and css variables to customize it:
-
- - Class utility `.range-*`: Default '360deg'
- - Class utility `.from-*`: Default '0deg'
- - Class utility `.grow-*x`: To increase size according number of orbits. Default 1.
- - Class utility `.reduce-*`: To decrease size according an orbit fracction percentage. Default 1.
- - Class utility `.inner-orbit`: To place `.segment` just below its orbit
- - Class utility `.outer-orbit`: To place `.segment` just above its orbit
-
- - CSS styles. User can customize `.segment` by adding CSS properties to it.
-
-### Usage
-
-This render a regular pentagon
-```html
-
-
-
-
-
-
-
-```
-
-**Important:** `.segment` can only be placed into a parent `.orbit` or `.orbit-*`
-
-### TO-DO
-
-- Check is all utilities go with segment. If not create visual aids
-
-*/.segment{container-name:segment;--o-angle-composite: (var(--o-angle) * var(--o-orbit-child-number) var(--o-offset, + 270deg)) * var(--o-direction, 1);--o-y: calc(var(--o-radius) * sin(90deg - var(--o-angle) / 2));--o-transform: rotate( calc(var(--o-from) + var(--o-angle-composite))) translate(0, var(--o-y));width:calc(var(--o-radius)*cos(90deg - var(--o-angle)/2)*2);position:absolute;padding:0;transform:var(--o-transform);height:1px;pointer-events:none;border:none;background:#000}.segment.outer-orbit{--o-y: calc(var(--o-radius));width:calc(var(--o-radius)*tan(var(--o-angle)/2)*2)}o-sector{--o-angle-composite: var(--o-angle) * var(--o-orbit-child-number) * var(--o-direction, 1);container-name:osector;display:flex;justify-content:center;align-items:center;border-radius:50%;position:absolute;pointer-events:none;width:100%;stroke-dashoffset:var(--o-angle);r:var(--o-radius);stroke-width:calc(var(--o-radius)/var(--o-orbit-number)*var(--o-size-ratio, 1));transform:rotate(calc(var(--o-from) + var(--o-angle-composite)))}o-label{--o-angle-composite: var(--o-angle) * var(--o-orbit-child-number) * var(--o-direction, 1);container-name:otext;display:flex;justify-content:center;align-items:center;border-radius:50%;position:absolute;pointer-events:none;width:100%;fill:currentColor;r:var(--o-radius);stroke-width:calc(var(--o-radius)/var(--o-orbit-number)*var(--o-size-ratio, 1));transform:rotate(calc(var(--o-from) + var(--o-angle-composite)))}o-progress{container-name:oprogress;r:var(--o-radius);stroke-width:calc(var(--o-radius)/var(--o-orbit-number)*var(--o-size-ratio, 1));transform:rotate(var(--o-from));position:absolute;display:flex;justify-content:center;align-items:center;width:100%;border-radius:50%;pointer-events:none}/*!
-## Orbit radial layout
-
-Orbit radial layout is the core of Orbit framework that offers a flexible, clean and simple way to design radial UI using just CSS and some optional vanilla web components crafted to improve dev UX.
-
-### Overview
-
-To create radial layouts using just CSS, it is neccesary to use CSS variables and do some maths. `.orbit` and `.orbit-*` have `--o-orbit-number` var to individualize their position according to the maximum number of orbits. Similarly, other elements such as `satellites`, `spokes`, `sectors`, and others use `--o-orbit-child-number` to be individualized.
-
-Besides that, `.orbit` and `.orbit-*` have `--o-angle` var that counts their child elements.
-
-### Mechanism
-
-The mechanism is straightforward:
-
-- `--o-orbit-number` informs where each `orbit` is placed, according to `.orbit-zone` length and maximum number of orbits. For example, with an `.orbit-zone` length of 500px and a maximum of 12 orbits, `orbit-4` will have 166.66 pixels of radius.
-
-- `--o-angle` is calculated depending on `.orbit` children number. For example, if an orbit has 3 satellites, `--o-angle` is 120deg). Finally, `--o-angle` is multiplied by `--o-orbit-child-number`. For example, satellite one will have 120deg, satellite two 240deg, and satellite three 360deg, and each satellite will be placed along its orbit at 166.66px.
-
-### Modifiers
-
-There are some modifiers to adjust orbit child distribution and make radial layout more flexible:
-
- - Utility class `.range-*`: To define the arc lenght. Default '360deg'
- - Utility class `.from-*`: To define starting point. Default '0deg'
- - Utility class `.grow-*x`: To increase size according number of orbits. Default 1.
- - Utility class `.reduce-*`: To decrease size according an orbit fracction percentage. Default 1.
- - Utility class `.inner-orbit`: To place `.satellite` just below its orbit
- - Utility class `.outer-orbit`: To place `.satellite` just above its orbit
- - Utility class `.quarter-inner-orbit`: To place `.satellite` a 25% into its orbit.
- - Utility class `.quarter-outer-orbit`: To place `.satellite` a 25% outer its orbit.
- - Utility class `.ccw`: to invert arrange order of orbit child elements. Default clock-wise.
- - Utility class `.fit-range`: Useful when range is inferior to 360deg to cover all range.
-
-### Layout rules
-
-Any Orbit project should be follow this simple rules:
-
-- Start with `.orbit-zone`.
-- Add as many `.orbit`or `.orbit-*` as needed.
-- Put `.satellite`, `o-sector`, `o-progress`,`o-label`,`.segment` or `.spoke` inside an `.orbit`.
-- Orbits can be nested by adding `.orbit-zone` into `.satellite`.
-
-### Usage and Examples
-
-```html
-
-
-
-
-
-
-
-
-
-```
-
-```html
-
-
-
-
-
-
-```
-
-```html
-
-
-
-
-
-
-
-
-```
-
-*/.orbit-0{--o-orbit-number: 0.01}:nth-child(1 of .orbit),.orbit-1{--o-orbit-number: 1}:nth-child(2 of .orbit),.orbit-2{--o-orbit-number: 2}:nth-child(3 of .orbit),.orbit-3{--o-orbit-number: 3}:nth-child(4 of .orbit),.orbit-4{--o-orbit-number: 4}:nth-child(5 of .orbit),.orbit-5{--o-orbit-number: 5}:nth-child(6 of .orbit),.orbit-6{--o-orbit-number: 6}:nth-child(7 of .orbit),.orbit-7{--o-orbit-number: 7}:nth-child(8 of .orbit),.orbit-8{--o-orbit-number: 8}:nth-child(9 of .orbit),.orbit-9{--o-orbit-number: 9}:nth-child(10 of .orbit),.orbit-10{--o-orbit-number: 10}:nth-child(11 of .orbit),.orbit-11{--o-orbit-number: 11}:nth-child(12 of .orbit),.orbit-12{--o-orbit-number: 12}:nth-child(1 of .segment){--o-orbit-child-number: -1}:nth-child(2 of .segment){--o-orbit-child-number: 0}:nth-child(3 of .segment){--o-orbit-child-number: 1}:nth-child(4 of .segment){--o-orbit-child-number: 2}:nth-child(5 of .segment){--o-orbit-child-number: 3}:nth-child(6 of .segment){--o-orbit-child-number: 4}:nth-child(7 of .segment){--o-orbit-child-number: 5}:nth-child(8 of .segment){--o-orbit-child-number: 6}:nth-child(9 of .segment){--o-orbit-child-number: 7}:nth-child(10 of .segment){--o-orbit-child-number: 8}:nth-child(11 of .segment){--o-orbit-child-number: 9}:nth-child(12 of .segment){--o-orbit-child-number: 10}:nth-child(13 of .segment){--o-orbit-child-number: 11}:nth-child(14 of .segment){--o-orbit-child-number: 12}:nth-child(15 of .segment){--o-orbit-child-number: 13}:nth-child(16 of .segment){--o-orbit-child-number: 14}:nth-child(17 of .segment){--o-orbit-child-number: 15}:nth-child(18 of .segment){--o-orbit-child-number: 16}:nth-child(19 of .segment){--o-orbit-child-number: 17}:nth-child(20 of .segment){--o-orbit-child-number: 18}:nth-child(21 of .segment){--o-orbit-child-number: 19}:nth-child(22 of .segment){--o-orbit-child-number: 20}:nth-child(23 of .segment){--o-orbit-child-number: 21}:nth-child(24 of .segment){--o-orbit-child-number: 22}:nth-child(25 of .segment){--o-orbit-child-number: 23}:nth-child(26 of .segment){--o-orbit-child-number: 24}:nth-child(27 of .segment){--o-orbit-child-number: 25}:nth-child(28 of .segment){--o-orbit-child-number: 26}:nth-child(29 of .segment){--o-orbit-child-number: 27}:nth-child(30 of .segment){--o-orbit-child-number: 28}:nth-child(31 of .segment){--o-orbit-child-number: 29}:nth-child(32 of .segment){--o-orbit-child-number: 30}:nth-child(33 of .segment){--o-orbit-child-number: 31}:nth-child(34 of .segment){--o-orbit-child-number: 32}:nth-child(35 of .segment){--o-orbit-child-number: 33}:nth-child(36 of .segment){--o-orbit-child-number: 34}:nth-child(37 of .segment){--o-orbit-child-number: 35}:nth-child(38 of .segment){--o-orbit-child-number: 36}:nth-child(39 of .segment){--o-orbit-child-number: 37}:nth-child(40 of .segment){--o-orbit-child-number: 38}:nth-child(41 of .segment){--o-orbit-child-number: 39}:nth-child(42 of .segment){--o-orbit-child-number: 40}:nth-child(43 of .segment){--o-orbit-child-number: 41}:nth-child(44 of .segment){--o-orbit-child-number: 42}:nth-child(45 of .segment){--o-orbit-child-number: 43}:nth-child(46 of .segment){--o-orbit-child-number: 44}:nth-child(47 of .segment){--o-orbit-child-number: 45}:nth-child(48 of .segment){--o-orbit-child-number: 46}:nth-child(49 of .segment){--o-orbit-child-number: 47}:nth-child(50 of .segment){--o-orbit-child-number: 48}:nth-child(51 of .segment){--o-orbit-child-number: 49}:nth-child(52 of .segment){--o-orbit-child-number: 50}:nth-child(53 of .segment){--o-orbit-child-number: 51}:nth-child(54 of .segment){--o-orbit-child-number: 52}:nth-child(55 of .segment){--o-orbit-child-number: 53}:nth-child(56 of .segment){--o-orbit-child-number: 54}:nth-child(57 of .segment){--o-orbit-child-number: 55}:nth-child(58 of .segment){--o-orbit-child-number: 56}:nth-child(59 of .segment){--o-orbit-child-number: 57}:nth-child(60 of .segment){--o-orbit-child-number: 58}:nth-child(1 of .satellite),:nth-child(1 of o-sector),:nth-child(1 of .spoke),:nth-child(1 of o-label){--o-orbit-child-number: 0}:nth-child(2 of .satellite),:nth-child(2 of o-sector),:nth-child(2 of .spoke),:nth-child(2 of o-label){--o-orbit-child-number: 1}:nth-child(3 of .satellite),:nth-child(3 of o-sector),:nth-child(3 of .spoke),:nth-child(3 of o-label){--o-orbit-child-number: 2}:nth-child(4 of .satellite),:nth-child(4 of o-sector),:nth-child(4 of .spoke),:nth-child(4 of o-label){--o-orbit-child-number: 3}:nth-child(5 of .satellite),:nth-child(5 of o-sector),:nth-child(5 of .spoke),:nth-child(5 of o-label){--o-orbit-child-number: 4}:nth-child(6 of .satellite),:nth-child(6 of o-sector),:nth-child(6 of .spoke),:nth-child(6 of o-label){--o-orbit-child-number: 5}:nth-child(7 of .satellite),:nth-child(7 of o-sector),:nth-child(7 of .spoke),:nth-child(7 of o-label){--o-orbit-child-number: 6}:nth-child(8 of .satellite),:nth-child(8 of o-sector),:nth-child(8 of .spoke),:nth-child(8 of o-label){--o-orbit-child-number: 7}:nth-child(9 of .satellite),:nth-child(9 of o-sector),:nth-child(9 of .spoke),:nth-child(9 of o-label){--o-orbit-child-number: 8}:nth-child(10 of .satellite),:nth-child(10 of o-sector),:nth-child(10 of .spoke),:nth-child(10 of o-label){--o-orbit-child-number: 9}:nth-child(11 of .satellite),:nth-child(11 of o-sector),:nth-child(11 of .spoke),:nth-child(11 of o-label){--o-orbit-child-number: 10}:nth-child(12 of .satellite),:nth-child(12 of o-sector),:nth-child(12 of .spoke),:nth-child(12 of o-label){--o-orbit-child-number: 11}:nth-child(13 of .satellite),:nth-child(13 of o-sector),:nth-child(13 of .spoke),:nth-child(13 of o-label){--o-orbit-child-number: 12}:nth-child(14 of .satellite),:nth-child(14 of o-sector),:nth-child(14 of .spoke),:nth-child(14 of o-label){--o-orbit-child-number: 13}:nth-child(15 of .satellite),:nth-child(15 of o-sector),:nth-child(15 of .spoke),:nth-child(15 of o-label){--o-orbit-child-number: 14}:nth-child(16 of .satellite),:nth-child(16 of o-sector),:nth-child(16 of .spoke),:nth-child(16 of o-label){--o-orbit-child-number: 15}:nth-child(17 of .satellite),:nth-child(17 of o-sector),:nth-child(17 of .spoke),:nth-child(17 of o-label){--o-orbit-child-number: 16}:nth-child(18 of .satellite),:nth-child(18 of o-sector),:nth-child(18 of .spoke),:nth-child(18 of o-label){--o-orbit-child-number: 17}:nth-child(19 of .satellite),:nth-child(19 of o-sector),:nth-child(19 of .spoke),:nth-child(19 of o-label){--o-orbit-child-number: 18}:nth-child(20 of .satellite),:nth-child(20 of o-sector),:nth-child(20 of .spoke),:nth-child(20 of o-label){--o-orbit-child-number: 19}:nth-child(21 of .satellite),:nth-child(21 of o-sector),:nth-child(21 of .spoke),:nth-child(21 of o-label){--o-orbit-child-number: 20}:nth-child(22 of .satellite),:nth-child(22 of o-sector),:nth-child(22 of .spoke),:nth-child(22 of o-label){--o-orbit-child-number: 21}:nth-child(23 of .satellite),:nth-child(23 of o-sector),:nth-child(23 of .spoke),:nth-child(23 of o-label){--o-orbit-child-number: 22}:nth-child(24 of .satellite),:nth-child(24 of o-sector),:nth-child(24 of .spoke),:nth-child(24 of o-label){--o-orbit-child-number: 23}:nth-child(25 of .satellite),:nth-child(25 of o-sector),:nth-child(25 of .spoke),:nth-child(25 of o-label){--o-orbit-child-number: 24}:nth-child(26 of .satellite),:nth-child(26 of o-sector),:nth-child(26 of .spoke),:nth-child(26 of o-label){--o-orbit-child-number: 25}:nth-child(27 of .satellite),:nth-child(27 of o-sector),:nth-child(27 of .spoke),:nth-child(27 of o-label){--o-orbit-child-number: 26}:nth-child(28 of .satellite),:nth-child(28 of o-sector),:nth-child(28 of .spoke),:nth-child(28 of o-label){--o-orbit-child-number: 27}:nth-child(29 of .satellite),:nth-child(29 of o-sector),:nth-child(29 of .spoke),:nth-child(29 of o-label){--o-orbit-child-number: 28}:nth-child(30 of .satellite),:nth-child(30 of o-sector),:nth-child(30 of .spoke),:nth-child(30 of o-label){--o-orbit-child-number: 29}:nth-child(31 of .satellite),:nth-child(31 of o-sector),:nth-child(31 of .spoke),:nth-child(31 of o-label){--o-orbit-child-number: 30}:nth-child(32 of .satellite),:nth-child(32 of o-sector),:nth-child(32 of .spoke),:nth-child(32 of o-label){--o-orbit-child-number: 31}:nth-child(33 of .satellite),:nth-child(33 of o-sector),:nth-child(33 of .spoke),:nth-child(33 of o-label){--o-orbit-child-number: 32}:nth-child(34 of .satellite),:nth-child(34 of o-sector),:nth-child(34 of .spoke),:nth-child(34 of o-label){--o-orbit-child-number: 33}:nth-child(35 of .satellite),:nth-child(35 of o-sector),:nth-child(35 of .spoke),:nth-child(35 of o-label){--o-orbit-child-number: 34}:nth-child(36 of .satellite),:nth-child(36 of o-sector),:nth-child(36 of .spoke),:nth-child(36 of o-label){--o-orbit-child-number: 35}:nth-child(37 of .satellite),:nth-child(37 of o-sector),:nth-child(37 of .spoke),:nth-child(37 of o-label){--o-orbit-child-number: 36}:nth-child(38 of .satellite),:nth-child(38 of o-sector),:nth-child(38 of .spoke),:nth-child(38 of o-label){--o-orbit-child-number: 37}:nth-child(39 of .satellite),:nth-child(39 of o-sector),:nth-child(39 of .spoke),:nth-child(39 of o-label){--o-orbit-child-number: 38}:nth-child(40 of .satellite),:nth-child(40 of o-sector),:nth-child(40 of .spoke),:nth-child(40 of o-label){--o-orbit-child-number: 39}:nth-child(41 of .satellite),:nth-child(41 of o-sector),:nth-child(41 of .spoke),:nth-child(41 of o-label){--o-orbit-child-number: 40}:nth-child(42 of .satellite),:nth-child(42 of o-sector),:nth-child(42 of .spoke),:nth-child(42 of o-label){--o-orbit-child-number: 41}:nth-child(43 of .satellite),:nth-child(43 of o-sector),:nth-child(43 of .spoke),:nth-child(43 of o-label){--o-orbit-child-number: 42}:nth-child(44 of .satellite),:nth-child(44 of o-sector),:nth-child(44 of .spoke),:nth-child(44 of o-label){--o-orbit-child-number: 43}:nth-child(45 of .satellite),:nth-child(45 of o-sector),:nth-child(45 of .spoke),:nth-child(45 of o-label){--o-orbit-child-number: 44}:nth-child(46 of .satellite),:nth-child(46 of o-sector),:nth-child(46 of .spoke),:nth-child(46 of o-label){--o-orbit-child-number: 45}:nth-child(47 of .satellite),:nth-child(47 of o-sector),:nth-child(47 of .spoke),:nth-child(47 of o-label){--o-orbit-child-number: 46}:nth-child(48 of .satellite),:nth-child(48 of o-sector),:nth-child(48 of .spoke),:nth-child(48 of o-label){--o-orbit-child-number: 47}:nth-child(49 of .satellite),:nth-child(49 of o-sector),:nth-child(49 of .spoke),:nth-child(49 of o-label){--o-orbit-child-number: 48}:nth-child(50 of .satellite),:nth-child(50 of o-sector),:nth-child(50 of .spoke),:nth-child(50 of o-label){--o-orbit-child-number: 49}:nth-child(51 of .satellite),:nth-child(51 of o-sector),:nth-child(51 of .spoke),:nth-child(51 of o-label){--o-orbit-child-number: 50}:nth-child(52 of .satellite),:nth-child(52 of o-sector),:nth-child(52 of .spoke),:nth-child(52 of o-label){--o-orbit-child-number: 51}:nth-child(53 of .satellite),:nth-child(53 of o-sector),:nth-child(53 of .spoke),:nth-child(53 of o-label){--o-orbit-child-number: 52}:nth-child(54 of .satellite),:nth-child(54 of o-sector),:nth-child(54 of .spoke),:nth-child(54 of o-label){--o-orbit-child-number: 53}:nth-child(55 of .satellite),:nth-child(55 of o-sector),:nth-child(55 of .spoke),:nth-child(55 of o-label){--o-orbit-child-number: 54}:nth-child(56 of .satellite),:nth-child(56 of o-sector),:nth-child(56 of .spoke),:nth-child(56 of o-label){--o-orbit-child-number: 55}:nth-child(57 of .satellite),:nth-child(57 of o-sector),:nth-child(57 of .spoke),:nth-child(57 of o-label){--o-orbit-child-number: 56}:nth-child(58 of .satellite),:nth-child(58 of o-sector),:nth-child(58 of .spoke),:nth-child(58 of o-label){--o-orbit-child-number: 57}:nth-child(59 of .satellite),:nth-child(59 of o-sector),:nth-child(59 of .spoke),:nth-child(59 of o-label){--o-orbit-child-number: 58}:nth-child(60 of .satellite),:nth-child(60 of o-sector),:nth-child(60 of .spoke),:nth-child(60 of o-label){--o-orbit-child-number: 59}.orbit:has(>:nth-child(1 of .satellite),>:nth-child(1 of o-sector),>:nth-child(1 of .spoke),>:nth-child(1 of .segment),>:nth-child(1 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(1 of .satellite),>:nth-child(1 of o-sector),>:nth-child(1 of .spoke),>:nth-child(1 of .segment),>:nth-child(1 of o-label)){--o-angle: calc(var(--o-range) / (1 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(2 of .satellite),>:nth-child(2 of o-sector),>:nth-child(2 of .spoke),>:nth-child(2 of .segment),>:nth-child(2 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(2 of .satellite),>:nth-child(2 of o-sector),>:nth-child(2 of .spoke),>:nth-child(2 of .segment),>:nth-child(2 of o-label)){--o-angle: calc(var(--o-range) / (2 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(3 of .satellite),>:nth-child(3 of o-sector),>:nth-child(3 of .spoke),>:nth-child(3 of .segment),>:nth-child(3 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(3 of .satellite),>:nth-child(3 of o-sector),>:nth-child(3 of .spoke),>:nth-child(3 of .segment),>:nth-child(3 of o-label)){--o-angle: calc(var(--o-range) / (3 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(4 of .satellite),>:nth-child(4 of o-sector),>:nth-child(4 of .spoke),>:nth-child(4 of .segment),>:nth-child(4 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(4 of .satellite),>:nth-child(4 of o-sector),>:nth-child(4 of .spoke),>:nth-child(4 of .segment),>:nth-child(4 of o-label)){--o-angle: calc(var(--o-range) / (4 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(5 of .satellite),>:nth-child(5 of o-sector),>:nth-child(5 of .spoke),>:nth-child(5 of .segment),>:nth-child(5 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(5 of .satellite),>:nth-child(5 of o-sector),>:nth-child(5 of .spoke),>:nth-child(5 of .segment),>:nth-child(5 of o-label)){--o-angle: calc(var(--o-range) / (5 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(6 of .satellite),>:nth-child(6 of o-sector),>:nth-child(6 of .spoke),>:nth-child(6 of .segment),>:nth-child(6 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(6 of .satellite),>:nth-child(6 of o-sector),>:nth-child(6 of .spoke),>:nth-child(6 of .segment),>:nth-child(6 of o-label)){--o-angle: calc(var(--o-range) / (6 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(7 of .satellite),>:nth-child(7 of o-sector),>:nth-child(7 of .spoke),>:nth-child(7 of .segment),>:nth-child(7 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(7 of .satellite),>:nth-child(7 of o-sector),>:nth-child(7 of .spoke),>:nth-child(7 of .segment),>:nth-child(7 of o-label)){--o-angle: calc(var(--o-range) / (7 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(8 of .satellite),>:nth-child(8 of o-sector),>:nth-child(8 of .spoke),>:nth-child(8 of .segment),>:nth-child(8 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(8 of .satellite),>:nth-child(8 of o-sector),>:nth-child(8 of .spoke),>:nth-child(8 of .segment),>:nth-child(8 of o-label)){--o-angle: calc(var(--o-range) / (8 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(9 of .satellite),>:nth-child(9 of o-sector),>:nth-child(9 of .spoke),>:nth-child(9 of .segment),>:nth-child(9 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(9 of .satellite),>:nth-child(9 of o-sector),>:nth-child(9 of .spoke),>:nth-child(9 of .segment),>:nth-child(9 of o-label)){--o-angle: calc(var(--o-range) / (9 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(10 of .satellite),>:nth-child(10 of o-sector),>:nth-child(10 of .spoke),>:nth-child(10 of .segment),>:nth-child(10 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(10 of .satellite),>:nth-child(10 of o-sector),>:nth-child(10 of .spoke),>:nth-child(10 of .segment),>:nth-child(10 of o-label)){--o-angle: calc(var(--o-range) / (10 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(11 of .satellite),>:nth-child(11 of o-sector),>:nth-child(11 of .spoke),>:nth-child(11 of .segment),>:nth-child(11 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(11 of .satellite),>:nth-child(11 of o-sector),>:nth-child(11 of .spoke),>:nth-child(11 of .segment),>:nth-child(11 of o-label)){--o-angle: calc(var(--o-range) / (11 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(12 of .satellite),>:nth-child(12 of o-sector),>:nth-child(12 of .spoke),>:nth-child(12 of .segment),>:nth-child(12 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(12 of .satellite),>:nth-child(12 of o-sector),>:nth-child(12 of .spoke),>:nth-child(12 of .segment),>:nth-child(12 of o-label)){--o-angle: calc(var(--o-range) / (12 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(13 of .satellite),>:nth-child(13 of o-sector),>:nth-child(13 of .spoke),>:nth-child(13 of .segment),>:nth-child(13 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(13 of .satellite),>:nth-child(13 of o-sector),>:nth-child(13 of .spoke),>:nth-child(13 of .segment),>:nth-child(13 of o-label)){--o-angle: calc(var(--o-range) / (13 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(14 of .satellite),>:nth-child(14 of o-sector),>:nth-child(14 of .spoke),>:nth-child(14 of .segment),>:nth-child(14 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(14 of .satellite),>:nth-child(14 of o-sector),>:nth-child(14 of .spoke),>:nth-child(14 of .segment),>:nth-child(14 of o-label)){--o-angle: calc(var(--o-range) / (14 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(15 of .satellite),>:nth-child(15 of o-sector),>:nth-child(15 of .spoke),>:nth-child(15 of .segment),>:nth-child(15 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(15 of .satellite),>:nth-child(15 of o-sector),>:nth-child(15 of .spoke),>:nth-child(15 of .segment),>:nth-child(15 of o-label)){--o-angle: calc(var(--o-range) / (15 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(16 of .satellite),>:nth-child(16 of o-sector),>:nth-child(16 of .spoke),>:nth-child(16 of .segment),>:nth-child(16 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(16 of .satellite),>:nth-child(16 of o-sector),>:nth-child(16 of .spoke),>:nth-child(16 of .segment),>:nth-child(16 of o-label)){--o-angle: calc(var(--o-range) / (16 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(17 of .satellite),>:nth-child(17 of o-sector),>:nth-child(17 of .spoke),>:nth-child(17 of .segment),>:nth-child(17 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(17 of .satellite),>:nth-child(17 of o-sector),>:nth-child(17 of .spoke),>:nth-child(17 of .segment),>:nth-child(17 of o-label)){--o-angle: calc(var(--o-range) / (17 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(18 of .satellite),>:nth-child(18 of o-sector),>:nth-child(18 of .spoke),>:nth-child(18 of .segment),>:nth-child(18 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(18 of .satellite),>:nth-child(18 of o-sector),>:nth-child(18 of .spoke),>:nth-child(18 of .segment),>:nth-child(18 of o-label)){--o-angle: calc(var(--o-range) / (18 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(19 of .satellite),>:nth-child(19 of o-sector),>:nth-child(19 of .spoke),>:nth-child(19 of .segment),>:nth-child(19 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(19 of .satellite),>:nth-child(19 of o-sector),>:nth-child(19 of .spoke),>:nth-child(19 of .segment),>:nth-child(19 of o-label)){--o-angle: calc(var(--o-range) / (19 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(20 of .satellite),>:nth-child(20 of o-sector),>:nth-child(20 of .spoke),>:nth-child(20 of .segment),>:nth-child(20 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(20 of .satellite),>:nth-child(20 of o-sector),>:nth-child(20 of .spoke),>:nth-child(20 of .segment),>:nth-child(20 of o-label)){--o-angle: calc(var(--o-range) / (20 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(21 of .satellite),>:nth-child(21 of o-sector),>:nth-child(21 of .spoke),>:nth-child(21 of .segment),>:nth-child(21 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(21 of .satellite),>:nth-child(21 of o-sector),>:nth-child(21 of .spoke),>:nth-child(21 of .segment),>:nth-child(21 of o-label)){--o-angle: calc(var(--o-range) / (21 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(22 of .satellite),>:nth-child(22 of o-sector),>:nth-child(22 of .spoke),>:nth-child(22 of .segment),>:nth-child(22 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(22 of .satellite),>:nth-child(22 of o-sector),>:nth-child(22 of .spoke),>:nth-child(22 of .segment),>:nth-child(22 of o-label)){--o-angle: calc(var(--o-range) / (22 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(23 of .satellite),>:nth-child(23 of o-sector),>:nth-child(23 of .spoke),>:nth-child(23 of .segment),>:nth-child(23 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(23 of .satellite),>:nth-child(23 of o-sector),>:nth-child(23 of .spoke),>:nth-child(23 of .segment),>:nth-child(23 of o-label)){--o-angle: calc(var(--o-range) / (23 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(24 of .satellite),>:nth-child(24 of o-sector),>:nth-child(24 of .spoke),>:nth-child(24 of .segment),>:nth-child(24 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(24 of .satellite),>:nth-child(24 of o-sector),>:nth-child(24 of .spoke),>:nth-child(24 of .segment),>:nth-child(24 of o-label)){--o-angle: calc(var(--o-range) / (24 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(25 of .satellite),>:nth-child(25 of o-sector),>:nth-child(25 of .spoke),>:nth-child(25 of .segment),>:nth-child(25 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(25 of .satellite),>:nth-child(25 of o-sector),>:nth-child(25 of .spoke),>:nth-child(25 of .segment),>:nth-child(25 of o-label)){--o-angle: calc(var(--o-range) / (25 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(26 of .satellite),>:nth-child(26 of o-sector),>:nth-child(26 of .spoke),>:nth-child(26 of .segment),>:nth-child(26 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(26 of .satellite),>:nth-child(26 of o-sector),>:nth-child(26 of .spoke),>:nth-child(26 of .segment),>:nth-child(26 of o-label)){--o-angle: calc(var(--o-range) / (26 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(27 of .satellite),>:nth-child(27 of o-sector),>:nth-child(27 of .spoke),>:nth-child(27 of .segment),>:nth-child(27 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(27 of .satellite),>:nth-child(27 of o-sector),>:nth-child(27 of .spoke),>:nth-child(27 of .segment),>:nth-child(27 of o-label)){--o-angle: calc(var(--o-range) / (27 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(28 of .satellite),>:nth-child(28 of o-sector),>:nth-child(28 of .spoke),>:nth-child(28 of .segment),>:nth-child(28 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(28 of .satellite),>:nth-child(28 of o-sector),>:nth-child(28 of .spoke),>:nth-child(28 of .segment),>:nth-child(28 of o-label)){--o-angle: calc(var(--o-range) / (28 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(29 of .satellite),>:nth-child(29 of o-sector),>:nth-child(29 of .spoke),>:nth-child(29 of .segment),>:nth-child(29 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(29 of .satellite),>:nth-child(29 of o-sector),>:nth-child(29 of .spoke),>:nth-child(29 of .segment),>:nth-child(29 of o-label)){--o-angle: calc(var(--o-range) / (29 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(30 of .satellite),>:nth-child(30 of o-sector),>:nth-child(30 of .spoke),>:nth-child(30 of .segment),>:nth-child(30 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(30 of .satellite),>:nth-child(30 of o-sector),>:nth-child(30 of .spoke),>:nth-child(30 of .segment),>:nth-child(30 of o-label)){--o-angle: calc(var(--o-range) / (30 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(31 of .satellite),>:nth-child(31 of o-sector),>:nth-child(31 of .spoke),>:nth-child(31 of .segment),>:nth-child(31 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(31 of .satellite),>:nth-child(31 of o-sector),>:nth-child(31 of .spoke),>:nth-child(31 of .segment),>:nth-child(31 of o-label)){--o-angle: calc(var(--o-range) / (31 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(32 of .satellite),>:nth-child(32 of o-sector),>:nth-child(32 of .spoke),>:nth-child(32 of .segment),>:nth-child(32 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(32 of .satellite),>:nth-child(32 of o-sector),>:nth-child(32 of .spoke),>:nth-child(32 of .segment),>:nth-child(32 of o-label)){--o-angle: calc(var(--o-range) / (32 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(33 of .satellite),>:nth-child(33 of o-sector),>:nth-child(33 of .spoke),>:nth-child(33 of .segment),>:nth-child(33 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(33 of .satellite),>:nth-child(33 of o-sector),>:nth-child(33 of .spoke),>:nth-child(33 of .segment),>:nth-child(33 of o-label)){--o-angle: calc(var(--o-range) / (33 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(34 of .satellite),>:nth-child(34 of o-sector),>:nth-child(34 of .spoke),>:nth-child(34 of .segment),>:nth-child(34 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(34 of .satellite),>:nth-child(34 of o-sector),>:nth-child(34 of .spoke),>:nth-child(34 of .segment),>:nth-child(34 of o-label)){--o-angle: calc(var(--o-range) / (34 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(35 of .satellite),>:nth-child(35 of o-sector),>:nth-child(35 of .spoke),>:nth-child(35 of .segment),>:nth-child(35 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(35 of .satellite),>:nth-child(35 of o-sector),>:nth-child(35 of .spoke),>:nth-child(35 of .segment),>:nth-child(35 of o-label)){--o-angle: calc(var(--o-range) / (35 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(36 of .satellite),>:nth-child(36 of o-sector),>:nth-child(36 of .spoke),>:nth-child(36 of .segment),>:nth-child(36 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(36 of .satellite),>:nth-child(36 of o-sector),>:nth-child(36 of .spoke),>:nth-child(36 of .segment),>:nth-child(36 of o-label)){--o-angle: calc(var(--o-range) / (36 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(37 of .satellite),>:nth-child(37 of o-sector),>:nth-child(37 of .spoke),>:nth-child(37 of .segment),>:nth-child(37 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(37 of .satellite),>:nth-child(37 of o-sector),>:nth-child(37 of .spoke),>:nth-child(37 of .segment),>:nth-child(37 of o-label)){--o-angle: calc(var(--o-range) / (37 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(38 of .satellite),>:nth-child(38 of o-sector),>:nth-child(38 of .spoke),>:nth-child(38 of .segment),>:nth-child(38 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(38 of .satellite),>:nth-child(38 of o-sector),>:nth-child(38 of .spoke),>:nth-child(38 of .segment),>:nth-child(38 of o-label)){--o-angle: calc(var(--o-range) / (38 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(39 of .satellite),>:nth-child(39 of o-sector),>:nth-child(39 of .spoke),>:nth-child(39 of .segment),>:nth-child(39 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(39 of .satellite),>:nth-child(39 of o-sector),>:nth-child(39 of .spoke),>:nth-child(39 of .segment),>:nth-child(39 of o-label)){--o-angle: calc(var(--o-range) / (39 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(40 of .satellite),>:nth-child(40 of o-sector),>:nth-child(40 of .spoke),>:nth-child(40 of .segment),>:nth-child(40 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(40 of .satellite),>:nth-child(40 of o-sector),>:nth-child(40 of .spoke),>:nth-child(40 of .segment),>:nth-child(40 of o-label)){--o-angle: calc(var(--o-range) / (40 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(41 of .satellite),>:nth-child(41 of o-sector),>:nth-child(41 of .spoke),>:nth-child(41 of .segment),>:nth-child(41 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(41 of .satellite),>:nth-child(41 of o-sector),>:nth-child(41 of .spoke),>:nth-child(41 of .segment),>:nth-child(41 of o-label)){--o-angle: calc(var(--o-range) / (41 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(42 of .satellite),>:nth-child(42 of o-sector),>:nth-child(42 of .spoke),>:nth-child(42 of .segment),>:nth-child(42 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(42 of .satellite),>:nth-child(42 of o-sector),>:nth-child(42 of .spoke),>:nth-child(42 of .segment),>:nth-child(42 of o-label)){--o-angle: calc(var(--o-range) / (42 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(43 of .satellite),>:nth-child(43 of o-sector),>:nth-child(43 of .spoke),>:nth-child(43 of .segment),>:nth-child(43 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(43 of .satellite),>:nth-child(43 of o-sector),>:nth-child(43 of .spoke),>:nth-child(43 of .segment),>:nth-child(43 of o-label)){--o-angle: calc(var(--o-range) / (43 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(44 of .satellite),>:nth-child(44 of o-sector),>:nth-child(44 of .spoke),>:nth-child(44 of .segment),>:nth-child(44 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(44 of .satellite),>:nth-child(44 of o-sector),>:nth-child(44 of .spoke),>:nth-child(44 of .segment),>:nth-child(44 of o-label)){--o-angle: calc(var(--o-range) / (44 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(45 of .satellite),>:nth-child(45 of o-sector),>:nth-child(45 of .spoke),>:nth-child(45 of .segment),>:nth-child(45 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(45 of .satellite),>:nth-child(45 of o-sector),>:nth-child(45 of .spoke),>:nth-child(45 of .segment),>:nth-child(45 of o-label)){--o-angle: calc(var(--o-range) / (45 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(46 of .satellite),>:nth-child(46 of o-sector),>:nth-child(46 of .spoke),>:nth-child(46 of .segment),>:nth-child(46 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(46 of .satellite),>:nth-child(46 of o-sector),>:nth-child(46 of .spoke),>:nth-child(46 of .segment),>:nth-child(46 of o-label)){--o-angle: calc(var(--o-range) / (46 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(47 of .satellite),>:nth-child(47 of o-sector),>:nth-child(47 of .spoke),>:nth-child(47 of .segment),>:nth-child(47 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(47 of .satellite),>:nth-child(47 of o-sector),>:nth-child(47 of .spoke),>:nth-child(47 of .segment),>:nth-child(47 of o-label)){--o-angle: calc(var(--o-range) / (47 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(48 of .satellite),>:nth-child(48 of o-sector),>:nth-child(48 of .spoke),>:nth-child(48 of .segment),>:nth-child(48 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(48 of .satellite),>:nth-child(48 of o-sector),>:nth-child(48 of .spoke),>:nth-child(48 of .segment),>:nth-child(48 of o-label)){--o-angle: calc(var(--o-range) / (48 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(49 of .satellite),>:nth-child(49 of o-sector),>:nth-child(49 of .spoke),>:nth-child(49 of .segment),>:nth-child(49 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(49 of .satellite),>:nth-child(49 of o-sector),>:nth-child(49 of .spoke),>:nth-child(49 of .segment),>:nth-child(49 of o-label)){--o-angle: calc(var(--o-range) / (49 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(50 of .satellite),>:nth-child(50 of o-sector),>:nth-child(50 of .spoke),>:nth-child(50 of .segment),>:nth-child(50 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(50 of .satellite),>:nth-child(50 of o-sector),>:nth-child(50 of .spoke),>:nth-child(50 of .segment),>:nth-child(50 of o-label)){--o-angle: calc(var(--o-range) / (50 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(51 of .satellite),>:nth-child(51 of o-sector),>:nth-child(51 of .spoke),>:nth-child(51 of .segment),>:nth-child(51 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(51 of .satellite),>:nth-child(51 of o-sector),>:nth-child(51 of .spoke),>:nth-child(51 of .segment),>:nth-child(51 of o-label)){--o-angle: calc(var(--o-range) / (51 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(52 of .satellite),>:nth-child(52 of o-sector),>:nth-child(52 of .spoke),>:nth-child(52 of .segment),>:nth-child(52 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(52 of .satellite),>:nth-child(52 of o-sector),>:nth-child(52 of .spoke),>:nth-child(52 of .segment),>:nth-child(52 of o-label)){--o-angle: calc(var(--o-range) / (52 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(53 of .satellite),>:nth-child(53 of o-sector),>:nth-child(53 of .spoke),>:nth-child(53 of .segment),>:nth-child(53 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(53 of .satellite),>:nth-child(53 of o-sector),>:nth-child(53 of .spoke),>:nth-child(53 of .segment),>:nth-child(53 of o-label)){--o-angle: calc(var(--o-range) / (53 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(54 of .satellite),>:nth-child(54 of o-sector),>:nth-child(54 of .spoke),>:nth-child(54 of .segment),>:nth-child(54 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(54 of .satellite),>:nth-child(54 of o-sector),>:nth-child(54 of .spoke),>:nth-child(54 of .segment),>:nth-child(54 of o-label)){--o-angle: calc(var(--o-range) / (54 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(55 of .satellite),>:nth-child(55 of o-sector),>:nth-child(55 of .spoke),>:nth-child(55 of .segment),>:nth-child(55 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(55 of .satellite),>:nth-child(55 of o-sector),>:nth-child(55 of .spoke),>:nth-child(55 of .segment),>:nth-child(55 of o-label)){--o-angle: calc(var(--o-range) / (55 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(56 of .satellite),>:nth-child(56 of o-sector),>:nth-child(56 of .spoke),>:nth-child(56 of .segment),>:nth-child(56 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(56 of .satellite),>:nth-child(56 of o-sector),>:nth-child(56 of .spoke),>:nth-child(56 of .segment),>:nth-child(56 of o-label)){--o-angle: calc(var(--o-range) / (56 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(57 of .satellite),>:nth-child(57 of o-sector),>:nth-child(57 of .spoke),>:nth-child(57 of .segment),>:nth-child(57 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(57 of .satellite),>:nth-child(57 of o-sector),>:nth-child(57 of .spoke),>:nth-child(57 of .segment),>:nth-child(57 of o-label)){--o-angle: calc(var(--o-range) / (57 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(58 of .satellite),>:nth-child(58 of o-sector),>:nth-child(58 of .spoke),>:nth-child(58 of .segment),>:nth-child(58 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(58 of .satellite),>:nth-child(58 of o-sector),>:nth-child(58 of .spoke),>:nth-child(58 of .segment),>:nth-child(58 of o-label)){--o-angle: calc(var(--o-range) / (58 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(59 of .satellite),>:nth-child(59 of o-sector),>:nth-child(59 of .spoke),>:nth-child(59 of .segment),>:nth-child(59 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(59 of .satellite),>:nth-child(59 of o-sector),>:nth-child(59 of .spoke),>:nth-child(59 of .segment),>:nth-child(59 of o-label)){--o-angle: calc(var(--o-range) / (59 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(60 of .satellite),>:nth-child(60 of o-sector),>:nth-child(60 of .spoke),>:nth-child(60 of .segment),>:nth-child(60 of o-label)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(60 of .satellite),>:nth-child(60 of o-sector),>:nth-child(60 of .spoke),>:nth-child(60 of .segment),>:nth-child(60 of o-label)){--o-angle: calc(var(--o-range) / (60 - var(--o-fit-range, 0)))}.orbit:has(>:nth-child(1 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(1 of .segment)){--o-angle: calc(var(--o-range) / 1)}.orbit:has(>:nth-child(2 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(2 of .segment)){--o-angle: calc(var(--o-range) / 2)}.orbit:has(>:nth-child(3 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(3 of .segment)){--o-angle: calc(var(--o-range) / 3)}.orbit:has(>:nth-child(4 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(4 of .segment)){--o-angle: calc(var(--o-range) / 4)}.orbit:has(>:nth-child(5 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(5 of .segment)){--o-angle: calc(var(--o-range) / 5)}.orbit:has(>:nth-child(6 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(6 of .segment)){--o-angle: calc(var(--o-range) / 6)}.orbit:has(>:nth-child(7 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(7 of .segment)){--o-angle: calc(var(--o-range) / 7)}.orbit:has(>:nth-child(8 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(8 of .segment)){--o-angle: calc(var(--o-range) / 8)}.orbit:has(>:nth-child(9 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(9 of .segment)){--o-angle: calc(var(--o-range) / 9)}.orbit:has(>:nth-child(10 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(10 of .segment)){--o-angle: calc(var(--o-range) / 10)}.orbit:has(>:nth-child(11 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(11 of .segment)){--o-angle: calc(var(--o-range) / 11)}.orbit:has(>:nth-child(12 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(12 of .segment)){--o-angle: calc(var(--o-range) / 12)}.orbit:has(>:nth-child(13 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(13 of .segment)){--o-angle: calc(var(--o-range) / 13)}.orbit:has(>:nth-child(14 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(14 of .segment)){--o-angle: calc(var(--o-range) / 14)}.orbit:has(>:nth-child(15 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(15 of .segment)){--o-angle: calc(var(--o-range) / 15)}.orbit:has(>:nth-child(16 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(16 of .segment)){--o-angle: calc(var(--o-range) / 16)}.orbit:has(>:nth-child(17 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(17 of .segment)){--o-angle: calc(var(--o-range) / 17)}.orbit:has(>:nth-child(18 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(18 of .segment)){--o-angle: calc(var(--o-range) / 18)}.orbit:has(>:nth-child(19 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(19 of .segment)){--o-angle: calc(var(--o-range) / 19)}.orbit:has(>:nth-child(20 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(20 of .segment)){--o-angle: calc(var(--o-range) / 20)}.orbit:has(>:nth-child(21 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(21 of .segment)){--o-angle: calc(var(--o-range) / 21)}.orbit:has(>:nth-child(22 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(22 of .segment)){--o-angle: calc(var(--o-range) / 22)}.orbit:has(>:nth-child(23 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(23 of .segment)){--o-angle: calc(var(--o-range) / 23)}.orbit:has(>:nth-child(24 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(24 of .segment)){--o-angle: calc(var(--o-range) / 24)}.orbit:has(>:nth-child(25 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(25 of .segment)){--o-angle: calc(var(--o-range) / 25)}.orbit:has(>:nth-child(26 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(26 of .segment)){--o-angle: calc(var(--o-range) / 26)}.orbit:has(>:nth-child(27 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(27 of .segment)){--o-angle: calc(var(--o-range) / 27)}.orbit:has(>:nth-child(28 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(28 of .segment)){--o-angle: calc(var(--o-range) / 28)}.orbit:has(>:nth-child(29 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(29 of .segment)){--o-angle: calc(var(--o-range) / 29)}.orbit:has(>:nth-child(30 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(30 of .segment)){--o-angle: calc(var(--o-range) / 30)}.orbit:has(>:nth-child(31 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(31 of .segment)){--o-angle: calc(var(--o-range) / 31)}.orbit:has(>:nth-child(32 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(32 of .segment)){--o-angle: calc(var(--o-range) / 32)}.orbit:has(>:nth-child(33 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(33 of .segment)){--o-angle: calc(var(--o-range) / 33)}.orbit:has(>:nth-child(34 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(34 of .segment)){--o-angle: calc(var(--o-range) / 34)}.orbit:has(>:nth-child(35 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(35 of .segment)){--o-angle: calc(var(--o-range) / 35)}.orbit:has(>:nth-child(36 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(36 of .segment)){--o-angle: calc(var(--o-range) / 36)}.orbit:has(>:nth-child(37 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(37 of .segment)){--o-angle: calc(var(--o-range) / 37)}.orbit:has(>:nth-child(38 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(38 of .segment)){--o-angle: calc(var(--o-range) / 38)}.orbit:has(>:nth-child(39 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(39 of .segment)){--o-angle: calc(var(--o-range) / 39)}.orbit:has(>:nth-child(40 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(40 of .segment)){--o-angle: calc(var(--o-range) / 40)}.orbit:has(>:nth-child(41 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(41 of .segment)){--o-angle: calc(var(--o-range) / 41)}.orbit:has(>:nth-child(42 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(42 of .segment)){--o-angle: calc(var(--o-range) / 42)}.orbit:has(>:nth-child(43 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(43 of .segment)){--o-angle: calc(var(--o-range) / 43)}.orbit:has(>:nth-child(44 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(44 of .segment)){--o-angle: calc(var(--o-range) / 44)}.orbit:has(>:nth-child(45 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(45 of .segment)){--o-angle: calc(var(--o-range) / 45)}.orbit:has(>:nth-child(46 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(46 of .segment)){--o-angle: calc(var(--o-range) / 46)}.orbit:has(>:nth-child(47 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(47 of .segment)){--o-angle: calc(var(--o-range) / 47)}.orbit:has(>:nth-child(48 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(48 of .segment)){--o-angle: calc(var(--o-range) / 48)}.orbit:has(>:nth-child(49 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(49 of .segment)){--o-angle: calc(var(--o-range) / 49)}.orbit:has(>:nth-child(50 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(50 of .segment)){--o-angle: calc(var(--o-range) / 50)}.orbit:has(>:nth-child(51 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(51 of .segment)){--o-angle: calc(var(--o-range) / 51)}.orbit:has(>:nth-child(52 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(52 of .segment)){--o-angle: calc(var(--o-range) / 52)}.orbit:has(>:nth-child(53 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(53 of .segment)){--o-angle: calc(var(--o-range) / 53)}.orbit:has(>:nth-child(54 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(54 of .segment)){--o-angle: calc(var(--o-range) / 54)}.orbit:has(>:nth-child(55 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(55 of .segment)){--o-angle: calc(var(--o-range) / 55)}.orbit:has(>:nth-child(56 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(56 of .segment)){--o-angle: calc(var(--o-range) / 56)}.orbit:has(>:nth-child(57 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(57 of .segment)){--o-angle: calc(var(--o-range) / 57)}.orbit:has(>:nth-child(58 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(58 of .segment)){--o-angle: calc(var(--o-range) / 58)}.orbit:has(>:nth-child(59 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(59 of .segment)){--o-angle: calc(var(--o-range) / 59)}.orbit:has(>:nth-child(60 of .segment)),[class*=orbit-]:not(.orbit-zone):has(>:nth-child(60 of .segment)){--o-angle: calc(var(--o-range) / 60)}/*!
-## .capsule
-
-Capsule is a class to put text or another content. Currently, it can be used into `satellites` and `segments`.
-There are some utilties to modify `.capsule` orientation content.
-
-### Usage
-
-```html
-