/* @license GNU-GPL-2.0-or-later https://www.drupal.org/licensing/faq */
.ajax-progress {
    display: inline-block;
    padding: 1px 5px 2px 5px;
}
*{
    text-align: justify;
}

[dir="rtl"] .ajax-progress {
    float: right;
}

.ajax-progress-throbber .throbber {
    display: inline;
    padding: 1px 5px 2px;
    background: transparent url(/core/misc/throbber-active.gif) no-repeat 0 center;
}

.ajax-progress-throbber .message {
    display: inline;
    padding: 1px 5px 2px;
}

tr .ajax-progress-throbber .throbber {
    margin: 0 2px;
}

.ajax-progress-bar {
    width: 16em;
}

.ajax-progress-fullscreen {
    position: fixed;
    z-index: 1000;
    top: 48.5%;
    left: 49%;
    width: 24px;
    height: 24px;
    padding: 4px;
    opacity: 0.9;
    border-radius: 7px;
    background-color: #232323;
    background-image: url(/core/misc/loading-small.gif);
    background-repeat: no-repeat;
    background-position: center center;
}

[dir="rtl"] .ajax-progress-fullscreen {
    right: 49%;
    left: auto;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

.text-align-justify {
    text-align: justify;
}

.align-left {
    float: left;
}

.align-right {
    float: right;
}

.align-center {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.js input.form-autocomplete {
    background-image: url(/core/misc/throbber-inactive.png);
    background-repeat: no-repeat;
    background-position: 100% center;
}

.js[dir="rtl"] input.form-autocomplete {
    background-position: 0% center;
}

.js input.form-autocomplete.ui-autocomplete-loading {
    background-image: url(/core/misc/throbber-active.gif);
    background-position: 100% center;
}

.js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
    background-position: 0% center;
}

.fieldgroup {
    padding: 0;
    border-width: 0;
}

.container-inline div,.container-inline label {
    display: inline-block;
}

.container-inline .details-wrapper {
    display: block;
}

.clearfix::after {
    display: table;
    clear: both;
    content: "";
}

.js details:not([open]) .details-wrapper {
    display: none;
}

.hidden {
    display: none;
}

.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    width: 1px;
    height: 1px;
    word-wrap: normal;
}

.visually-hidden.focusable:active,.visually-hidden.focusable:focus {
    position: static !important;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
}

.invisible {
    visibility: hidden;
}

.item-list__comma-list,.item-list__comma-list li {
    display: inline;
}

.item-list__comma-list {
    margin: 0;
    padding: 0;
}

.item-list__comma-list li::after {
    content: ", ";
}

.item-list__comma-list li:last-child::after {
    content: "";
}

.js .js-hide {
    display: none;
}

.js-show {
    display: none;
}

.js .js-show {
    display: block;
}

.nowrap {
    white-space: nowrap;
}

.position-container {
    position: relative;
}

.progress {
    position: relative;
}

.progress__track {
    min-width: 100px;
    max-width: 100%;
    height: 16px;
    margin-top: 5px;
    border: 1px solid;
    background-color: #fff;
}

.progress__bar {
    width: 3%;
    min-width: 3%;
    max-width: 100%;
    height: 16px;
    background-color: #000;
}

.progress__description,.progress__percentage {
    overflow: hidden;
    margin-top: 0.2em;
    color: #555;
    font-size: 0.875em;
}

.progress__description {
    float: left;
}

[dir="rtl"] .progress__description {
    float: right;
}

.progress__percentage {
    float: right;
}

[dir="rtl"] .progress__percentage {
    float: left;
}

.progress--small .progress__track {
    height: 7px;
}

.progress--small .progress__bar {
    height: 7px;
    background-size: 20px 20px;
}

.reset-appearance {
    margin: 0;
    padding: 0;
    border: 0 none;
    background: transparent;
    line-height: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.resize-none {
    resize: none;
}

.resize-vertical {
    min-height: 2em;
    resize: vertical;
}

.resize-horizontal {
    max-width: 100%;
    resize: horizontal;
}

.resize-both {
    max-width: 100%;
    min-height: 2em;
    resize: both;
}

table.sticky-header {
    z-index: 500;
    top: 0;
    margin-top: 0;
    background-color: #fff;
}

.system-status-counter__status-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.system-status-counter__status-icon::before {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-position: center 2px;
    background-size: 16px;
}

.system-status-counter__status-icon--error::before {
    background-image: url(/core/misc/icons/e32700/error.svg);
}

.system-status-counter__status-icon--warning::before {
    background-image: url(/core/misc/icons/e29700/warning.svg);
}

.system-status-counter__status-icon--checked::before {
    background-image: url(/core/misc/icons/73b355/check.svg);
}

.system-status-report-counters__item {
    width: 100%;
    margin-bottom: 0.5em;
    padding: 0.5em 0;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(0,0,0,0.063);
}

@media screen and (min-width: 60em) {
    .system-status-report-counters {
        display:flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .system-status-report-counters__item--half-width {
        width: 49%;
    }

    .system-status-report-counters__item--third-width {
        width: 33%;
    }
}

.system-status-general-info__item {
    margin-top: 1em;
    padding: 0 1em 1em;
    border: 1px solid #ccc;
}

.system-status-general-info__item-title {
    border-bottom: 1px solid #ccc;
}

body.drag {
    cursor: move;
}

tr.region-title {
    font-weight: bold;
}

tr.region-message {
    color: #999;
}

tr.region-populated {
    display: none;
}

tr.add-new .tabledrag-changed {
    display: none;
}

.draggable a.tabledrag-handle {
    float: left;
    overflow: hidden;
    height: 1.7em;
    margin-left: -1em;
    cursor: move;
    text-decoration: none;
}

[dir="rtl"] .draggable a.tabledrag-handle {
    float: right;
    margin-right: -1em;
    margin-left: 0;
}

a.tabledrag-handle:hover {
    text-decoration: none;
}

a.tabledrag-handle .handle {
    width: 14px;
    height: 14px;
    margin: -0.4em 0.5em 0;
    padding: 0.42em 0.5em;
    background: url(/core/misc/icons/787878/move.svg) no-repeat 6px 7px;
}

a.tabledrag-handle:hover .handle,a.tabledrag-handle:focus .handle {
    background-image: url(/core/misc/icons/000000/move.svg);
}

.touchevents .draggable td {
    padding: 0 10px;
}

.touchevents .draggable .menu-item__link {
    display: inline-block;
    padding: 10px 0;
}

.touchevents a.tabledrag-handle {
    width: 40px;
    height: 44px;
}

.touchevents a.tabledrag-handle .handle {
    height: 21px;
    background-position: 40% 19px;
}

[dir="rtl"] .touch a.tabledrag-handle .handle {
    background-position: right 40% top 19px;
}

.touchevents .draggable.drag a.tabledrag-handle .handle {
    background-position: 50% -32px;
}

.tabledrag-toggle-weight-wrapper {
    text-align: right;
}

[dir="rtl"] .tabledrag-toggle-weight-wrapper {
    text-align: left;
}

.indentation {
    float: left;
    width: 20px;
    height: 1.7em;
    margin: -0.4em 0.2em -0.4em -0.4em;
    padding: 0.42em 0 0.42em 0.6em;
}

[dir="rtl"] .indentation {
    float: right;
    margin: -0.4em -0.4em -0.4em 0.2em;
    padding: 0.42em 0.6em 0.42em 0;
}

.tablesort {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: 100%;
}

.tablesort--asc {
    background-image: url(/core/misc/icons/787878/twistie-down.svg);
}

.tablesort--desc {
    background-image: url(/core/misc/icons/787878/twistie-up.svg);
}

div.tree-child {
    background: url(/core/misc/tree.png) no-repeat 11px center;
}

div.tree-child-last {
    background: url(/core/misc/tree-bottom.png) no-repeat 11px center;
}

[dir="rtl"] div.tree-child,[dir="rtl"] div.tree-child-last {
    background-position: -65px center;
}

div.tree-child-horizontal {
    background: url(/core/misc/tree.png) no-repeat -11px center;
}

html.js .js-webform-visually-hidden,html.js .js-webform-visually-hidden[style*="display: none"] {
    position: absolute !important;
    display: inline !important;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    width: 1px;
    height: 1px;
    word-wrap: normal;
}

.js-form-item.js-webform-states-hidden,.js-form-submit.js-webform-states-hidden,.js-form-wrapper.js-webform-states-hidden,.js-webform-text-format-hidden > .js-text-format-wrapper {
    display: none;
}

.form--inline .form-item {
    float: left;
    margin-right: 0.5em;
}

[dir="rtl"] .form--inline .form-item {
    float: right;
    margin-right: 0;
    margin-left: 0.5em;
}

.webform-element-description p:first-child {
    margin-top: 0;
}

.webform-element-description p:last-child {
    margin-bottom: 0;
}

.form-item .container-inline {
    margin: 2px 0;
}

.form-checkboxes .form-required:after,.form-radios .form-required:after {
    display: none;
}

.webform-element--title-inline > label {
    display: inline;
    padding-right: 0.5em;
}

.webform-element--title-inline > div.container-inline {
    display: inline;
}

.form-composite.webform-fieldset--title-inline legend {
    float: left;
    margin: 0.4em 0.5em 0.4em 0;
}

[dir=rtl] .form-composite.webform-fieldset--title-inline legend {
    float: right;
    margin-right: 0;
    margin-left: 0.5em;
}

.form-composite.webform-fieldset--title-inline .fieldset-wrapper,.form-composite.webform-fieldset--title-inline .fieldset-wrapper > div {
    display: inline;
}

.webform-element--title-inline .form-radios,.webform-element--title-inline .form-checkboxes {
    display: inline;
}

.webform-submission-form strong.error.form-item--error-message {
    display: block;
}

.webform-readonly input[type="date"],.webform-readonly input[type="datetime-local"],.webform-readonly input[type="email"],.webform-readonly input[type="number"],.webform-readonly input[type="password"],.webform-readonly input[type="search"],.webform-readonly input[type="tel"],.webform-readonly input[type="text"],.webform-readonly input[type="time"],.webform-readonly input[type="url"],.webform-readonly textarea {
    color: #6B6B6B;
    border-color: #bbb;
    background: #ededed;
}

.webform-details-toggle-state-wrapper {
    text-align: right;
    margin-top: 1em;
}

[dir="rtl"] .webform-details-toggle-state-wrapper {
    text-align: left;
}

.webform-details-toggle-state-wrapper + details {
    margin-top: 0;
}

.webform-details-toggle-state {
    margin-top: 0;
    padding: 0;
    cursor: pointer;
    border: 0;
    background: transparent;
    font-size: 1em;
    text-decoration: none;
    color: #337ab7;
}

.webform-details-toggle-state:hover,.webform-details-toggle-statelink:focus {
    text-decoration: underline;
}

.webform-tabs .webform-details-toggle-state-wrapper {
    float: right;
}

@media screen and (max-width: 600px) {
    .webform-tabs .webform-details-toggle-state-wrapper {
        float:none;
    }
}

.webform-message--close .messages {
    position: relative;
    padding-right: 35px;
}

.webform-message--close .webform-message__link {
    display: none;
}

html.js .webform-message--close .webform-message__link {
    position: absolute;
    top: 11px;
    right: 10px;
    display: block;
    font-size: 24px;
    line-height: 24px;
}

html[dir="rtl"].js .webform-message--close .webform-message__link {
    top: 11px;
    right: inherit;
    left: 10px;
}

.webform-message__link {
    opacity: 0.33;
    color: inherit;
}

.webform-message__link:link {
    text-decoration: none;
    border-bottom: none;
}

.webform-message__link:hover,.webform-message__link:focus,.webform-message__link:active {
    text-decoration: none;
    opacity: 1;
    color: inherit;
    border-bottom: none;
}

html.js .js-webform-message--close-storage {
    display: none;
}

.js-webform-message--close .button--dismiss {
    display: none;
}

.paragraph--unpublished {
    background-color: #fff4f4;
}
/* @license GNU-GPL-2.0-or-later https://www.drupal.org/licensing/faq */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace,monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,strong {
    font-weight: bolder;
}

code,kbd,samp {
    font-family: monospace,monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,input,optgroup,select,textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,input {
    overflow: visible;
}

button,select {
    text-transform: none;
}

button,[type="button"],[type="reset"],[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre {
    margin: 0;
}

button {
    background-color: transparent;
    background-image: none;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
    margin: 0;
    padding: 0;
}

ol,ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

html {
    font-family: Helvetica,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    line-height: 1.5;
}

*,::before,::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #EDEDED;
}

hr {
    border-top-width: 1px;
}

img {
    border-style: solid;
}

textarea {
    resize: vertical;
}

input::-moz-placeholder,textarea::-moz-placeholder {
    color: #a0aec0;
}

input:-ms-input-placeholder,textarea:-ms-input-placeholder {
    color: #a0aec0;
}

input::placeholder,textarea::placeholder {
    color: #a0aec0;
}

button,[role="button"] {
    cursor: pointer;
}

table {
    border-collapse: collapse;
}

h1,h2,h3,h4,h5,h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

button,input,optgroup,select,textarea {
    padding: 0;
    line-height: inherit;
    color: inherit;
}

pre,code,kbd,samp {
    font-family: Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

img,svg,video,canvas,audio,iframe,embed,object {
    display: block;
    vertical-align: middle;
}

img,video {
    max-width: 100%;
    height: auto;
}

:root {
    --content-primary: #3f3f3f;
    --background-brand-primary: #0d3050;
    --shadow-level-0: '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)';
}

html[data-theme='ramsayservices'] {
    --content-primary: #222222;
    --background-brand-primary: #1469d6;
    --shadow-level-0: 0px 4px 30px rgb(0 0 0 / 10%);
}

html[data-theme='ramsayservices'] .Form_Select__Wrapper .Form_Select__control {
    border-radius: 0.25rem;
    min-height: 4.375rem;
}

html[data-theme='ramsayservices'] .Form_Select__Wrapper .Form_Select__indicators {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
    border-radius: 0.25rem;
}

html[data-theme='ramsayservices'] .Form_Select__Action {
    bottom: 28px;
}

.container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 100%) {
    .container {
        max-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;
    }
}

.space-y-8 > :not(template) ~ :not(template) {
    --space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--space-y-reverse));
}

.space-y-10 > :not(template) ~ :not(template) {
    --space-y-reverse: 0;
    margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.625rem * var(--space-y-reverse));
}

