@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css");
:root {
  --white: #fff;
  --white-smoke: #F5F5F5;
  --light-grey: #D3D3D3;
  --black: #000;
  --pink-red: #D42039;
  --blue: #253B75;
  --pale-blue: #E2EAFF;
  --dark-grayish-blue: #959bac;
  --color-title: var(--black);
  --color-text: var(--black);
  --color-button-text: var(--white);
  --background-color-layer: var(--white);
  --font-size-xxs: .75rem;
  --font-size-xs: small;
  --font-size-s: .875rem;
  --font-size: 1rem;
  --font-size-m: var(--font-size);
  --font-size-l: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-h3: 1.5rem;
  --font-size-h2: 1.75rem;
  --font-size-h1: 1.6rem;
  --font-size-quote: 1.1em;
  --font-weight-normal: 400;
  --font-weight-semibold: 525;
  --font-weight-bold: 575;
  --font-weight-heavy: 625;
  --border-size-m: 8px;
  --border-color-table: rgba(0, 0, 0, .1);
  --border-color-table-header: rgba(0, 0, 0, .2);
  --border-color-layer: #d4d4d8;
  --spacing-xxs: .25rem;
  --spacing-xs: .5rem;
  --spacing-s: .75rem;
  --spacing-m: 1rem;
  --spacing-l: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  --spacing-xxxl: 4rem;
  --spacing-density-xxs: .25rem;
  --spacing-density-xs: .5rem;
  --spacing-density-s: .75rem;
  --spacing-density-m: 1rem;
  --spacing-density-l: 1.5rem;
  --spacing-density-xl: 2rem;
  --spacing-density-xxl: 3rem;
  --spacing-density-xxxl: 4rem;
  --font-style: Ginter, Inter, "Helvetica Neue", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  --scroll-offset: 72px;
  --transition-easing: cubic-bezier(.19, 1, .22, 1);
  --transition: .15s var(--transition-easing);
  --shadow-l1: 0 1px 2px rgb(20 45 82 / 2%),
  0 3px 4px rgb(20 45 82 / 3%),
  0 5px 8px rgb(20 45 82 / 4%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html {
  font-family: var(--font-style);
  scroll-padding-top: var(--scroll-offset) !important;
}

body {
  color: var(--color-text);
  background: var(--background-color-app);
  overflow-x: hidden;
}
@media (min-width: 90em) {
  body {
    overflow-x: auto;
  }
}

.visually-hidden {
  color: var(--black);
}
.visually-hidden.skip-link {
  color: var(--color-button-text);
}

a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 33px;
}
a:hover, a:link, a:visited {
  text-decoration: none;
}
a:hover {
  color: var(--pink-red);
}

@font-face {
  font-family: "Ginter";
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
  font-name-instance: "regular";
  src: url("../../media/font/inter.woff2") format("woff2 supports variations(gvar)"), url("../media/font/inter.woff2") format("woff2-variations"), url("../media/font/inter.woff2") format("woff2");
}
@font-face {
  font-family: "Icomoon";
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
  font-name-instance: "regular";
  src: url("../../media/font/icomoon.woff") format("woff supports variations(gvar)"), url("../media/font/icomoon.woff") format("woff-variations"), url("../media/font/icomoon.woff") format("woff");
}
.container,
.container-fluid {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}
@media (min-width: 1200px) {
  .row .col-xl-8 {
    width: 76.666667%;
  }
}
@media (min-width: 1200px) {
  .row .col-xl-4 {
    width: 23.333333%;
  }
}
@media (max-width: 1200px) {
  .row .col-lg-10 {
    width: 73%;
  }
}
@media (max-width: 1100px) {
  .row .col-lg-10 {
    width: unset;
  }
}
@media (max-width: 1200px) {
  .row .col-lg-2 {
    width: 26%;
  }
}
@media (max-width: 1100px) {
  .row .col-lg-2 {
    width: unset;
  }
}
.row .data-table-cell {
  min-width: 195px !important;
}
@media (max-width: 1496px) {
  .row .data-table-cell {
    min-width: unset !important;
  }
}
@media (max-width: 1496px) and (max-width: 480px) {
  .row .data-table-cell .info {
    font-size: 0.8rem;
  }
}

.col {
  flex: 1 0 0;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.block-disabled:not(:hover) {
  opacity: 0.6;
  background: transparent;
}

.btn {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  text-transform: uppercase;
  color: var(--blue);
  padding: 15px;
  margin: auto 5px !important;
  background-color: var(--white-smoke);
  border: 2px solid #848580;
}
.btn:hover {
  color: var(--white);
  background-color: var(--pink-red);
}
.btn-primary {
  border: 2px solid var(--pink-red) !important;
  background-color: var(--pink-red);
  color: var(--white);
  padding: 15px 30px;
}
.btn-primary:hover {
  border: 2px solid var(--pink-red) !important;
  color: var(--pink-red) !important;
  background-color: var(--white) !important;
}
@media (max-width: 600px) {
  .btn-primary {
    font-size: 0.5rem;
  }
}
.btn-download {
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn,
.btn:not(:focus) {
  padding: calc(var(--spacing-m) - 2px) calc(var(--spacing-xl) - 2px);
  border: 2px solid lightgray;
  border-radius: 8px;
  transition: var(--transition);
}
@media (max-width: 460px) {
  .btn,
  .btn:not(:focus) {
    padding-left: 1rem;
  }
}

.card {
  border-collapse: collapse;
  width: 100%;
  padding: var(--spacing-s);
  margin-bottom: var(--spacing-l);
  background: var(--background-color-layer);
  box-shadow: var(--shadow-l1);
  border-radius: 0.75rem;
}
.card-center {
  margin: var(--spacing-l) auto;
  width: 1200px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.card-bg-color {
  background-color: #D9D9D9;
}
.card-header {
  color: var(--blue);
  background: var(--white-smoke);
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
  margin-top: 0;
  margin-bottom: var(--spacing-xs);
  padding: var(--spacing-m) var(--spacing-l);
  border: 0 none;
  border-radius: 8px;
}
.card-body li {
  width: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card-body li span.title {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
  margin-right: var(--spacing-m);
}
.card .form-item {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: baseline;
  gap: 50px;
}
.card .form-item > label {
  font-size: 14px;
  font-weight: 600;
  width: 15%;
}
.card .form-item select, .card .form-item input {
  width: 20%;
  border-radius: 8px;
  height: 40px;
  border: 1px solid #959BAC;
  padding: 8px 20px;
  color: #253B75;
}

.modal {
  max-width: 970px !important;
  border: 0 none !important;
  border-radius: var(--border-size-m);
  background: var(--background-color-layer);
}
.modal, .modal:focus, .modal:focus:active, .modal:focus:hover {
  box-shadow: var(--shadow-l1);
}
.modal:not(:last-child) {
  margin-bottom: 15px;
}
.modal .form-control {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: normal;
  gap: 15px;
  align-items: center;
  flex-direction: row-reverse;
  display: flex;
  justify-content: flex-end;
  border: none;
}
.modal input[type=submit] {
  margin-top: 35px;
}
.modal label.option {
  display: inline-block;
  font-weight: normal;
}

div.js-form-item input.form-text, div.js-form-item input.form-email, div.js-form-item input.form-date, div.js-form-item select.form-select {
  max-width: 480px;
  border-radius: 8px;
  height: 40px;
  border: 1px solid #959BAC;
  padding: 8px 20px;
  color: #253B75;
  width: 100%;
}
@media screen and (max-width: 800px) {
  div.js-form-item input.form-text, div.js-form-item input.form-email, div.js-form-item input.form-date, div.js-form-item select.form-select {
    max-width: unset;
  }
}

input[type=checkbox] {
  padding: 12px;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--white);
  margin: 0;
  font: inherit;
  width: 2em;
  height: 2em;
  border: 1px solid var(--dark-grayish-blue);
  border-radius: 2px;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  border-radius: 2px;
  box-shadow: inset 1em 1em var(--pink-red);
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}

.form-horizontal .control-label-ud {
  color: var(--color--gray-5);
  font-weight: 600;
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
  text-align: justify !important;
}
.form-horizontal input {
  text-transform: uppercase;
}

.form-control {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  height: calc(1.5em + 0.75rem + 2px);
  border-radius: 8px;
  border: 1px solid var(--dark-grayish-blue);
  padding: 0.375rem 0.75rem;
  color: var(--blue);
  width: 100%;
}
.form-control--label {
  color: var(--color--gray-5);
  font-weight: 600;
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.form-control input.form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .form-control--label {
    text-align: right;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
form.user-login-form, form.user-register-form, form.user-pass {
  max-width: 1565px;
  margin: 0 auto;
}

.marketing-content .form-item {
  display: flex;
  gap: 15px;
  align-items: center;
}
.marketing-content label.form-required::after {
  display: none;
}
.marketing-content label.form-required p::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
  content: "";
  vertical-align: super;
  background-image: url(../media/icons/required.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

.menu .menu-item a {
  font-weight: bold;
  color: var(--black);
  text-decoration: none;
  font-size: 1.1em;
  position: relative;
  padding-bottom: 7px;
}
.menu .menu-item a:hover {
  color: var(--pink-red);
}
.menu-list-item {
  margin: auto 5px !important;
  background-color: whitesmoke;
  border: 1px solid lightgray;
  border-radius: 8px;
  height: 100%;
}
.menu-list-item a {
  white-space: nowrap;
  line-height: unset !important;
}
@media (min-width: 1705px) {
  .menu-list-item a {
    font-size: 20px !important;
  }
}
.menu-list-item .menu-item {
  color: var(--blue) !important;
  font-weight: bold;
  padding: 13px 35px !important;
}
.menu-list-item:hover {
  border: 1px solid #848580;
  background-color: var(--pink-red);
}
.menu-list-item:hover a {
  color: var(--white) !important;
}

table {
  border-collapse: collapse;
  width: 100%;
  padding: var(--spacing-s);
  background: var(--background-color-layer);
  box-shadow: var(--shadow-l1);
  border-radius: 0.75rem;
}
table thead {
  background: transparent;
  border-radius: var(--border-size-m);
}
table thead th {
  text-align: left;
  padding: var(--spacing-m);
}
table thead tr {
  border-bottom: 2px solid var(--border-color-table-header);
}
table thead tr:hover {
  background: transparent;
}
table th {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-bold);
  background: var(--background-color-layer);
}
table th, table th .form-item__label {
  color: var(--color-title);
}
table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--border-color-table);
}
table tbody td {
  height: auto;
  padding: var(--spacing-density-m) var(--spacing-m);
}

.page-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  letter-spacing: -0.05em;
  color: var(--color-title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0.25em;
  transition: font-size 0.25s ease;
}
@media (max-width: 460px) {
  .page-title {
    font-size: 1rem;
  }
}
@media (min-width: 90em) {
  .region-sticky--is-sticky .page-title {
    font-size: var(--font-size-h3);
  }
}
.page-title__language {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  letter-spacing: normal;
  color: var(--color-text);
}
.page-title--is-translation + .shortcut-action .shortcut-action__icon {
  top: -3px;
}

.tooltip {
  display: inline-block;
  border-bottom: 1px dotted black;
  --arrow-size: 8px;
  --arrow-offset: calc(-1 * (var(--arrow-size) / 2));
}
@media (max-width: 460px) {
  .tooltip {
    font-size: 0.8rem;
  }
}

.tooltip-i {
  grid-template-columns: 8fr 1fr;
  display: grid;
}
@media (max-width: 1100px) {
  .tooltip-i {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}

.tooltip-section {
  align-items: center;
  justify-content: center;
  display: flex;
}
@media (max-width: 1100px) {
  .tooltip-section {
    display: unset;
  }
}
@media (max-width: 840px) {
  .tooltip-section .tooltip-wrapper {
    margin: unset !important;
  }
}

.tooltip-wrapper {
  align-items: center;
  margin: 0 15px;
  justify-content: center;
  display: flex;
  background: #fff;
  color: #C21B17 !important;
  cursor: help;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  border-radius: 100%;
  box-shadow: 0 2px 8px 0 rgba(87, 87, 87, 0.2), 0 2px 2px 0 rgba(87, 87, 87, 0.05), 0 3px 5px 0 rgba(87, 87, 87, 0.1);
  transition: all ease-in-out 0.25s;
}

.tooltip .tooltip-text, .tooltip-i .tooltip-text {
  display: none;
  opacity: 0;
  position: absolute;
  width: auto;
  max-width: 25%;
  height: auto;
  min-height: 25px;
  line-height: 25px;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border-radius: 5px;
  margin-top: 10px;
  padding: 10px 15px;
  transform: translateX(-50%);
}
.tooltip .tooltip-text::after, .tooltip-i .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
}
.tooltip:hover .tooltip-text, .tooltip-i:hover .tooltip-text {
  display: block;
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
@media (max-width: 500px) {
  .tooltip:hover .tooltip-text, .tooltip-i:hover .tooltip-text {
    font-size: 0.6rem;
  }
}
.tooltip:hover .tooltip-text p, .tooltip-i:hover .tooltip-text p {
  margin: 0 !important;
}

.select-tooltip {
  display: flex;
}
.select-tooltip .tooltip {
  border: none;
}

.content-header {
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  -webkit-box-shadow: 1px 1px 11px 0 rgb(172, 172, 172);
  -moz-box-shadow: 1px 1px 11px 0 rgb(172, 172, 172);
  box-shadow: 1px 1px 11px 0 rgb(172, 172, 172);
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 100;
}
@media (max-width: 1050px) {
  .content-header {
    top: unset;
  }
}
.content-header--wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 700px) {
  .content-header--wrapper {
    flex-direction: column;
    min-width: unset !important;
    width: unset !important;
  }
}
@media (max-width: 1050px) {
  .content-header--wrapper {
    flex-direction: column;
  }
}
@media (max-width: 700px) {
  .content-header .menu-list {
    display: block !important;
  }
}

main {
  padding-top: 80px;
  padding-left: 104px;
  padding-right: 104px;
}
@media (max-width: 1320px) {
  main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main .main-content {
  margin-bottom: 106px;
}
@media (max-width: 860px) {
  main .offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 500px) {
  main .offers {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1000px) {
  main .offers .offer {
    text-align: unset;
    height: unset;
  }
}
@media (max-width: 500px) {
  main .offers .offer .offer-details .offer-description {
    display: unset;
  }
}
@media (max-width: 780px) {
  main .offers .offer .offer-details .offer-description {
    display: unset;
  }
}
@media (max-width: 500px) {
  main .offers .offer-title span {
    font-size: 0.6rem;
  }
}
@media (max-width: 500px) {
  main .offers .offer-width-2 {
    flex-direction: column !important;
  }
}

.footer {
  color: var(--white);
  background-color: var(--blue);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 33px;
  padding: 70px 0 0 20px;
}
.footer .content-centered {
  max-width: 1565px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1605px) {
  .footer .content-centered {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.footer .paragraph--type--body .field__item a {
  color: var(--white);
}

.region-footer-1 > .region-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 50px;
  padding-bottom: 25px;
  border-bottom: 1px solid #6F7EA7;
  gap: 50px;
}
@media screen and (max-width: 1600px) {
  .region-footer-1 > .region-content-wrapper {
    flex-wrap: wrap !important;
  }
}
.region-footer-1 .block > h2 {
  margin: 0 0 25px 0;
  text-transform: uppercase;
  font-size: 22px;
}
.region-footer-1 .menu {
  margin-left: 0;
}
.region-footer-1 .menu-item a {
  font-size: 16px;
  font-weight: normal;
  color: var(--white) !important;
}
.region-footer-1 .menu-item a:visited, .region-footer-1 .menu-item a:link {
  text-decoration: none;
}
.region-footer-1 .menu-item a:hover {
  color: var(--pink-red) !important;
}
.region-footer-1 a:link {
  color: var(--white);
  text-decoration: none;
}

.region-footer-2 > .region-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
  gap: 30px;
}
.region-footer-2 #block-pomoc .field--name-field-image > .field__item {
  display: flex;
}

div.region-footer-1 > div.region-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-bottom: 50px;
}

.icon-after {
  position: relative;
  display: inline-block;
}
.icon-after::after {
  font-family: icomoon;
  display: inline-block;
  line-height: 1;
}
.icon-after.icon-facebook::after {
  content: "\e902";
  margin-left: 20px;
}
.icon-after.icon-instagram::after {
  content: "\e90a";
  margin-left: 20px;
}

.block-page-title-block {
  text-align: center;
  margin-bottom: 15px;
}

.block-system-branding-block {
  padding: 0 95px 0 0;
  height: 100%;
  display: flex;
}
@media (max-width: 700px) {
  .block-system-branding-block {
    flex-direction: column;
    padding: 0;
  }
}
@media (max-width: 1600px) {
  .block-system-branding-block {
    width: 100%;
    padding: 0;
  }
}
.block-system-branding-block .site-logo {
  align-items: center;
  display: flex;
}
.block-system-branding-block .site-slogan {
  margin-left: 10px;
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  background-color: var(--blue);
  width: 402px;
  height: 12vh;
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media (max-width: 1600px) {
  .block-system-branding-block .site-slogan {
    height: unset;
  }
}
@media (max-width: 700px) {
  .block-system-branding-block .site-slogan {
    width: 100vw;
    margin-left: -20px;
    padding: 21px;
  }
}

.layout .block > h2 {
  padding: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  width: 100%;
  color: #fff;
  background-color: #253B75;
}
.layout .layout__region:first-child > div {
  background: #f5f5f5;
  margin: 0 30px;
}

.block-agents-assign-agent-view .links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.block-agents-assign-agent-view .links li {
  padding: 0;
  margin: 0;
}
.block-agents-assign-agent-view .links li span {
  font-weight: bold;
}
.block-agents-assign-agent-view > .content {
  padding: 0 30px;
}
.block-agents-assign-agent-view ul.menu {
  margin-left: 0 !important;
  padding-left: 1em !important;
}
.block-agents-assign-agent-view ul.menu .menu-item {
  padding: 15px 30px;
}
.block-agents-assign-agent-view ul.menu .menu-item:hover {
  background-color: #e2eaff;
}
.block-agents-assign-agent-view > .content h3 {
  padding: 20px 0;
}
.block-agents-assign-agent-view > .content h3 span {
  color: #ffd158;
}

.paragraph--type--body .field__item a {
  color: #000;
}
.paragraph--type--body .field__item a:hover {
  color: var(--pink-red);
}

.paragraph--type--insurance-coverage {
  display: grid;
  grid-template-columns: 1.6fr 4fr;
}
.paragraph--type--insurance-coverage .description-container {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--dark-grayish-blue);
}
.paragraph--type--insurance-coverage .description-container .tooltip-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
}
.paragraph--type--insurance-coverage .description-container .tooltip-wrapper span {
  align-items: center;
  margin: 0 15px;
  justify-content: center;
  display: flex;
  background: var(--background-color-layer);
  color: var(--pink-red) !important;
  cursor: help;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  border-radius: 100%;
  box-shadow: 0 2px 8px 0 rgba(87, 87, 87, 0.2), 0 2px 2px 0 rgba(87, 87, 87, 0.05), 0 3px 5px 0 rgba(87, 87, 87, 0.1);
  transition: all ease-in-out 0.25s;
}
.paragraph--type--insurance-coverage:hover .field__item, .paragraph--type--insurance-coverage:hover .tooltip-wrapper {
  background-color: var(--pale-blue) !important;
  transition: 0.2s;
}
.paragraph--type--insurance-coverage .field__items .field__item {
  min-height: 64px;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  border-left: 1px solid var(--dark-grayish-blue);
  background-color: var(--background-color-layer);
}
.paragraph--type--insurance-coverage .field--name-field-coverage-name {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: normal;
}
.paragraph--type--insurance-coverage .field--name-field-coverage-name .field__item {
  justify-content: flex-start;
  border-left: none;
  min-height: 64px;
  width: 100%;
}
.paragraph--type--insurance-coverage .field--name-field-coverages {
  padding-top: 60px;
}
.paragraph--type--insurance-coverage .field--name-field-coverage-variant {
  display: flex;
}
.paragraph--type--insurance-coverage .field--name-field-coverage-variant .field__item {
  border-bottom: 1px solid var(--dark-grayish-blue);
}

.paragraph--type--insurance-contribution {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--dark-grayish-blue);
}
.paragraph--type--insurance-contribution .field--name-field-contribution-name {
  display: flex;
  background: var(--white);
}
.paragraph--type--insurance-contribution .field--name-field-amount {
  display: flex;
  width: 100%;
  color: var(--pink-red);
  background-color: var(--pale-blue);
  font-size: 24px;
  font-weight: bold;
}
.paragraph--type--insurance-contribution .field--name-field-amount .field__item {
  min-height: 64px;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  border-left: 1px solid var(--dark-grayish-blue);
  background-color: var(--white);
}

.paragraph--type--insurance-package .field--name-field-name {
  border-bottom: 1px solid var(--dark-grayish-blue);
  color: var(--blue);
  background-color: var(--white-smoke);
  font-size: 16px;
  font-weight: bold !important;
  text-transform: uppercase;
  height: 60px;
  padding: 10px 30px;
  align-items: center;
  display: flex;
}

.paragraph--type--tile {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  display: flex;
  position: relative;
  word-wrap: break-word;
  text-align: center;
  border-radius: 0.9rem;
  background-color: #F5F5F5;
  box-shadow: 0 5px 15px -8px #7b7b7b;
  height: 350px;
  padding: 40px 20px;
  transition: background-color 0.2s;
}
.paragraph--type--tile .field--name-field-tile-icon {
  height: 180px;
  width: 180px;
}
.paragraph--type--tile .field--name-field-tile-icon img {
  border-radius: 50%;
  height: 180px;
  max-width: 100%;
  object-fit: cover;
}
.paragraph--type--tile .field--name-field-tile-link {
  color: #000;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  height: 100%;
  margin-top: 30px;
}
.paragraph--type--tile .field--name-field-tile-link a {
  font-weight: 700;
  font-size: 1rem;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.paragraph--type--tiles .field--name-field-tiles {
  margin: 0 auto;
  max-width: 1350px;
  gap: 35px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: grid;
}
.paragraph--type--tiles .field--name-field-tiles a {
  text-decoration: none;
}
.paragraph--type--tiles .field--name-field-tiles .paragraph--type--tile {
  border: none;
}
.paragraph--type--tiles .field--name-field-tiles .paragraph--type--tile:hover {
  background-color: var(--blue) !important;
}
.paragraph--type--tiles .field--name-field-tiles .paragraph--type--tile:hover a, .paragraph--type--tiles .field--name-field-tiles .paragraph--type--tile:hover a:link, .paragraph--type--tiles .field--name-field-tiles .paragraph--type--tile:hover a:visited {
  text-decoration: none;
  color: var(--white) !important;
}
@media (max-width: 960px) {
  .paragraph--type--tiles .field--name-field-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .paragraph--type--tiles .field--name-field-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .paragraph--type--tiles .field--name-field-tiles {
    display: flex;
    flex-direction: column;
  }
}

.paragraph--type--attachments .field--name-field-attachments {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}
.paragraph--type--attachments .field--name-field-attachments .field__label {
  margin-bottom: 20px;
  font-size: 1.313rem;
}
.paragraph--type--attachments .field--name-field-attachments .field__item:not(:last-child) {
  margin-bottom: 15px;
}

.field--type-file .field__label {
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.field--type-file .field__item table {
  width: 100%;
}
.field--type-file .field__item table thead tr th {
  text-align: left;
}
.field--type-file .field__item span.file {
  font-size: 18px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--dark-grayish-blue);
  border-radius: 10px;
  padding: 15px;
  margin-left: 1rem;
  margin-right: 1rem;
}
.field--type-file .field__item span.title {
  width: 80%;
  display: inline-block;
  border-right: 1px solid var(--dark-grayish-blue);
}
@media (max-width: 400px) {
  .field--type-file .field__item span.title {
    display: none;
  }
}
@media (max-width: 660px) {
  .field--type-file .field__item span.title {
    font-size: 0.7rem;
  }
}
.field--type-file .field__item span.details {
  font-weight: bold;
  width: 40%;
  justify-content: space-around;
  align-items: baseline;
  display: flex;
}
@media (max-width: 660px) {
  .field--type-file .field__item span.details {
    width: unset;
  }
}
.field--type-file .field__item a.btn-download {
  flex-shrink: 0;
  text-transform: uppercase;
  font-weight: bold;
}
.field--type-file .field__item a.btn-download:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  margin-right: 10px;
  color: var(--white);
}
.field--type-file .field__item a.btn-download:hover {
  color: var(--white);
}

.offer-page {
  height: 100%;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 12px -5px rgb(123, 123, 123);
  background-color: #F5F5F5;
}
.offer-page .last-buy {
  border-top: 1px solid #959BAC;
  margin-top: 60px;
}
.offer-page .header {
  border-radius: 8px;
  color: #fff;
  background-color: #253B75;
}
.offer-page .header h3 {
  justify-content: center;
  display: flex;
  padding: 30px;
}
.offer-page .header .sub-header {
  display: grid;
  grid-template-columns: 1.6fr 4fr;
  width: 100%;
}
@media (max-width: 1100px) {
  .offer-page .header .sub-header {
    display: unset;
    grid-template-columns: unset;
  }
}
.offer-page .header .field__items {
  color: #000;
  background-color: #E2EAFF;
  width: 100%;
  align-items: center;
  display: flex;
  text-align: center;
  height: 56px;
}
.offer-page .header .field__items:first-child .field__item {
  border-left: 0;
}
.offer-page .header .field__items .field__item {
  min-height: 56px;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  border-bottom: 1px solid #959BAC;
  border-left: 1px solid #959BAC;
}
.offer-page .header .field__items .field__item span {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .offer-page .header .field__items .field__item span {
    font-size: 0.8rem;
  }
}
@media (max-width: 460px) {
  .offer-page .header .field__items .field__item span {
    font-size: 0.6rem;
  }
}
.offer-page .first-buy {
  position: sticky;
  top: 50px;
  box-shadow: 0 7px 12px -6px #7b7b7b;
  border-radius: 8px;
}
@media (max-width: 1050px) {
  .offer-page .first-buy {
    top: 0px;
  }
}
.offer-page .discount-code {
  flex-direction: column !important;
  background-color: #FFD158 !important;
  height: auto;
  grid-column-gap: 20px;
  padding: 15px;
}
.offer-page .contribution {
  width: 100%;
  border-bottom: 1px solid var(--dark-grayish-blue);
}
.offer-page .contribution .paragraph {
  grid-template-columns: 1.6fr 4fr;
  display: grid;
}
@media (max-width: 1100px) {
  .offer-page .contribution .paragraph {
    display: unset;
    grid-template-columns: unset;
  }
}
.offer-page .contribution .fees {
  background-color: #fff;
  display: flex;
  width: 100%;
}
.offer-page .contribution .field__items:first-child .field__item {
  border-left: none;
}
.offer-page .contribution .field__items .field__item {
  min-width: 16%;
  min-height: 64px;
  height: 100%;
  width: 100% !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: flex;
  border-left: 1px solid var(--dark-grayish-blue);
  background-color: var(--background-color-layer);
}
.offer-page .contribution .field__items .field__item p {
  margin: 40px 30px;
}
@media (max-width: 1100px) {
  .offer-page .contribution .field__items .field__item p {
    margin: unset;
  }
}
@media (max-width: 1100px) {
  .offer-page .contribution .field__items .field__item {
    min-height: unset;
  }
}
.offer-page .contribution .premiums {
  display: flex;
  width: 100%;
  color: var(--pink-red);
  background-color: var(--pale-blue);
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1100px) {
  .offer-page .contribution .premiums {
    font-size: 1rem;
  }
}
@media (max-width: 760px) {
  .offer-page .contribution .premiums {
    font-size: 0.8rem;
  }
}
@media (max-width: 490px) {
  .offer-page .contribution .premiums {
    font-size: 0.5rem;
  }
}
.offer-page .contribution .premiums .field__item {
  min-width: 16%;
  min-height: 64px;
  height: 100%;
  width: 100% !important;
  align-items: center;
  justify-content: center;
  display: flex;
  border-left: 1px solid var(--dark-grayish-blue);
  background-color: var(--background-color-layer);
}

.coverages .field__items .field__item {
  min-height: 64px;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--background-color-layer);
}
.coverages .field__items .field__item p {
  margin: 20px 30px;
}
@media (max-width: 1100px) {
  .coverages .field__items .field__item p {
    margin: 10px 10px;
  }
}
@media (max-width: 460px) {
  .coverages .field__items .field__item p {
    font-size: 0.69rem;
  }
}

.packages .package .p-name {
  border-bottom: 1px solid var(--dark-grayish-blue);
  color: var(--blue);
  background-color: var(--white-smoke);
  font-size: 16px;
  font-weight: bold !important;
  text-transform: uppercase;
  height: 60px;
  padding: 10px 30px;
  align-items: center;
  display: flex;
}
.packages .packages .package:first-child .p-name {
  margin-top: 60px;
  border-top: 1px solid var(--dark-grayish-blue);
}

.coverages {
  display: flex;
  flex-direction: column;
}
.coverages .coverage {
  display: grid;
  grid-template-columns: 1.6fr 4fr;
  border-bottom: 1px solid var(--dark-grayish-blue);
}
.coverages .coverage .v-name {
  justify-content: flex-start;
  border-left: none;
  min-height: 64px;
  width: 100%;
}
.coverages .coverage:hover .field__items .field__item,
.coverages .coverage:hover .variants .field__item {
  border: none;
  background-color: var(--white-smoke);
}
@media (max-width: 1100px) {
  .coverages .coverage {
    display: unset;
    grid-template-columns: unset;
  }
}

.variants {
  display: flex;
}
.variants .field__item {
  border-left: 1px solid var(--dark-grayish-blue);
}

.premiums .field__item:nth-child(odd),
.variants .field__item:nth-child(odd),
.fees .field__item:nth-child(odd) {
  background-color: var(--white-smoke) !important;
}

.contribution .premium {
  padding-top: 15px;
  padding-bottom: 10px;
  font-weight: bold;
}
.contribution .premium s {
  display: flex;
}
@media (max-width: 490px) {
  .contribution .premium s {
    font-size: 0.6rem !important;
  }
}
.contribution .links {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  list-style: none;
}
.contribution .links li {
  width: 100%;
}
.contribution .links li span {
  margin: 2px 0;
  padding: 2px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.contribution .links li span i {
  padding-right: 5px;
  color: #253B75;
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  .contribution .links li span i {
    display: none;
  }
}
.contribution .links li span a {
  padding: 5px 0;
  width: 100%;
  line-height: 1;
  text-align: center;
  color: var(--pink-red);
}
@media (max-width: 1100px) {
  .contribution .links li span {
    font-size: 0.6rem;
  }
}
.contribution .tooltip-text {
  margin-left: 19rem;
}
@media (max-width: 1100px) {
  .contribution .tooltip-text {
    margin-left: unset;
  }
}

/*# sourceMappingURL=styles.css.map */