.space-x-10 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(0.625rem * var(--space-x-reverse));
    margin-left: calc(0.625rem * calc(1 - var(--space-x-reverse)));
}

.space-y-12 > :not(template) ~ :not(template) {
    --space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--space-y-reverse));
}

.space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(0.75rem * var(--space-x-reverse));
    margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse)));
}

.space-x-16 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(1rem * var(--space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
}

.space-y-20 > :not(template) ~ :not(template) {
    --space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--space-y-reverse));
}

.space-x-20 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(1.25rem * var(--space-x-reverse));
    margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
}

.space-x-24 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(1.5rem * var(--space-x-reverse));
    margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse)));
}

.space-y-30 > :not(template) ~ :not(template) {
    --space-y-reverse: 0;
    margin-top: calc(1.875rem * calc(1 - var(--space-y-reverse)));
    margin-bottom: calc(1.875rem * var(--space-y-reverse));
}

.space-x-30 > :not(template) ~ :not(template) {
    --space-x-reverse: 0;
    margin-right: calc(1.875rem * var(--space-x-reverse));
    margin-left: calc(1.875rem * calc(1 - var(--space-x-reverse)));
}

.bg-white {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
}

.bg-pink-500 {
    --bg-opacity: 1;
    background-color: #FDC3DB;
    background-color: rgba(253,195,219,var(--bg-opacity));
}

.bg-secondaryblue-100 {
    --bg-opacity: 1;
    background-color: #E6F2F7;
    background-color: rgba(230,242,247,var(--bg-opacity));
}

.bg-secondaryblue-500 {
    --bg-opacity: 1;
    background-color: #007DB3;
    background-color: rgba(0,125,179,var(--bg-opacity));
}

.bg-lightblue-200 {
    --bg-opacity: 1;
    background-color: #F8FAFC;
    background-color: rgba(248,250,252,var(--bg-opacity));
}

.bg-lightblue-300 {
    --bg-opacity: 1;
    background-color: #F4F6FA;
    background-color: rgba(244,246,250,var(--bg-opacity));
}

.bg-lightblue-400 {
    --bg-opacity: 1;
    background-color: #EBF0F6;
    background-color: rgba(235,240,246,var(--bg-opacity));
}

.bg-lightblue-500 {
    --bg-opacity: 1;
    background-color: #E3E9F2;
    background-color: rgba(227,233,242,var(--bg-opacity));
}

.bg-gray-200 {
    --bg-opacity: 1;
    background-color: #F4F4F4;
    background-color: rgba(244,244,244,var(--bg-opacity));
}

.bg-gray-300 {
    --bg-opacity: 1;
    background-color: #EDEDED;
    background-color: rgba(237,237,237,var(--bg-opacity));
}

.bg-gray-800 {
    --bg-opacity: 1;
    background-color: #5F5F5F;
    background-color: rgba(95,95,95,var(--bg-opacity));
}

.bg-brand-100 {
    --bg-opacity: 1;
    background-color: #E7EAEE;
    background-color: rgba(231,234,238,var(--bg-opacity));
}

.bg-brand-500 {
    background-color: var(--background-brand-primary,#0d3050);
}

.bg-blue-500 {
    --bg-opacity: 1;
    background-color: #0094D2;
    background-color: rgba(0,148,210,var(--bg-opacity));
}

.bg-concrete-500 {
    --bg-opacity: 1;
    background-color: #F2F2F2;
    background-color: rgba(242,242,242,var(--bg-opacity));
}

.bg-lightgreen-500 {
    --bg-opacity: 1;
    background-color: #C8D3AF;
    background-color: rgba(200,211,175,var(--bg-opacity));
}

.bg-orange-500 {
    --bg-opacity: 1;
    background-color: #F28F68;
    background-color: rgba(242,143,104,var(--bg-opacity));
}

.hover\:bg-lightblue-300:hover {
    --bg-opacity: 1;
    background-color: #F4F6FA;
    background-color: rgba(244,246,250,var(--bg-opacity));
}

.bg-right-top {
    background-position: right top;
}

.border-transparent {
    border-color: transparent;
}

.border-black {
    --border-opacity: 1;
    border-color: #000;
    border-color: rgba(0,0,0,var(--border-opacity));
}

.border-white {
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255,255,255,var(--border-opacity));
}

.border-secondaryblue-500 {
    --border-opacity: 1;
    border-color: #007DB3;
    border-color: rgba(0,125,179,var(--border-opacity));
}

.border-dark-500 {
    border-color: var(--content-primary,#3F3F3F);
}

.border-lightblue-500 {
    --border-opacity: 1;
    border-color: #E3E9F2;
    border-color: rgba(227,233,242,var(--border-opacity));
}

.border-gray-500 {
    --border-opacity: 1;
    border-color: #D2D2D2;
    border-color: rgba(210,210,210,var(--border-opacity));
}

.border-brand-500 {
    border-color: var(--background-brand-primary,#0d3050);
}

.border-blue-500 {
    --border-opacity: 1;
    border-color: #0094D2;
    border-color: rgba(0,148,210,var(--border-opacity));
}

.border-orange-500 {
    --border-opacity: 1;
    border-color: #F28F68;
    border-color: rgba(242,143,104,var(--border-opacity));
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-tr {
    border-top-right-radius: 0.25rem;
}

.rounded-bl {
    border-bottom-left-radius: 0.25rem;
}

.rounded-bl-full {
    border-bottom-left-radius: 9999px;
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border {
    border-width: 1px;
}

.border-t-2 {
    border-top-width: 2px;
}

.border-b-2 {
    border-bottom-width: 2px;
}

.border-r-4 {
    border-right-width: 4px;
}

.border-b-4 {
    border-bottom-width: 4px;
}

.border-t {
    border-top-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.cursor-pointer {
    cursor: pointer;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.table {
    display: table;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-stretch {
    align-items: stretch;
}

.self-end {
    align-self: flex-end;
}

.self-stretch {
    align-self: stretch;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-self-center {
    justify-self: center;
}

.flex-1 {
    flex: 1 1 0%;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-semibold {
    font-weight: 600;
}

.h-0 {
    height: 0;
}

.h-10 {
    height: 0.625rem;
}

.h-16 {
    height: 1rem;
}

.h-20 {
    height: 1.25rem;
}

.h-24 {
    height: 1.5rem;
}

.h-30 {
    height: 1.875rem;
}

.h-32 {
    height: 2rem;
}

.h-40 {
    height: 2.5rem;
}

.h-50 {
    height: 3.125rem;
}

.h-60 {
    height: 3.75rem;
}

.h-70 {
    height: 4.375rem;
}

.h-80 {
    height: 5rem;
}

.h-128 {
    height: 8rem;
}

.h-160 {
    height: 10rem;
}

.h-192 {
    height: 12rem;
}

.h-256 {
    height: 16rem;
}

.h-auto {
    height: auto;
}

.h-full {
    height: 100%;
}

.text-12 {
    font-size: 0.75rem;
}

.text-14 {
    font-size: 0.875rem;
}

.text-16 {
    font-size: 1rem;
}

.text-18 {
    font-size: 1.125rem;
}

.text-20 {
    font-size: 1.25rem;
}

.text-22 {
    font-size: 1.375rem;
}

.text-24 {
    font-size: 1.5rem;
}

.text-26 {
    font-size: 1.625rem;
}

.text-30 {
    font-size: 1.875rem;
}

.text-32 {
    font-size: 2rem;
}

.text-36 {
    font-size: 2.25rem;
}

.text-40 {
    font-size: 2.5rem;
}

.text-48 {
    font-size: 3rem;
}

.text-64 {
    font-size: 4rem;
}

.leading-4 {
    line-height: 1rem;
}

.leading-5 {
    line-height: 1.125;
}

.leading-6 {
    line-height: 1.5rem;
}

.leading-7 {
    line-height: 1.75rem;
}

.leading-8 {
    line-height: 2rem;
}

.leading-9 {
    line-height: 2.25rem;
}

.leading-10 {
    line-height: 2.5rem;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.125;
}

.leading-snug {
    line-height: 1.375;
}

.leading-normal {
    line-height: 1.5;
}

.list-inside {
    list-style-position: inside;
}

.list-disc {
    list-style-type: disc;
}

.m-auto {
    margin: auto;
}

.mx-4 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.my-6 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
}

.mx-6 {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
}

.mx-10 {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
}

.my-12 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.mx-12 {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.my-16 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.my-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-30 {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
}

.my-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.mx-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}

.my-50 {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-4 {
    margin-top: 0.25rem;
}

.mb-4 {
    margin-bottom: 0.25rem;
}

.ml-4 {
    margin-left: 0.25rem;
}

.mt-6 {
    margin-top: 0.375rem;
}

.mr-6 {
    margin-right: 0.375rem;
}

.mb-6 {
    margin-bottom: 0.375rem;
}

.mr-8 {
    margin-right: 0.5rem;
}

.mb-8 {
    margin-bottom: 0.5rem;
}

.mt-10 {
    margin-top: 0.625rem;
}

.mr-10 {
    margin-right: 0.625rem;
}

.mb-10 {
    margin-bottom: 0.625rem;
}

.ml-10 {
    margin-left: 0.625rem;
}

.mt-12 {
    margin-top: 0.75rem;
}

.mr-12 {
    margin-right: 0.75rem;
}

.mb-12 {
    margin-bottom: 0.75rem;
}

.ml-12 {
    margin-left: 0.75rem;
}

.mt-16 {
    margin-top: 1rem;
}

.mr-16 {
    margin-right: 1rem;
}

.mb-16 {
    margin-bottom: 1rem;
}

.ml-16 {
    margin-left: 1rem;
}

.mt-20 {
    margin-top: 1.25rem;
}

.mr-20 {
    margin-right: 1.25rem;
}

.mb-20 {
    margin-bottom: 1.25rem;
}

.mt-24 {
    margin-top: 1.5rem;
}

.mr-24 {
    margin-right: 1.5rem;
}

.mb-24 {
    margin-bottom: 1.5rem;
}

.ml-24 {
    margin-left: 1.5rem;
}

.mt-30 {
    margin-top: 1.875rem;
}

.mb-30 {
    margin-bottom: 1.875rem;
}

.mt-32 {
    margin-top: 2rem;
}

.mt-40 {
    margin-top: 2.5rem;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

.mt-50 {
    margin-top: 3.125rem;
}

.mb-50 {
    margin-bottom: 3.125rem;
}

.mt-60 {
    margin-top: 3.75rem;
}

.mb-60 {
    margin-bottom: 3.75rem;
}

.mr-70 {
    margin-right: 4.375rem;
}

.mb-70 {
    margin-bottom: 4.375rem;
}

.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.ml-auto {
    margin-left: auto;
}

.max-h-full {
    max-height: 100%;
}

.max-w-3xl {
    max-width: 48rem;
}

.min-h-40 {
    min-height: 2.5rem;
}

.min-h-64 {
    min-height: 4rem;
}

.min-h-128 {
    min-height: 8rem;
}

.min-h-160 {
    min-height: 10rem;
}

.min-h-256 {
    min-height: 16rem;
}

.min-h-full {
    min-height: 100%;
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-scale-down {
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.hover\:opacity-50:hover {
    opacity: 0.5;
}

.hover\:opacity-75:hover {
    opacity: 0.75;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.p-4 {
    padding: 0.25rem;
}

.p-6 {
    padding: 0.375rem;
}

.p-8 {
    padding: 0.5rem;
}

.p-10 {
    padding: 0.625rem;
}

.p-16 {
    padding: 1rem;
}

.p-20 {
    padding: 1.25rem;
}

.p-24 {
    padding: 1.5rem;
}

.p-30 {
    padding: 1.875rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.py-4 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-6 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.px-6 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-10 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.px-10 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-12 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.px-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-30 {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
}

.px-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
}

.py-32 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.px-32 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-50 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
}

.px-50 {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
}

.py-60 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.px-80 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-4 {
    padding-bottom: 0.25rem;
}

.pb-8 {
    padding-bottom: 0.5rem;
}

.pt-10 {
    padding-top: 0.625rem;
}

.pr-10 {
    padding-right: 0.625rem;
}

.pb-10 {
    padding-bottom: 0.625rem;
}

.pl-10 {
    padding-left: 0.625rem;
}

.pb-12 {
    padding-bottom: 0.75rem;
}

.pt-16 {
    padding-top: 1rem;
}

.pr-16 {
    padding-right: 1rem;
}

.pl-16 {
    padding-left: 1rem;
}

.pt-20 {
    padding-top: 1.25rem;
}

.pr-20 {
    padding-right: 1.25rem;
}

.pb-20 {
    padding-bottom: 1.25rem;
}

.pl-20 {
    padding-left: 1.25rem;
}

.pt-24 {
    padding-top: 1.5rem;
}

.pr-24 {
    padding-right: 1.5rem;
}

.pb-24 {
    padding-bottom: 1.5rem;
}

.pt-30 {
    padding-top: 1.875rem;
}

.pb-32 {
    padding-bottom: 2rem;
}

.pt-40 {
    padding-top: 2.5rem;
}

.pb-40 {
    padding-bottom: 2.5rem;
}

.pl-40 {
    padding-left: 2.5rem;
}

.pb-50 {
    padding-bottom: 3.125rem;
}

.pt-60 {
    padding-top: 3.75rem;
}

.pt-70 {
    padding-top: 4.375rem;
}

.placeholder-concrete-700::-moz-placeholder {
    --placeholder-opacity: 1;
    color: #919191;
    color: rgba(145,145,145,var(--placeholder-opacity));
}

.placeholder-concrete-700:-ms-input-placeholder {
    --placeholder-opacity: 1;
    color: #919191;
    color: rgba(145,145,145,var(--placeholder-opacity));
}

.placeholder-concrete-700::placeholder {
    --placeholder-opacity: 1;
    color: #919191;
    color: rgba(145,145,145,var(--placeholder-opacity));
}

.placeholder-concrete-800::-moz-placeholder {
    --placeholder-opacity: 1;
    color: #6D6D6D;
    color: rgba(109,109,109,var(--placeholder-opacity));
}

.placeholder-concrete-800:-ms-input-placeholder {
    --placeholder-opacity: 1;
    color: #6D6D6D;
    color: rgba(109,109,109,var(--placeholder-opacity));
}

.placeholder-concrete-800::placeholder {
    --placeholder-opacity: 1;
    color: #6D6D6D;
    color: rgba(109,109,109,var(--placeholder-opacity));
}

.pointer-events-none {
    pointer-events: none;
}

.static {
    position: static;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.resize {
    resize: both;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-black {
    --text-opacity: 1;
    color: #000;
    color: rgba(0,0,0,var(--text-opacity));
}

.text-white {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
}

.text-secondaryblue-400 {
    --text-opacity: 1;
    color: #4DA4CA;
    color: rgba(77,164,202,var(--text-opacity));
}

.text-secondaryblue-500 {
    --text-opacity: 1;
    color: #007DB3;
    color: rgba(0,125,179,var(--text-opacity));
}

.text-dark-300 {
    --text-opacity: 1;
    color: #B2B2B2;
    color: rgba(178,178,178,var(--text-opacity));
}

.text-dark-500 {
    color: var(--content-primary,#3F3F3F);
}

.text-gray-200 {
    --text-opacity: 1;
    color: #F4F4F4;
    color: rgba(244,244,244,var(--text-opacity));
}

.text-gray-900 {
    color: var(--content-primary,#3F3F3F);
}

.text-brand-500 {
    color: var(--background-brand-primary,#0d3050);
}

.text-blue-500 {
    --text-opacity: 1;
    color: #0094D2;
    color: rgba(0,148,210,var(--text-opacity));
}

.text-orange-600 {
    --text-opacity: 1;
    color: #DA815E;
    color: rgba(218,129,94,var(--text-opacity));
}

.hover\:text-brand-500:hover {
    color: var(--background-brand-primary,#0d3050);
}

.hover\:text-blue-500:hover {
    --text-opacity: 1;
    color: #0094D2;
    color: rgba(0,148,210,var(--text-opacity));
}

.hover\:text-blue-800:hover {
    --text-opacity: 1;
    color: #00435F;
    color: rgba(0,67,95,var(--text-opacity));
}

.italic {
    font-style: italic;
}

.not-italic {
    font-style: normal;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.normal-case {
    text-transform: none;
}

.underline {
    text-decoration: underline;
}

.hover\:underline:hover {
    text-decoration: underline;
}

.tabular-nums {
    --font-variant-numeric-ordinal: var(--tailwind-empty,);
    --font-variant-numeric-slashed-zero: var(--tailwind-empty,);
    --font-variant-numeric-figure: var(--tailwind-empty,);
    --font-variant-numeric-spacing: var(--tailwind-empty,);
    --font-variant-numeric-fraction: var(--tailwind-empty,);
    font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.tabular-nums {
    --font-variant-numeric-spacing: tabular-nums;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

.whitespace-no-wrap {
    white-space: nowrap;
}

.whitespace-pre-line {
    white-space: pre-line;
}

.whitespace-pre-wrap {
    white-space: pre-wrap;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.w-0 {
    width: 0;
}

.w-16 {
    width: 1rem;
}

.w-20 {
    width: 1.25rem;
}

.w-24 {
    width: 1.5rem;
}

.w-30 {
    width: 1.875rem;
}

.w-32 {
    width: 2rem;
}

.w-40 {
    width: 2.5rem;
}

.w-60 {
    width: 3.75rem;
}

.w-70 {
    width: 4.375rem;
}

.w-80 {
    width: 5rem;
}

.w-96 {
    width: 6rem;
}

.w-128 {
    width: 8rem;
}

.w-1\/2 {
    width: 50%;
}

.w-2\/3 {
    width: 66.666667%;
}

.w-full {
    width: 100%;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-40 {
    z-index: 40;
}

.gap-10 {
    grid-gap: 0.625rem;
    gap: 0.625rem;
}

.gap-16 {
    grid-gap: 1rem;
    gap: 1rem;
}

.gap-20 {
    grid-gap: 1.25rem;
    gap: 1.25rem;
}

.gap-24 {
    grid-gap: 1.5rem;
    gap: 1.5rem;
}

.gap-30 {
    grid-gap: 1.875rem;
    gap: 1.875rem;
}

.gap-40 {
    grid-gap: 2.5rem;
    gap: 2.5rem;
}

.gap-x-10 {
    grid-column-gap: 0.625rem;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
}

.gap-x-16 {
    grid-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}

.gap-x-24 {
    grid-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
}

.gap-y-4 {
    grid-row-gap: 0.25rem;
    row-gap: 0.25rem;
}

.gap-y-12 {
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
}

.gap-y-20 {
    grid-row-gap: 1.25rem;
    row-gap: 1.25rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1,minmax(0,1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.grid-cols-5 {
    grid-template-columns: repeat(5,minmax(0,1fr));
}

.grid-cols-6 {
    grid-template-columns: repeat(6,minmax(0,1fr));
}

.grid-cols-7 {
    grid-template-columns: repeat(7,minmax(0,1fr));
}

.grid-cols-8 {
    grid-template-columns: repeat(8,minmax(0,1fr));
}

.grid-cols-9 {
    grid-template-columns: repeat(9,minmax(0,1fr));
}

.grid-cols-10 {
    grid-template-columns: repeat(10,minmax(0,1fr));
}

.grid-cols-11 {
    grid-template-columns: repeat(11,minmax(0,1fr));
}

.grid-cols-12 {
    grid-template-columns: repeat(12,minmax(0,1fr));
}

.grid-cols-none {
    grid-template-columns: none;
}

.col-span-1 {
    grid-column: span 1 / span 1;
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

.col-span-4 {
    grid-column: span 4 / span 4;
}

.col-span-6 {
    grid-column: span 6 / span 6;
}

.transform {
    --transform-translate-x: 0;
    --transform-translate-y: 0;
    --transform-rotate: 0;
    --transform-skew-x: 0;
    --transform-skew-y: 0;
    --transform-scale-x: 1;
    --transform-scale-y: 1;
    transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.scale-125 {
    --transform-scale-x: 1.25;
    --transform-scale-y: 1.25;
}

.rotate-45 {
    --transform-rotate: 45deg;
}

.rotate-90 {
    --transform-rotate: 90deg;
}

.rotate-180 {
    --transform-rotate: 180deg;
}

.-rotate-90 {
    --transform-rotate: -90deg;
}

.translate-x-8 {
    --transform-translate-x: 0.5rem;
}

.translate-x-10 {
    --transform-translate-x: 0.625rem;
}

.-translate-y-8 {
    --transform-translate-y: -0.5rem;
}

.transition-all {
    transition-property: all;
}

.transition {
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
}

.transition-transform {
    transition-property: transform;
}

.ease-out {
    transition-timing-function: cubic-bezier(0,0,0.2,1);
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-700 {
    transition-duration: 700ms;
}

@-webkit-keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ping {
    75%,100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ping {
    75%,100% {
        transform: scale(2);
        opacity: 0;
    }
}

@-webkit-keyframes pulse {
    50% {
        opacity: .5;
    }
}

@keyframes pulse {
    50% {
        opacity: .5;
    }
}

@-webkit-keyframes bounce {
    0%,100% {
        transform: translateY(-25%);
        -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
        animation-timing-function: cubic-bezier(0.8,0,1,1);
    }

    50% {
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
        animation-timing-function: cubic-bezier(0,0,0.2,1);
    }
}

@keyframes bounce {
    0%,100% {
        transform: translateY(-25%);
        -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
        animation-timing-function: cubic-bezier(0.8,0,1,1);
    }

    50% {
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
        animation-timing-function: cubic-bezier(0,0,0.2,1);
    }
}

.animate-spin {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.flex-basis {
    flex-basis: 100%;
    height: 0;
}

.w-fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.h-fit {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.rich-contribution ul li::before {
    content: '\2022';
    display: inline-block;
    width: 0.25rem;
    margin-right: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    --text-opacity: 1;
    color: #F28F68;
    color: rgba(242,143,104,var(--text-opacity));
}

.rich-contribution a {
    text-decoration: underline;
}

.rich-contribution a:hover {
    --text-opacity: 1;
    color: #F28F68;
    color: rgba(242,143,104,var(--text-opacity));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--big {
    min-height: 56px;
    min-width: 56px;
}

.btn--big > svg {
    font-size: 1.5rem;
}

.btn--big > * + * {
    margin-left: 0.75rem;
}

.btn--small {
    min-height: 40px;
    min-width: 40px;
}

.btn--small > svg {
    font-size: 1.125rem;
}

.btn--small > * + * {
    margin-left: 0.5rem;
}

.btn--primary {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    background-color: var(--background-brand-primary,#0d3050);
    border-color: var(--background-brand-primary,#0d3050);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--background-brand-primary,#0d3050);
}

.btn--primary-ghost {
    background-color: transparent;
    color: var(--background-brand-primary,#0d3050);
    border-color: var(--background-brand-primary,#0d3050);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--primary-ghost:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    background-color: var(--background-brand-primary,#0d3050);
}

.btn--secondary {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255,255,255,var(--border-opacity));
    color: var(--background-brand-primary,#0d3050);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--secondary:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    background-color: var(--background-brand-primary,#0d3050);
}

.btn--secondary-ghost {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    background-color: transparent;
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255,255,255,var(--border-opacity));
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--secondary-ghost:hover {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
    color: var(--background-brand-primary,#0d3050);
}

.btn--tertiary {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    --border-opacity: 1;
    border-color: #007DB3;
    border-color: rgba(0,125,179,var(--border-opacity));
    --bg-opacity: 1;
    background-color: #007DB3;
    background-color: rgba(0,125,179,var(--bg-opacity));
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--tertiary:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    --bg-opacity: 1;
    background-color: #003851;
    background-color: rgba(0,56,81,var(--bg-opacity));
    --border-opacity: 1;
    border-color: #003851;
    border-color: rgba(0,56,81,var(--border-opacity));
}

.btn--tertiary-ghost {
    background-color: transparent;
    --text-opacity: 1;
    color: #007DB3;
    color: rgba(0,125,179,var(--text-opacity));
    --border-opacity: 1;
    border-color: #007DB3;
    border-color: rgba(0,125,179,var(--border-opacity));
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--tertiary-ghost:hover {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
    --text-opacity: 1;
    color: #007DB3;
    color: rgba(0,125,179,var(--text-opacity));
}

.btn--black {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    --bg-opacity: 1;
    background-color: #000;
    background-color: rgba(0,0,0,var(--bg-opacity));
    --border-opacity: 1;
    border-color: #000;
    border-color: rgba(0,0,0,var(--border-opacity));
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--black:hover {
    --text-opacity: 1;
    color: #000;
    color: rgba(0,0,0,var(--text-opacity));
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
    --border-opacity: 1;
    border-color: #000;
    border-color: rgba(0,0,0,var(--border-opacity));
}

.btn--black-ghost {
    --text-opacity: 1;
    color: #000;
    color: rgba(0,0,0,var(--text-opacity));
    background-color: transparent;
    --border-opacity: 1;
    border-color: #000;
    border-color: rgba(0,0,0,var(--border-opacity));
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--black-ghost:hover {
    --text-opacity: 1;
    color: #000;
    color: rgba(0,0,0,var(--text-opacity));
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
}

.btn--white {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255,255,255,var(--border-opacity));
    color: var(--background-brand-primary,#0d3050);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--white:hover {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    background-color: transparent;
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255,255,255,var(--border-opacity));
}

.btn--white-ghost {
    --text-opacity: 1;
    color: #fff;
    color: rgba(255,255,255,var(--text-opacity));
    background-color: transparent;
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255,255,255,var(--border-opacity));
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    border-width: 2px;
    border-radius: 9999px;
}

.btn--white-ghost:hover {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
    --border-opacity: 1;
    border-color: #fff;
    border-color: rgba(255,255,255,var(--border-opacity));
    color: var(--background-brand-primary,#0d3050);
}

.btn--link {
    line-height: 1;
    --text-opacity: 1;
    color: #0094D2;
    color: rgba(0,148,210,var(--text-opacity));
    font-size: 1rem;
}

.btn--link:hover {
    --text-opacity: 1;
    color: #00435F;
    color: rgba(0,67,95,var(--text-opacity));
}

.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    width: 1px;
    height: 1px;
    word-wrap: normal;
}

.visually-hidden.focusable:active,.visually-hidden.focusable:focus {
    position: static !important;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
}

html {
    font-size: 100%;
    letter-spacing: 0.03rem;
    line-height: 1.125;
    font-family: Metropolis,Helvetica;
}

.font-semibold,.font-medium {
    letter-spacing: 0;
}

input,textarea {
    letter-spacing: 0.03rem;
    font-family: Metropolis,Helvetica;
}

body {
    font-size: 1rem;
}

button:focus,a:focus {
    outline: 2px solid blue;
}

.test {
    font-size: 20px;
}

@media (min-width: 320px) {
    .xs\:container {
        width:100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    @media (min-width: 100%) {
        .xs\:container {
            max-width:100%;
        }
    }

    @media (min-width: 640px) {
        .xs\:container {
            max-width:640px;
        }
    }

    @media (min-width: 768px) {
        .xs\:container {
            max-width:768px;
        }
    }

    @media (min-width: 1024px) {
        .xs\:container {
            max-width:1024px;
        }
    }

    @media (min-width: 1280px) {
        .xs\:container {
            max-width:1280px;
        }
    }

    .xs\:flex-basis {
        flex-basis: 100%;
        height: 0;
    }

    .xs\:w-fit {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .xs\:h-fit {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
}

@media (min-width: 640px) {
    .sm\:container {
        width:100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    @media (min-width: 100%) {
        .sm\:container {
            max-width:100%;
        }
    }

    @media (min-width: 640px) {
        .sm\:container {
            max-width:640px;
        }
    }

    @media (min-width: 768px) {
        .sm\:container {
            max-width:768px;
        }
    }

    @media (min-width: 1024px) {
        .sm\:container {
            max-width:1024px;
        }
    }

    @media (min-width: 1280px) {
        .sm\:container {
            max-width:1280px;
        }
    }

    .sm\:space-y-0 > :not(template) ~ :not(template) {
        --space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--space-y-reverse)));
        margin-bottom: calc(0px * var(--space-y-reverse));
    }

    .sm\:space-x-0 > :not(template) ~ :not(template) {
        --space-x-reverse: 0;
        margin-right: calc(0px * var(--space-x-reverse));
        margin-left: calc(0px * calc(1 - var(--space-x-reverse)));
    }

    .sm\:space-y-10 > :not(template) ~ :not(template) {
        --space-y-reverse: 0;
        margin-top: calc(0.625rem * calc(1 - var(--space-y-reverse)));
        margin-bottom: calc(0.625rem * var(--space-y-reverse));
    }

    .sm\:space-x-16 > :not(template) ~ :not(template) {
        --space-x-reverse: 0;
        margin-right: calc(1rem * var(--space-x-reverse));
        margin-left: calc(1rem * calc(1 - var(--space-x-reverse)));
    }

    .sm\:space-x-reverse > :not(template) ~ :not(template) {
        --space-x-reverse: 1;
    }

    .sm\:border-t-0 {
        border-top-width: 0;
    }

    .sm\:border-r {
        border-right-width: 1px;
    }

    .sm\:block {
        display: block;
    }

    .sm\:flex {
        display: flex;
    }

    .sm\:grid {
        display: grid;
    }

    .sm\:hidden {
        display: none;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:flex-col {
        flex-direction: column;
    }

    .sm\:items-center {
        align-items: center;
    }

    .sm\:justify-start {
        justify-content: flex-start;
    }

    .sm\:justify-center {
        justify-content: center;
    }

    .sm\:h-60 {
        height: 3.75rem;
    }

    .sm\:h-96 {
        height: 6rem;
    }

    .sm\:h-256 {
        height: 16rem;
    }

    .sm\:h-full {
        height: 100%;
    }

    .sm\:text-16 {
        font-size: 1rem;
    }

    .sm\:text-26 {
        font-size: 1.625rem;
    }

    .sm\:text-36 {
        font-size: 2.25rem;
    }

    .sm\:text-40 {
        font-size: 2.5rem;
    }

    .sm\:text-48 {
        font-size: 3rem;
    }

    .sm\:mx-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .sm\:mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .sm\:mb-0 {
        margin-bottom: 0;
    }

    .sm\:mr-10 {
        margin-right: 0.625rem;
    }

    .sm\:mb-10 {
        margin-bottom: 0.625rem;
    }

    .sm\:mb-20 {
        margin-bottom: 1.25rem;
    }

    .sm\:mb-30 {
        margin-bottom: 1.875rem;
    }

    .sm\:mb-32 {
        margin-bottom: 2rem;
    }

    .sm\:mb-40 {
        margin-bottom: 2.5rem;
    }

    .sm\:mb-60 {
        margin-bottom: 3.75rem;
    }

    .sm\:max-w-none {
        max-width: none;
    }

    .sm\:p-0 {
        padding: 0;
    }

    .sm\:p-16 {
        padding: 1rem;
    }

    .sm\:px-16 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sm\:px-24 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:py-60 {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .sm\:px-128 {
        padding-left: 8rem;
        padding-right: 8rem;
    }

    .sm\:pl-0 {
        padding-left: 0;
    }

    .sm\:pb-12 {
        padding-bottom: 0.75rem;
    }

    .sm\:text-left {
        text-align: left;
    }

    .sm\:text-brand-500 {
        color: var(--background-brand-primary,#0d3050);
    }

    .sm\:w-0 {
        width: 0;
    }

    .sm\:w-60 {
        width: 3.75rem;
    }

    .sm\:w-auto {
        width: auto;
    }

    .sm\:w-1\/2 {
        width: 50%;
    }

    .sm\:w-full {
        width: 100%;
    }

    .sm\:gap-16 {
        grid-gap: 1rem;
        gap: 1rem;
    }

    .sm\:gap-20 {
        grid-gap: 1.25rem;
        gap: 1.25rem;
    }

    .sm\:gap-30 {
        grid-gap: 1.875rem;
        gap: 1.875rem;
    }

    .sm\:gap-40 {
        grid-gap: 2.5rem;
        gap: 2.5rem;
    }

    .sm\:gap-y-12 {
        grid-row-gap: 0.75rem;
        row-gap: 0.75rem;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .sm\:grid-cols-5 {
        grid-template-columns: repeat(5,minmax(0,1fr));
    }

    .sm\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .sm\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .sm\:col-span-3 {
        grid-column: span 3 / span 3;
    }

    .sm\:col-span-4 {
        grid-column: span 4 / span 4;
    }

    .sm\:translate-x-16 {
        --transform-translate-x: 1rem;
    }

    .sm\:flex-basis {
        flex-basis: 100%;
        height: 0;
    }

    .sm\:w-fit {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .sm\:h-fit {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
}

@media (min-width: 768px) {
    .md\:container {
        width:100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    @media (min-width: 100%) {
        .md\:container {
            max-width:100%;
        }
    }

    @media (min-width: 640px) {
        .md\:container {
            max-width:640px;
        }
    }

    @media (min-width: 768px) {
        .md\:container {
            max-width:768px;
        }
    }

    @media (min-width: 1024px) {
        .md\:container {
            max-width:1024px;
        }
    }

    @media (min-width: 1280px) {
        .md\:container {
            max-width:1280px;
        }
    }

    .md\:space-x-30 > :not(template) ~ :not(template) {
        --space-x-reverse: 0;
        margin-right: calc(1.875rem * var(--space-x-reverse));
        margin-left: calc(1.875rem * calc(1 - var(--space-x-reverse)));
    }

    .md\:bg-brand-500 {
        background-color: var(--background-brand-primary,#0d3050);
    }

    .md\:border-none {
        border-style: none;
    }

    .md\:border-0 {
        border-width: 0;
    }

    .md\:border-b-0 {
        border-bottom-width: 0;
    }

    .md\:border-r-2 {
        border-right-width: 2px;
    }

    .md\:border-r {
        border-right-width: 1px;
    }

    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:flex-col {
        flex-direction: column;
    }

    .md\:items-center {
        align-items: center;
    }

    .md\:justify-start {
        justify-content: flex-start;
    }

    .md\:justify-end {
        justify-content: flex-end;
    }

    .md\:justify-between {
        justify-content: space-between;
    }

    .md\:text-16 {
        font-size: 1rem;
    }

    .md\:text-24 {
        font-size: 1.5rem;
    }

    .md\:text-32 {
        font-size: 2rem;
    }

    .md\:text-36 {
        font-size: 2.25rem;
    }

    .md\:text-38 {
        font-size: 2.375rem;
    }

    .md\:text-48 {
        font-size: 3rem;
    }

    .md\:leading-9 {
        line-height: 2.25rem;
    }

    .md\:leading-10 {
        line-height: 2.5rem;
    }

    .md\:mt-0 {
        margin-top: 0;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:ml-0 {
        margin-left: 0;
    }

    .md\:mb-4 {
        margin-bottom: 0.25rem;
    }

    .md\:mt-8 {
        margin-top: 0.5rem;
    }

    .md\:mr-10 {
        margin-right: 0.625rem;
    }

    .md\:mb-10 {
        margin-bottom: 0.625rem;
    }

    .md\:mt-12 {
        margin-top: 0.75rem;
    }

    .md\:mb-16 {
        margin-bottom: 1rem;
    }

    .md\:ml-16 {
        margin-left: 1rem;
    }

    .md\:mr-20 {
        margin-right: 1.25rem;
    }

    .md\:mb-30 {
        margin-bottom: 1.875rem;
    }

    .md\:mr-40 {
        margin-right: 2.5rem;
    }

    .md\:mb-40 {
        margin-bottom: 2.5rem;
    }

    .md\:mb-48 {
        margin-bottom: 3rem;
    }

    .md\:mt-60 {
        margin-top: 3.75rem;
    }

    .md\:mb-60 {
        margin-bottom: 3.75rem;
    }

    .md\:mb-80 {
        margin-bottom: 5rem;
    }

    .md\:min-h-160 {
        min-height: 10rem;
    }

    .md\:py-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .md\:px-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .md\:py-8 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .md\:py-10 {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }

    .md\:px-10 {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }

    .md\:py-16 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .md\:py-20 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .md\:px-20 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .md\:px-24 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .md\:px-30 {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .md\:py-40 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .md\:px-40 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .md\:px-70 {
        padding-left: 4.375rem;
        padding-right: 4.375rem;
    }

    .md\:pb-0 {
        padding-bottom: 0;
    }

    .md\:pr-30 {
        padding-right: 1.875rem;
    }

    .md\:pb-40 {
        padding-bottom: 2.5rem;
    }

    .md\:static {
        position: static;
    }

    .md\:text-center {
        text-align: center;
    }

    .md\:w-10 {
        width: 0.625rem;
    }

    .md\:w-12 {
        width: 0.75rem;
    }

    .md\:w-16 {
        width: 1rem;
    }

    .md\:w-128 {
        width: 8rem;
    }

    .md\:w-160 {
        width: 10rem;
    }

    .md\:w-192 {
        width: 12rem;
    }

    .md\:w-1\/2 {
        width: 50%;
    }

    .md\:w-1\/3 {
        width: 33.333333%;
    }

    .md\:w-1\/4 {
        width: 25%;
    }

    .md\:w-1\/5 {
        width: 20%;
    }

    .md\:w-2\/5 {
        width: 40%;
    }

    .md\:w-3\/5 {
        width: 60%;
    }

    .md\:w-4\/5 {
        width: 80%;
    }

    .md\:w-1\/6 {
        width: 16.666667%;
    }

    .md\:w-1\/12 {
        width: 8.333333%;
    }

    .md\:w-10\/12 {
        width: 83.333333%;
    }

    .md\:w-11\/12 {
        width: 91.666667%;
    }

    .md\:w-full {
        width: 100%;
    }

    .md\:gap-0 {
        grid-gap: 0;
        gap: 0;
    }

    .md\:gap-30 {
        grid-gap: 1.875rem;
        gap: 1.875rem;
    }

    .md\:gap-40 {
        grid-gap: 2.5rem;
        gap: 2.5rem;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .md\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .md\:col-start-1 {
        grid-column-start: 1;
    }

    .md\:row-start-1 {
        grid-row-start: 1;
    }

    .md\:rotate-0 {
        --transform-rotate: 0;
    }

    .md\:flex-basis {
        flex-basis: 100%;
        height: 0;
    }

    .md\:w-fit {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .md\:h-fit {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
}

@media (min-width: 1024px) {
    .lg\:container {
        width:100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    @media (min-width: 100%) {
        .lg\:container {
            max-width:100%;
        }
    }

    @media (min-width: 640px) {
        .lg\:container {
            max-width:640px;
        }
    }

    @media (min-width: 768px) {
        .lg\:container {
            max-width:768px;
        }
    }

    @media (min-width: 1024px) {
        .lg\:container {
            max-width:1024px;
        }
    }

    @media (min-width: 1280px) {
        .lg\:container {
            max-width:1280px;
        }
    }

    .lg\:space-x-20 > :not(template) ~ :not(template) {
        --space-x-reverse: 0;
        margin-right: calc(1.25rem * var(--space-x-reverse));
        margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
    }

    .lg\:space-x-30 > :not(template) ~ :not(template) {
        --space-x-reverse: 0;
        margin-right: calc(1.875rem * var(--space-x-reverse));
        margin-left: calc(1.875rem * calc(1 - var(--space-x-reverse)));
    }

    .lg\:bg-transparent {
        background-color: transparent;
    }

    .lg\:bg-lightblue-500 {
        --bg-opacity: 1;
        background-color: #E3E9F2;
        background-color: rgba(227,233,242,var(--bg-opacity));
    }

    .lg\:border-t {
        border-top-width: 1px;
    }

    .lg\:border-r {
        border-right-width: 1px;
    }

    .lg\:block {
        display: block;
    }

    .lg\:inline {
        display: inline;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:grid {
        display: grid;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:font-normal {
        font-weight: 400;
    }

    .lg\:h-128 {
        height: 8rem;
    }

    .lg\:text-16 {
        font-size: 1rem;
    }

    .lg\:text-24 {
        font-size: 1.5rem;
    }

    .lg\:text-26 {
        font-size: 1.625rem;
    }

    .lg\:text-30 {
        font-size: 1.875rem;
    }

    .lg\:text-48 {
        font-size: 3rem;
    }

    .lg\:text-50 {
        font-size: 3.125rem;
    }

    .lg\:text-64 {
        font-size: 4rem;
    }

    .lg\:mx-0 {
        margin-left: 0;
        margin-right: 0;
    }

    .lg\:my-16 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .lg\:my-30 {
        margin-top: 1.875rem;
        margin-bottom: 1.875rem;
    }

    .lg\:mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .lg\:mb-10 {
        margin-bottom: 0.625rem;
    }

    .lg\:mb-12 {
        margin-bottom: 0.75rem;
    }

    .lg\:mt-24 {
        margin-top: 1.5rem;
    }

    .lg\:mb-30 {
        margin-bottom: 1.875rem;
    }

    .lg\:mb-32 {
        margin-bottom: 2rem;
    }

    .lg\:mb-60 {
        margin-bottom: 3.75rem;
    }

    .lg\:mb-80 {
        margin-bottom: 5rem;
    }

    .lg\:p-0 {
        padding: 0;
    }

    .lg\:p-20 {
        padding: 1.25rem;
    }

    .lg\:py-16 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .lg\:px-20 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .lg\:py-40 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .lg\:px-40 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .lg\:py-50 {
        padding-top: 3.125rem;
        padding-bottom: 3.125rem;
    }

    .lg\:px-50 {
        padding-left: 3.125rem;
        padding-right: 3.125rem;
    }

    .lg\:py-60 {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .lg\:pt-0 {
        padding-top: 0;
    }

    .lg\:pl-0 {
        padding-left: 0;
    }

    .lg\:pr-10 {
        padding-right: 0.625rem;
    }

    .lg\:pl-10 {
        padding-left: 0.625rem;
    }

    .lg\:pt-16 {
        padding-top: 1rem;
    }

    .lg\:sticky {
        position: -webkit-sticky;
        position: sticky;
    }

    .lg\:top-0 {
        top: 0;
    }

    .lg\:text-center {
        text-align: center;
    }

    .lg\:text-dark-500 {
        color: var(--content-primary,#3F3F3F);
    }

    .lg\:w-10 {
        width: 0.625rem;
    }

    .lg\:w-12 {
        width: 0.75rem;
    }

    .lg\:w-16 {
        width: 1rem;
    }

    .lg\:w-128 {
        width: 8rem;
    }

    .lg\:w-160 {
        width: 10rem;
    }

    .lg\:w-192 {
        width: 12rem;
    }

    .lg\:w-1\/2 {
        width: 50%;
    }

    .lg\:w-1\/3 {
        width: 33.333333%;
    }

    .lg\:w-2\/3 {
        width: 66.666667%;
    }

    .lg\:w-1\/4 {
        width: 25%;
    }

    .lg\:w-3\/4 {
        width: 75%;
    }

    .lg\:w-1\/5 {
        width: 20%;
    }

    .lg\:w-1\/6 {
        width: 16.666667%;
    }

    .lg\:w-1\/12 {
        width: 8.333333%;
    }

    .lg\:w-10\/12 {
        width: 83.333333%;
    }

    .lg\:w-11\/12 {
        width: 91.666667%;
    }

    .lg\:gap-0 {
        grid-gap: 0;
        gap: 0;
    }

    .lg\:gap-10 {
        grid-gap: 0.625rem;
        gap: 0.625rem;
    }

    .lg\:gap-16 {
        grid-gap: 1rem;
        gap: 1rem;
    }

    .lg\:gap-20 {
        grid-gap: 1.25rem;
        gap: 1.25rem;
    }

    .lg\:gap-30 {
        grid-gap: 1.875rem;
        gap: 1.875rem;
    }

    .lg\:gap-40 {
        grid-gap: 2.5rem;
        gap: 2.5rem;
    }

    .lg\:grid-cols-1 {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }

    .lg\:grid-cols-12 {
        grid-template-columns: repeat(12,minmax(0,1fr));
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }

    .lg\:col-span-4 {
        grid-column: span 4 / span 4;
    }

    .lg\:translate-x-20 {
        --transform-translate-x: 1.25rem;
    }

    .lg\:flex-basis {
        flex-basis: 100%;
        height: 0;
    }

    .lg\:w-fit {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .lg\:h-fit {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
}

@media (min-width: 1280px) {
    .xl\:container {
        width:100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    @media (min-width: 100%) {
        .xl\:container {
            max-width:100%;
        }
    }

    @media (min-width: 640px) {
        .xl\:container {
            max-width:640px;
        }
    }

    @media (min-width: 768px) {
        .xl\:container {
            max-width:768px;
        }
    }

    @media (min-width: 1024px) {
        .xl\:container {
            max-width:1024px;
        }
    }

    @media (min-width: 1280px) {
        .xl\:container {
            max-width:1280px;
        }
    }

    .xl\:space-x-20 > :not(template) ~ :not(template) {
        --space-x-reverse: 0;
        margin-right: calc(1.25rem * var(--space-x-reverse));
        margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse)));
    }

    .xl\:space-x-30 > :not(template) ~ :not(template) {
        --space-x-reverse: 0;
        margin-right: calc(1.875rem * var(--space-x-reverse));
        margin-left: calc(1.875rem * calc(1 - var(--space-x-reverse)));
    }

    .xl\:flex-row {
        flex-direction: row;
    }

    .xl\:flex-col {
        flex-direction: column;
    }

    .xl\:items-center {
        align-items: center;
    }

    .xl\:h-160 {
        height: 10rem;
    }

    .xl\:mb-0 {
        margin-bottom: 0;
    }

    .xl\:mr-80 {
        margin-right: 5rem;
    }

    .xl\:p-30 {
        padding: 1.875rem;
    }

    .xl\:px-30 {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .xl\:pl-128 {
        padding-left: 8rem;
    }

    .xl\:gap-30 {
        grid-gap: 1.875rem;
        gap: 1.875rem;
    }

    .xl\:grid-cols-2 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }

    .xl\:grid-cols-12 {
        grid-template-columns: repeat(12,minmax(0,1fr));
    }

    .xl\:col-span-3 {
        grid-column: span 3 / span 3;
    }

    .xl\:col-span-4 {
        grid-column: span 4 / span 4;
    }

    .xl\:col-span-6 {
        grid-column: span 6 / span 6;
    }

    .xl\:translate-x-30 {
        --transform-translate-x: 1.875rem;
    }

    .xl\:flex-basis {
        flex-basis: 100%;
        height: 0;
    }

    .xl\:w-fit {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .xl\:h-fit {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
}

@font-face {
    font-family: 'Metropolis';
    src: url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff2/Metropolis-Regular.woff2') format('woff2'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff/Metropolis-Regular.woff') format('woff'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/otf/Metropolis-Regular.otf') format('opentype');
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    size-adjust:96%;}

@font-face {
    font-family: 'Metropolis';
    src: url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff2/Metropolis-RegularItalic.woff2') format('woff2'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff/Metropolis-RegularItalic.woff') format('woff'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/otf/Metropolis-RegularItalic.otf') format('opentype');
    font-display: auto;
    font-style: italic;
    font-weight: 400;
    size-adjust:95%;}

@font-face {
    font-family: 'Metropolis';
    src: url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff2/Metropolis-Medium.woff2') format('woff2'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff/Metropolis-Medium.woff') format('woff'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/otf/Metropolis-Medium.otf') format('opentype');
    font-display: auto;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    size-adjust:95%;}

@font-face {
    font-family: 'Metropolis';
    src: url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff2/Metropolis-MediumItalic.woff2') format('woff2'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff/Metropolis-MediumItalic.woff') format('woff'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/otf/Metropolis-MediumItalic.otf') format('opentype');
    font-display: auto;
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    size-adjust:95%;}

@font-face {
    font-family: 'Metropolis';
    src: url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff2/Metropolis-SemiBold.woff2') format('woff2'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff/Metropolis-SemiBold.woff') format('woff'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/otf/Metropolis-SemiBold.otf') format('opentype');
    font-display: auto;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    size-adjust:95%;}

@font-face {
    font-family: 'Metropolis';
    src: url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff2/Metropolis-SemiBoldItalic.woff2') format('woff2'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/woff/Metropolis-SemiBoldItalic.woff') format('woff'),url('/profiles/rgds/themes/rgds_theme/assets/fonts/otf/Metropolis-SemiBoldItalic.otf') format('opentype');
    font-display: auto;
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    size-adjust:95%;}

html,body {
    overflow-x: hidden;
}

.block-local-tasks-block {
    z-index: 10000;
}

@media (min-width: 768px) {
    .block-local-tasks-block {
        position:fixed;
        right: 0;
        top: 25%;
        max-width: 150px;
    }
}

.block-local-tasks-block .tabs {
    background: rgba(71,71,71,0.66);
    border: 0;
}

.block-local-tasks-block .tabs ul {
    margin: 0 0 0.5em;
    padding: 0;
    list-style: none;
}

@media (min-width: 768px) {
    .block-local-tasks-block li {
        float:none;
        display: block;
        margin: auto;
    }
}

.block-local-tasks-block li a {
    -webkit-border-radius: 0;
    border-radius: 0;
    margin: 0;
    color: #fff;
    display: block;
    padding: 0.2em 1em;
    text-decoration: none;
}

.block-local-tasks-block li a:hover,.block-local-tasks-block li a:focus {
    background: rgba(37,50,137,0.2);
    border-color: transparent;
}

@media (min-width: 0) and (max-width:767px) {
    .block-local-tasks-block li a {
        font-size:1rem;
    }
}

.block-local-tasks-block li a.is-active {
    background-color: rgba(37,50,137,0.66);
    color: #fff;
    border: 1px solid rgba(37,50,137,0.66);
}

.block-local-tasks-block li a.is-active:hover,.block-local-tasks-block li a.is-active:focus {
    background: rgba(37,50,137,0.8);
    color: #fff;
    border: 1px solid rgba(37,50,137,0.66);
}

.discover-v2-item {
    height: 290px;
}

.discover-v2-item__image {
    z-index: -1;
}

.discover-v2-item__button-icon {
    right: -14px;
}

@media (min-width: 640px) {
    .discover-v2-item {
        height:364px;
    }

    .discover-v2-item__title {
        height: 10rem;
    }
}

@media (min-width: 1024px) {
    .discover-v2-item {
        height:423px;
    }

    .discover-v2-item__button-icon {
        right: -9px;
    }
}

@media (max-width: 640px) {
    .shortcut__wrapper > *:last-child {
        border:0;
    }
}

@media (min-width: 768px) {
    .shortcut__wrapper > *:last-child {
        border:0;
    }
}

@media (min-width: 768px) and (max-width:1024px) {
    .shortcut__wrapper > *:nth-child(3) {
        border:0;
    }
}

.shortcut__wrapper--with-sidebar > *:nth-child(3) {
    border: 0;
}

.shortcut-item__wrapper {
    min-height: 95px;
}

@media (min-width: 640px) {
    .shortcut-item__wrapper {
        min-height:115px;
    }
}

.institutional-infos__emergencies .emergencies__waiting-time::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 90px 0 90px 40px;
    border-color: transparent transparent transparent #0d3050;
    right: 1px;
    top: 50%;
    transform: translateX(100%) translateY(-50%);
}

@media (min-width: 1280px) {
    .xl-fix-width {
        padding:0 16px;
        max-width: 1500px;
    }
}

@media (min-width: 768px) {
    .banner__wrapper {
        min-height:390px;
    }
}

.banner__image-wrapper {
    left: 50%;
    width: 50%;
}

.banner__image-wrapper.image-wrapper--wide {
    left: 0%;
    width: 100%;
}

.banner__image-wrapper > image {
    top: 50%;
    transform: translateY(-50%);
}

.paragraph--type--carousel .tns-nav {
    position: relative;
    margin: auto;
    line-height: 1;
    bottom: 30px;
}

.paragraph--type--carousel .tns-nav > button {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition-property: all;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0,0,0.2,1);
    border-radius: 9999px;
    opacity: 0.5;
    background-color: white;
}

.paragraph--type--carousel .tns-nav > button.tns-nav-active {
    width: 24px;
    opacity: 1;
}

.paragraph--type--carousel .tns-liveregion {
    display: none;
}

.paragraph--type--carousel .tns-inner {
    overflow-x: hidden;
}

@media (min-width: 640px) {
    header[role='banner'] {
        position:sticky;
        top: 0;
        z-index: 30;
    }
}

.region-header {
    height: 100px;
}

.region-header .header__burger__icon--opened .burger__svg {
    display: none;
}

.region-header .header__burger__icon--opened .cross__svg {
    display: block;
}

@media (max-width: 640px) {
    .region-header .main-nav__wrapper {
        display:none;
        width: 300%;
        left: 100%;
        top: 100%;
    }

    .region-header .main-nav__wrapper--opened-no-level {
        display: block;
        left: 0;
    }

    .region-header .main-nav__wrapper--opened-second-level,.region-header .main-nav__wrapper--opened-third-level {
        display: block;
    }
}

@media (min-width: 640px) {
    .region-header .main-nav__wrapper {
        display:none;
        width: 100%;
        top: -100vh;
        left: 0;
    }

    .region-header .main-nav__wrapper--opened-no-level {
        display: block;
        top: 100%;
    }

    .region-header .grid--columns {
        columns: 2;
    }
}

.info-message__banner .info-message__description a:not(.rte--unstyled):link {
    color: white !important;
}

.rgds-webform {
    margin-top: 30px;
    margin-bottom: 30px;
}

.rgds-webform .webform-element-description {
    margin-top: 10px;
}

.rgds-webform .visually-hidden  {
    display: none;
}

.rgds-webform .form-actions {
    text-align: right;
}

.rgds-webform:not(.rgds-webform--newsletter) .webform-button--submit {
    background-color: white;
    padding: 7px 16px;
    border-radius: 30px;
    border: 2px solid #0d3050;
    color: #0d3050;
    font-weight: bold;
    cursor: pointer;
    min-height: 56px;
    min-width: 56px;
}

.rgds-webform fieldset legend {
    width: 100%;
}

.rgds-webform fieldset:not(.form-composite) > legend > .fieldset-legend:not(.visually-hidden) {
    width: 100%;
    margin: 0 0 10px;
    padding: 14px 44px;
    background-color: #f2f2f2;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    color: #1b1b1b;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 30px;
}

.rgds-webform fieldset:not(.form-composite) > legend > .fieldset-legend:not(.visually-hidden):before {
    content: '';
    display: block;
    position: absolute;
    bottom: -13px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -14px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #f2f2f2;
}

.rgds-webform .form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    color: #3f3f3f !important;
}

.rgds-webform .form-item.js-form-type-radio,.rgds-webform .form-item.js-form-type-checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0px;
}

.rgds-webform .form-item .container-inline,.rgds-webform .webform-options-display-side-by-side {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5rem;
}

.rgds-webform .webform-options-display-side-by-side > div {
    margin-right: 0 !important;
}

.rgds-webform .webform-options-display-one-column {
    display: grid !important;
    grid-template-columns: repeat(1,minmax(0,1fr));
    gap: 1rem;
}

.rgds-webform .webform-options-display-two-columns {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 1rem;
}

.rgds-webform .webform-options-display-three-columns {
    display: grid !important;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1rem;
}

.rgds-webform .container-inline .form-item + .form-item {
    margin-left: 10px;
}

.rgds-webform .form-item label:not(.visually-hidden),.rgds-webform .form-item legend:not(.visually-hidden) {
    line-height: 24px;
}

.rgds-webform .form-item label:not(.visually-hidden) + *,.rgds-webform .form-item legend:not(.visually-hidden) + * {
    margin-top: 10px;
}

.rgds-webform .form-item * + label:not(.visually-hidden),.rgds-webform .form-item * + legend:not(.visually-hidden) {
    margin-top: 10px;
}

.rgds-webform .form-item.js-form-type-radio * + label:not(.visually-hidden),.rgds-webform .form-item.js-form-type-checkbox * + label:not(.visually-hidden) {
    margin: 0 0 0 7px;
}

.rgds-webform .form-item label:not(.visually-hidden).form-required::after,.rgds-webform .form-item span:not(.visually-hidden).form-required::after {
    content: '*';
}

.rgds-webform .form-item input[type='text'],.rgds-webform .form-item input[type='email'],.rgds-webform .form-item input[type='date'],.rgds-webform .form-item input[type='time'],.rgds-webform .form-item input[type='number'],.rgds-webform .form-item input[type='tel'],.rgds-webform .form-item textarea,.rgds-webform .form-item select {
    padding: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 1px;
    width: 100%;
}

.rgds-webform .form-item select {
    background-image: linear-gradient(45deg,transparent 50%,#3d3d3e 50%),linear-gradient(135deg,#3d3d3d 50%,transparent 50%),linear-gradient(to right,#f2f2f2,#f2f2f2);
    background-position: calc(100% - 23px) calc(1em + 2px),calc(100% - 18px) calc(1em + 2px),100% 0;
    background-size: 5px 5px,5px 5px,2.8em 2.8em;
    background-repeat: no-repeat;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.rgds-webform .form-item input[type='date'] {
    background-image: linear-gradient(to right,#f2f2f2,#f2f2f2);
    background-position: 100%;
    background-size: 2.8em 2.8em;
    background-repeat: no-repeat;
}

.rgds-webform .form-item input[type='checkbox'] {
    width: fit-content;
}

.rgds-webform .form-item input[type='file'] {
    width: 100%;
}

.rgds-webform .form-item .iti--allow-dropdown input[type='tel'] {
    padding-left: 52px;
}

.rgds-webform .form-item select {
    height: 40px;
    padding-top: 8px;
}

.rgds-webform .form-item textarea,.rgds-webform .form-item select {
    width: 100%;
}

.rgds-webform--newsletter {
    margin: 0 !important;
}

.rgds-webform--newsletter label {
    display: none;
}

.rgds-webform--newsletter .form-item {
    position: relative;
    margin-bottom: 0 !important;
}

.rgds-webform--newsletter input {
    width: 100%;
    margin-top: 0 !important;
    padding-right: 35px !important;
}

.rgds-webform--newsletter .webform-actions {
    position: relative;
}

.rgds-webform--newsletter .webform-button--submit {
    position: absolute;
    right: 16px;
    bottom: 12px;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    padding: 0 !important;
    color: transparent !important;
    background-color: transparent !important;
    border-width: 2px 2px 0 0 !important;
    border-color: #007db3 !important;
    border-radius: 0 !important;
}

.rte p:not(.rte--unstyled) {
    margin-top: 1em;
    margin-bottom: 1em;
}

.rte p:not(.rte--unstyled):first-of-type {
    margin-top: 0;
}

.rte p:not(.rte--unstyled):last-of-type {
    margin-bottom: 0;
}

.rte h1:not(.rte--unstyled),.rte h2:not(.rte--unstyled),.rte h3:not(.rte--unstyled),.rte h4:not(.rte--unstyled),.rte h5:not(.rte--unstyled),.rte h6:not(.rte--unstyled) {
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.rte h1:not(.rte--unstyled) {
    font-size: 2.4rem;
    margin-top: 0.67rem;
    margin-bottom: 0.67rem;
}

.rte h2:not(.rte--unstyled) {
    font-size: 2.1rem;
    margin-top: 0.83rem;
    margin-bottom: 0.83rem;
}

.rte h3:not(.rte--unstyled) {
    font-size: 1.9rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.rte h4:not(.rte--unstyled) {
    font-size: 1.6rem;
    margin-top: 1.33rem;
    margin-bottom: 1.33rem;
}

.rte h5:not(.rte--unstyled) {
    font-size: 1.4rem;
    margin-top: 1.67rem;
    margin-bottom: 1.67rem;
}

.rte h6:not(.rte--unstyled) {
    font-size: 1.1rem;
    margin-top: 2.33rem;
    margin-bottom: 2.33rem;
}

.rte ol:not(.rte--unstyled),.rte ul:not(.rte--unstyled) {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}

.rte ol:not(.rte--unstyled) {
    list-style-type: decimal;
}

.rte ul:not(.rte--unstyled) {
    list-style-type: disc;
}

.rte a:focus:not(.rte--unstyled) {
    outline: 2px solid blue;
}

.rte a:not(.rte--unstyled):link {
    text-decoration: underline;
    color: #007db3;
}

.rte a:not(.rte--unstyled):visited {
    color: #725863;
}

.rte fieldset:not(.rte--unstyled) {
    padding: 18px;
    border: 1px solid #c0c0c0;
    margin-top: 1em;
    margin-bottom: 1em;
}

.rteindent1 {
    margin-left: 40px;
}

.rteindent2 {
    margin-left: 80px;
}

.rteindent3 {
    margin-left: 120px;
}

.rteindent4 {
    margin-left: 160px;
}

.rteleft {
    text-align: left;
}

.rteright {
    text-align: right;
}

.rtecenter {
    text-align: center;
}

.rtecenter iframe {
    margin: 0 auto;
}

.rtejustify {
    text-align: justify;
}

.ibimage_left {
    float: left;
}

.ibimage_right {
    float: right;
}

#bloc_mynea img {
    display: inline;
}

#bloc_mynea .item__title {
    font-weight: bold;
}

.grid__item {
    display: inline-block;
    width: 100%;
    padding-left: 18px;
    vertical-align: top;
}
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    left: 0;
    top: 0;
    height: 39px;
    width: 100%;
    z-index: 10000001;
    position: fixed;
    border: none;
    border-bottom: 1px solid #6B90DA;
    margin: 0;
    box-shadow: 0 0 8px 1px #999
}

.VIpgJd-ZVi9od-xl07Ob-OEVmcd {
    z-index: 10000002;
    border: none;
    position: fixed;
    box-shadow: 0 3px 8px 2px #999
}

.VIpgJd-ZVi9od-SmfZ-OEVmcd {
    z-index: 10000000;
    border: none;
    margin: 0
}

.goog-te-gadget {
    font-family: arial;
    font-size: 11px;
    color: #666;
    white-space: nowrap
}

.goog-te-gadget img {
    vertical-align: middle;
    border: none
}

.goog-te-gadget-simple {
    background-color: #FFF;
    border-left: 1px solid #D5D5D5;
    border-top: 1px solid #9B9B9B;
    border-bottom: 1px solid #E8E8E8;
    border-right: 1px solid #D5D5D5;
    font-size: 10pt;
    display: inline-block;
    padding-top: 1px;
    padding-bottom: 2px;
    cursor: pointer
}

.goog-te-gadget-icon {
    margin-left: 2px;
    margin-right: 2px;
    width: 19px;
    height: 19px;
    border: none;
    vertical-align: middle
}

.goog-te-combo {
    margin-left: 4px;
    margin-right: 4px;
    vertical-align: baseline
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    font-size: 12px;
    font-weight: bold;
    color: #444;
    text-decoration: none
}

.VIpgJd-ZVi9od-ORHb .VIpgJd-ZVi9od-l4eHX-hSRGPd,.VIpgJd-ZVi9od-TvD9Pc-hSRGPd {
    display: block;
    margin: 0 10px
}

.VIpgJd-ZVi9od-ORHb .VIpgJd-ZVi9od-l4eHX-hSRGPd {
    padding-top: 2px;
    padding-left: 4px
}

.goog-te-combo,.VIpgJd-ZVi9od-ORHb *,.VIpgJd-ZVi9od-SmfZ *,.VIpgJd-ZVi9od-xl07Ob *,.VIpgJd-ZVi9od-vH1Gmf *,.VIpgJd-ZVi9od-l9xktf * {
    font-family: arial;
    font-size: 10pt
}

.VIpgJd-ZVi9od-ORHb {
    margin: 0;
    background-color: #E4EFFB;
    overflow: hidden
}

.VIpgJd-ZVi9od-ORHb img {
    border: none
}

.VIpgJd-ZVi9od-ORHb-bN97Pc {
    color: #000
}

.VIpgJd-ZVi9od-ORHb-bN97Pc img {
    vertical-align: middle
}

.VIpgJd-ZVi9od-ORHb-Tswv1b {
    color: #666;
    vertical-align: top;
    margin-top: 0;
    font-size: 7pt
}

.VIpgJd-ZVi9od-ORHb-KE6vqe {
    width: 8px
}

.VIpgJd-ZVi9od-LgbsSe {
    border-color: #E7E7E7;
    border-style: none solid solid none;
    border-width: 0 1px 1px 0
}

.VIpgJd-ZVi9od-LgbsSe div {
    border-color: #CCC #999 #999 #CCC;
    border-right: 1px solid #999;
    border-style: solid;
    border-width: 1px;
    height: 20px
}

.VIpgJd-ZVi9od-LgbsSe button {
    background: transparent;
    border: none;
    cursor: pointer;
    height: 20px;
    overflow: hidden;
    margin: 0;
    vertical-align: top;
    white-space: nowrap
}

.VIpgJd-ZVi9od-LgbsSe button:active {
    background: none repeat scroll 0 0 #CCC
}

.VIpgJd-ZVi9od-SmfZ {
    margin: 0;
    background-color: #FFF;
    white-space: nowrap
}

.VIpgJd-ZVi9od-SmfZ-hSRGPd {
    text-decoration: none;
    font-weight: bold;
    font-size: 10pt;
    border: 1px outset #888;
    padding: 6px 10px;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0
}

.VIpgJd-ZVi9od-SmfZ-hSRGPd img {
    margin-left: 2px;
    margin-right: 2px;
    width: 19px;
    height: 19px;
    border: none;
    vertical-align: middle
}

.VIpgJd-ZVi9od-SmfZ-hSRGPd span {
    text-decoration: underline;
    margin-left: 2px;
    margin-right: 2px;
    vertical-align: middle
}

.goog-te-float-top .VIpgJd-ZVi9od-SmfZ-hSRGPd {
    padding: 2px;
    border-top-width: 0
}

.goog-te-float-bottom .VIpgJd-ZVi9od-SmfZ-hSRGPd {
    padding: 2px;
    border-bottom-width: 0
}

.VIpgJd-ZVi9od-xl07Ob-lTBxed {
    text-decoration: none;
    color: #00C;
    white-space: nowrap;
    margin-left: 4px;
    margin-right: 4px
}

.VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    text-decoration: underline
}

.VIpgJd-ZVi9od-xl07Ob-lTBxed img {
    margin-left: 2px;
    margin-right: 2px
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    color: #000
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
    text-decoration: none
}

.VIpgJd-ZVi9od-xl07Ob {
    background-color: #FFF;
    text-decoration: none;
    border: 2px solid #C3D9FF;
    overflow-y: scroll;
    overflow-x: hidden;
    position: absolute;
    left: 0;
    top: 0
}

.VIpgJd-ZVi9od-xl07Ob-ibnC6b {
    padding: 3px;
    text-decoration: none
}

.VIpgJd-ZVi9od-xl07Ob-ibnC6b,.VIpgJd-ZVi9od-xl07Ob-ibnC6b:link {
    color: #00C;
    background: #FFF
}

.VIpgJd-ZVi9od-xl07Ob-ibnC6b:visited {
    color: #551A8B
}

.VIpgJd-ZVi9od-xl07Ob-ibnC6b:hover {
    background: #C3D9FF
}

.VIpgJd-ZVi9od-xl07Ob-ibnC6b:active {
    color: #00C
}

.VIpgJd-ZVi9od-vH1Gmf {
    background-color: #FFF;
    text-decoration: none;
    border: 1px solid #6B90DA;
    overflow: hidden;
    padding: 4px
}

.VIpgJd-ZVi9od-vH1Gmf-KrhPNb {
    width: 16px
}

.VIpgJd-ZVi9od-vH1Gmf-hgDUwe {
    margin: 6px 0;
    height: 1px;
    background-color: #aaa;
    overflow: hidden
}

.VIpgJd-ZVi9od-vH1Gmf-ibnC6b div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd div {
    padding: 4px
}

.VIpgJd-ZVi9od-vH1Gmf-ibnC6b .uDEFge {
    display: none
}

.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd .uDEFge {
    display: auto
}

.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd .fmcmS {
    padding-left: 4px;
    padding-right: 4px
}

.VIpgJd-ZVi9od-vH1Gmf-ibnC6b,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd {
    text-decoration: none
}

.VIpgJd-ZVi9od-vH1Gmf-ibnC6b div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:link div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:visited div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:active div {
    color: #00C;
    background: #FFF
}

.VIpgJd-ZVi9od-vH1Gmf-ibnC6b:hover div {
    color: #FFF;
    background: #36C
}

.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd:link div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd:visited div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd:hover div,.VIpgJd-ZVi9od-vH1Gmf-ibnC6b-gk6SMd:active div {
    color: #000;
    font-weight: bold
}

.VIpgJd-ZVi9od-l9xktf {
    background-color: #FFF;
    overflow: hidden;
    padding: 8px;
    border: none;
    border-radius: 10px
}

.VIpgJd-ZVi9od-l9xktf-OEVmcd {
    background-color: #FFF;
    border: 1px solid #6B90DA;
    box-shadow: 0 3px 8px 2px #999;
    border-radius: 8px
}

.VIpgJd-ZVi9od-l9xktf img {
    border: none
}

.VIpgJd-ZVi9od-l9xktf-fmcmS {
    margin-top: 6px
}

.VIpgJd-ZVi9od-l9xktf-VgwJlc {
    margin-top: 6px;
    white-space: nowrap
}

.VIpgJd-ZVi9od-l9xktf-VgwJlc * {
    vertical-align: middle
}

.VIpgJd-ZVi9od-l9xktf-VgwJlc .DUGJie {
    background-image: url(https://www&google.com/images/zippy_minus_sm.gif)
}

.VIpgJd-ZVi9od-l9xktf-VgwJlc .TdyTDe {
    background-image: url(https://www&google.com/images/zippy_plus_sm.gif)
}

.VIpgJd-ZVi9od-l9xktf-VgwJlc span {
    color: #00C;
    text-decoration: underline;
    cursor: pointer;
    margin: 0 4px
}

.VIpgJd-ZVi9od-l9xktf-I9GLp {
    margin: 6px 0 0
}

.VIpgJd-ZVi9od-l9xktf-I9GLp form {
    margin: 0
}

.VIpgJd-ZVi9od-l9xktf-I9GLp form textarea {
    margin-bottom: 4px;
    width: 100%
}

.VIpgJd-ZVi9od-l9xktf-yePe5c {
    margin: 6px 0 4px
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    z-index: 1000;
    position: fixed;
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
    left: -1000px;
    top: -1000px
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    left: -14px;
    top: -14px
}

.VIpgJd-ZVi9od-aZ2wEe-OiiCO {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border-radius: 50px;
    background: #FFF url(https://www.gstatic.com/images/branding/product/2x/translate_24dp.png) 50% 50% no-repeat;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    -webkit-transform: scale(.4);
    transform: scale(.4);
    opacity: 0
}

.VIpgJd-ZVi9od-aZ2wEe-OiiCO-ti6hGc {
    -webkit-transform: scale(.5);
    transform: scale(.5);
    opacity: 1
}

.VIpgJd-ZVi9od-aZ2wEe {
    margin: 2px 0 0 2px;
    -webkit-animation: spinner-rotator 1.4s linear infinite;
    animation: spinner-rotator 1.4s linear infinite
}

@-webkit-keyframes spinner-rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
}

@keyframes spinner-rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg)
    }
}

.VIpgJd-ZVi9od-aZ2wEe-Jt5cK {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    stroke: #4285F4;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: spinner-dash 1.4s ease-in-out infinite;
    animation: spinner-dash 1.4s ease-in-out infinite
}

@-webkit-keyframes spinner-dash {
    0% {
        stroke-dashoffset: 187
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg)
    }
}

@keyframes spinner-dash {
    0% {
        stroke-dashoffset: 187
    }

    50% {
        stroke-dashoffset: 46.75;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }

    100% {
        stroke-dashoffset: 187;
        -webkit-transform: rotate(450deg);
        transform: rotate(450deg)
    }
}

.VIpgJd-yAWNEb-L7lbkb html,.VIpgJd-yAWNEb-L7lbkb body,.VIpgJd-yAWNEb-L7lbkb div,.VIpgJd-yAWNEb-L7lbkb span,.VIpgJd-yAWNEb-L7lbkb iframe,.VIpgJd-yAWNEb-L7lbkb h1,.VIpgJd-yAWNEb-L7lbkb h2,.VIpgJd-yAWNEb-L7lbkb h3,.VIpgJd-yAWNEb-L7lbkb h4,.VIpgJd-yAWNEb-L7lbkb h5,.VIpgJd-yAWNEb-L7lbkb h6,.VIpgJd-yAWNEb-L7lbkb p,.VIpgJd-yAWNEb-L7lbkb a,.VIpgJd-yAWNEb-L7lbkb img,.VIpgJd-yAWNEb-L7lbkb ol,.VIpgJd-yAWNEb-L7lbkb ul,.VIpgJd-yAWNEb-L7lbkb li,.VIpgJd-yAWNEb-L7lbkb table,.VIpgJd-yAWNEb-L7lbkb form,.VIpgJd-yAWNEb-L7lbkb tbody,.VIpgJd-yAWNEb-L7lbkb tr,.VIpgJd-yAWNEb-L7lbkb td {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    text-align: left;
    line-height: normal
}

.VIpgJd-yAWNEb-L7lbkb ol,.VIpgJd-yAWNEb-L7lbkb ul {
    list-style: none
}

.VIpgJd-yAWNEb-L7lbkb table {
    border-collapse: collapse;
    border-spacing: 0
}

.VIpgJd-yAWNEb-L7lbkb caption,.VIpgJd-yAWNEb-L7lbkb th,.VIpgJd-yAWNEb-L7lbkb td {
    text-align: left;
    font-weight: normal
}

.VIpgJd-yAWNEb-L7lbkb input::-moz-focus-inner {
    border: 0
}

div>.VIpgJd-yAWNEb-L7lbkb {
    padding: 10px 14px
}

.VIpgJd-yAWNEb-L7lbkb {
    color: #222;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    -moz-box-shadow: 0 4px 16px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 4px 16px rgba(0,0,0,.2);
    display: none;
    font-family: arial;
    font-size: 10pt;
    width: 420px;
    padding: 12px;
    position: absolute;
    z-index: 10000
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-nVMfcd-fmcmS,.VIpgJd-yAWNEb-yAWNEb-Vy2Aqc-pbTTYe {
    clear: both;
    font-size: 10pt;
    position: relative;
    text-align: justify;
    width: 100%
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-r4nke {
    color: #999;
    font-family: arial,sans-serif;
    margin: 4px 0;
    text-align: left
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-TvD9Pc-LgbsSe {
    display: none
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-l4eHX {
    float: left;
    margin: 0
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-Z0Arqf-PLDbbf {
    display: inline-block
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-fw42Ze-Z0Arqf-haAclf {
    display: none;
    width: 100%
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-Z0Arqf-H9tDt {
    margin-top: 20px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-LK5yu {
    float: left
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-qwU8Me {
    float: right
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-cGMI2b {
    min-height: 15px;
    position: relative;
    height: 1%
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-jOfkMb-Ne3sFf {
    background: -webkit-linear-gradient(top,#29910d 0,#20af0e 100%);
    background: -webkit-gradient(linear,left top,left bottom,from(#29910d),to(#20af0e));
    background: linear-gradient(top,#29910d 0,#20af0e 100%);
    background: #29910d;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: inset 0 2px 2px #1e6609;
    -moz-box-shadow: inset 0 2px 2px #1e6609;
    -webkit-box-shadow: inset 0 2px 2px #1e6609;
    color: white;
    font-size: 9pt;
    font-weight: bolder;
    margin-top: 12px;
    padding: 6px;
    text-shadow: 1px 1px 1px #1e6609
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-Z0Arqf-hSRGPd {
    color: #15c;
    cursor: pointer;
    font-family: arial;
    font-size: 11px;
    margin-right: 15px;
    text-decoration: none
}

.VIpgJd-yAWNEb-L7lbkb>textarea {
    font-family: arial;
    resize: vertical;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 1px;
    border: 1px solid #d9d9d9;
    border-top: 1px solid silver;
    font-size: 13px;
    height: auto;
    overflow-y: auto;
    padding: 1px
}

.VIpgJd-yAWNEb-L7lbkb textarea:focus {
    box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
    border: 1px solid #4d90fe;
    outline: none
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-Z0Arqf-IbE0S {
    margin-right: 10px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp {
    min-height: 25px;
    vertical-align: middle;
    padding-top: 8px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp {
    margin-bottom: 5px;
    margin-bottom: 0
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input {
    display: inline-block;
    min-width: 54px;
    *min-width: 70px;
    border: 1px solid #dcdcdc;
    border: 1px solid rgba(0,0,0,.1);
    text-align: center;
    color: #444;
    font-size: 11px;
    font-weight: bold;
    height: 27px;
    outline: 0;
    padding: 0 8px;
    vertical-align: middle;
    line-height: 27px;
    margin: 0 16px 0 0;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1);
    border-radius: 2px;
    -webkit-transition: all .218s;
    transition: all .218s;
    background-color: #f5f5f5;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));
    background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: linear-gradient(top,#f5f5f5,#f1f1f1);
    -webkit-user-select: none;
    -moz-user-select: none;
    cursor: default
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:hover {
    border: 1px solid #c6c6c6;
    color: #222;
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #f8f8f8;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));
    background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
    background-image: linear-gradient(top,#f8f8f8,#f1f1f1)
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:active {
    border: 1px solid #c6c6c6;
    color: #333;
    background-color: #f6f6f6;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#f6f6f6),to(#f1f1f1));
    background-image: -webkit-linear-gradient(top,#f6f6f6,#f1f1f1);
    background-image: linear-gradient(top,#f6f6f6,#f1f1f1)
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:focus .VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input.AHmuwe .VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:active,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:focus:active {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
    -webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
    -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.5)
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:focus,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input.AHmuwe {
    outline: none;
    border: 1px solid #4d90fe;
    z-index: 4!important
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input.gk6SMd {
    background-color: #eee;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#eee),to(#e0e0e0));
    background-image: -webkit-linear-gradient(top,#eee,#e0e0e0);
    background-image: linear-gradient(top,#eee,#e0e0e0);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    border: 1px solid #ccc;
    color: #333
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf {
    color: white;
    border-color: #3079ed;
    background-color: #4d90fe;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));
    background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
    background-image: linear-gradient(top,#4d90fe,#4787ed)
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf:hover .VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf:focus,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf.AHmuwe .VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf:active {
    border-color: #3079ed;
    background-color: #357ae8;
    background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));
    background-image: -webkit-linear-gradient(top,#4d90fe,#357ae8);
    background-image: linear-gradient(top,#4d90fe,#357ae8)
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf:hover {
    box-shadow: inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1);
    -webkit-box-shadow: inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1);
    -moz-box-shadow: inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,.1)
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:focus,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input.AHmuwe,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:active,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input:hover,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf:focus,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf.AHmuwe,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf:active,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-L4Nn5e-I9GLp .VIpgJd-yAWNEb-Z0Arqf-I9GLp input .VIpgJd-yAWNEb-Z0Arqf-sFeBqf:hover {
    border-color: #3079ed
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-mrxPge {
    color: #999;
    font-family: arial,sans-serif
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-W0vJo-fmcmS {
    color: #999;
    font-size: 11px;
    font-family: arial,sans-serif;
    margin: 15px 0 5px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-u0pjoe-fmcmS {
    color: #800;
    display: none;
    font-size: 9pt
}

.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
    background-color: #c9d7f1;
    box-shadow: 2px 2px 4px #99a;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: relative
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-xl07Ob .VIpgJd-yAWNEb-VIpgJd-xl07Ob {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px #99a;
    min-width: 0;
    outline: none;
    padding: 0;
    position: absolute;
    z-index: 2000
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-xl07Ob .VIpgJd-yAWNEb-VIpgJd-j7LFlb {
    cursor: pointer;
    padding: 2px 5px 5px;
    margin-right: 0;
    border-style: none
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-xl07Ob .VIpgJd-yAWNEb-VIpgJd-j7LFlb:hover {
    background: #ddd
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-xl07Ob .VIpgJd-yAWNEb-VIpgJd-j7LFlb h1 {
    font-size: 100%;
    font-weight: bold;
    margin: 4px 0
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-xl07Ob .VIpgJd-yAWNEb-VIpgJd-j7LFlb strong {
    color: #345aad
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-VIpgJd-eKm5Fc-hFsbo {
    text-align: right;
    position: absolute;
    right: 0;
    left: auto
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-VIpgJd-j7LFlb-SIsrTd .VIpgJd-yAWNEb-VIpgJd-eKm5Fc-hFsbo {
    text-align: left;
    position: absolute;
    left: 0;
    right: auto
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-yAWNEb-Vy2Aqc-fmcmS,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-TVLw9c-ppHlrf-sn54Q {
    background-color: #f1ea00;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    box-shadow: rgba(0,0,0,.5) 3px 3px 4px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: #f1ea00;
    cursor: pointer;
    margin: -2px -2px -2px -3px;
    padding: 2px 2px 2px 3px;
    position: relative
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-TVLw9c-ppHlrf-sn54Q {
    color: #222
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-yAWNEb-Vy2Aqc-pbTTYe {
    color: white;
    position: absolute!important
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-TVLw9c-ppHlrf,.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-TVLw9c-ppHlrf .VIpgJd-yAWNEb-TVLw9c-ppHlrf-sn54Q {
    background-color: #c9d7f1;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    box-shadow: rgba(0,0,0,.5) 3px 3px 4px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    cursor: pointer;
    margin: -2px -2px -2px -3px;
    padding: 2px 2px 3px 3px;
    position: relative
}

.VIpgJd-yAWNEb-L7lbkb span:focus {
    outline: none
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-TVLw9c-DyVDA {
    background-color: transparent;
    border: 1px solid #4d90fe;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    margin: -2px;
    padding: 1px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-yAWNEb-TVLw9c-sn54Q-LzX3ef {
    border-left: 2px solid red;
    margin-left: -2px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-yAWNEb-TVLw9c-sn54Q-YIAiIb {
    border-right: 2px solid red;
    margin-right: -2px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-YPqjbf {
    padding: 2px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-YPqjbf-fmcmS {
    font-size: 11px;
    padding: 2px 2px 3px;
    margin: 0;
    background-color: #fff;
    color: #333;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    display: inline-block;
    vertical-align: top;
    height: 21px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-border-radius: 1px
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-YPqjbf-fmcmS:hover {
    border: 1px solid #b9b9b9;
    border-top: 1px solid #a0a0a0;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1)
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-YPqjbf-fmcmS:focus {
    box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
    outline: none;
    border: 1px solid #4d90fe
}

.VIpgJd-yAWNEb-L7lbkb .VIpgJd-yAWNEb-IFdKyd-YPqjbf-sFeBqf {
    font-size: 11px;
    padding: 2px 6px 3px;
    margin: 0 0 0 2px;
    height: 21px
}

.VIpgJd-yAWNEb-hvhgNd {
    font-family: "Google Sans",Arial,sans-serif
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-l4eHX-i3jM8c {
    position: absolute;
    top: 10px;
    left: 14px
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-l4eHX-SIsrTd {
    position: absolute;
    top: 10px;
    right: 14px
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-k77Iif-i3jM8c,.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-k77Iif-SIsrTd {
    margin: 16px;
    padding: 0
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-IuizWc {
    margin: 0 0 0 36px;
    padding: 0;
    color: #747775;
    font-size: 14px;
    font-weight: 500
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-k77Iif-SIsrTd .VIpgJd-yAWNEb-hvhgNd-IuizWc {
    text-align: right;
    margin: 0 36px 0 0
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-axAV1 {
    width: auto;
    padding: 12px 0 0;
    color: #1f1f1f;
    font-size: 16px;
    text-align: initial
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-axAV1 .VIpgJd-yAWNEb-SIsrTd {
    text-align: right
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid {
    border-radius: 0 0 12px 12px;
    margin: 0;
    background: #f1f4f9;
    position: relative;
    min-height: 50px
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid .VIpgJd-yAWNEb-SIsrTd {
    text-align: right
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid-B7I4Od {
    display: inline-block;
    width: 77%;
    padding: 12px
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid-B7I4Od .VIpgJd-yAWNEb-SIsrTd {
    text-align: right
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-UTujCb {
    color: #1f1f1f;
    font-size: 12px;
    font-weight: 500
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid-B7I4Od .VIpgJd-yAWNEb-SIsrTd .VIpgJd-yAWNEb-hvhgNd-UTujCb {
    text-align: right
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-eO9mKe {
    color: #444746;
    font-size: 12px;
    padding-top: 4px
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-N7Eqid-B7I4Od .VIpgJd-yAWNEb-SIsrTd .VIpgJd-yAWNEb-hvhgNd-eO9mKe {
    text-align: right
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-xgov5 {
    position: absolute;
    top: 10px;
    right: 5px
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-xgov5 .VIpgJd-yAWNEb-SIsrTd {
    left: 5px;
    right: auto
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-THI6Vb {
    fill: #0b57d0
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-bgm6sf {
    margin: -4px 2px 0 0;
    padding: 2px 0 0;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    background: none
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-bgm6sf:hover {
    background: #e8ebec
}

.VIpgJd-yAWNEb-hvhgNd .VIpgJd-yAWNEb-hvhgNd-aXYTce {
    display: none
}

sentinel {
}
.list-disc
{
    list-style: disc;
}
.list-decimal
{
    list-style: decimal;
}
