/**********************************************************************/
.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    /*background-color: #ffffff;*/
    /*opacity: 0.5;*/
}
.progress {
    width: 80px;
    height: 80px;
    position: fixed;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-weight: 600;
}
.circular {
    width: 75px;
    height: 75px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: rotate 2s linear infinite;
    transform-origin: center center;
}
.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%,
  0% {
    stroke: #157548;
  }
  40% {
    stroke: #157548;
  }
  66% {
    stroke: #157548;
  }
  80%,
  90% {
    stroke: #157548;
  }
}
/**********************************************************************/
.grecaptcha-badge {
    visibility: hidden;
}
/**********************************************************************/
.spin{animation:spin 2s infinite linear}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}
.animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
/**********************************************************************/
:root {
        --mdc-theme-primary: #157548;
        --mdc-theme-secondary: #157548;
        --mdc-theme-background: #fff;
        --mdc-theme-surface: #fff;
        --mdc-theme-error: #b00020;
        --mdc-theme-on-primary: #fff;
        --mdc-theme-on-secondary: #fff;
        --mdc-theme-on-surface: #000;
        --mdc-theme-on-error: #fff;
        --mdc-theme-text-primary-on-background: rgba(0, 0, 0, 0.87);
        --mdc-theme-text-secondary-on-background: rgba(0, 0, 0, 0.54);
        --mdc-theme-text-hint-on-background: rgba(0, 0, 0, 0.38);
        --mdc-theme-text-disabled-on-background: rgba(0, 0, 0, 0.38);
        --mdc-theme-text-icon-on-background: rgba(0, 0, 0, 0.38);
        --mdc-theme-text-primary-on-light: rgba(0, 0, 0, 0.87);
        --mdc-theme-text-secondary-on-light: rgba(0, 0, 0, 0.54);
        --mdc-theme-text-hint-on-light: rgba(0, 0, 0, 0.38);
        --mdc-theme-text-disabled-on-light: rgba(0, 0, 0, 0.38);
        --mdc-theme-text-icon-on-light: rgba(0, 0, 0, 0.38);
        --mdc-theme-text-primary-on-dark: white;
        --mdc-theme-text-secondary-on-dark: rgba(255, 255, 255, 0.7);
        --mdc-theme-text-hint-on-dark: rgba(255, 255, 255, 0.5);
        --mdc-theme-text-disabled-on-dark: rgba(255, 255, 255, 0.5);
        --mdc-theme-text-icon-on-dark: rgba(255, 255, 255, 0.5);
}
/**********************************************************************/
:root {
        --mdc-layout-grid-margin-desktop: 64px 64px 0px 64px;
        --mdc-layout-grid-gutter-desktop: 24px;
        --mdc-layout-grid-column-width-desktop: 72px;
        --mdc-layout-grid-margin-tablet: 32px 32px 0px 32px;
        --mdc-layout-grid-gutter-tablet: 24px;
        --mdc-layout-grid-column-width-tablet: 72px;
        --mdc-layout-grid-margin-phone: 24px 0px 0px 0px;
        --mdc-layout-grid-gutter-phone: 16px;
        --mdc-layout-grid-column-width-phone: 72px;
}
/**********************************************************************/
:root {
        --mdc-typography-font-family: Poppins;
        --mdc-ripple-focus-opacity: 0;
}
/**********************************************************************/
.mdc-layout-grid {
        width: 100%;
        max-width: 640px;
}
.mdc-layout-grid--middle-width {
        width: 100%;
        max-width: 960px;
}
.mdc-layout-grid--full-width {
        width: 100%;
        max-width: 1440px;
}
/**********************************************************************/
.mdc-top-app-bar {
        background: #FFFFFF;
        padding-top: 12px;
        padding-bottom: 12px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .mdc-top-app-bar {
                padding-top: 4px;
                padding-bottom: 4px;
        }
}

@media (max-width: 599px) {
        .mdc-top-app-bar {
                padding-top: 4px;
                padding-bottom: 4px;
        }
}
/**********************************************************************/
.mdc-top-app-bar__section {
        padding-left: 32px;
        padding-right: 32px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .mdc-top-app-bar__section {
                padding-left: 16px;
                padding-right: 16px;
        }
}

@media (max-width: 599px) {
        .mdc-top-app-bar__section {
                padding-left: 16px;
                padding-right: 16px;
        }
}
/**********************************************************************/
.mdc-top-app-bar--fixed-adjust {
        padding: 88px 32px 32px 32px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .mdc-top-app-bar--fixed-adjust {
                padding: 72px 24px 24px 24px;
        }
}

@media (max-width: 599px) {
        .mdc-top-app-bar--fixed-adjust {
                padding: 64px 24px 24px 24px;
        }
}
/**********************************************************************/
/* MDC select floating label ISSUE WORKAROUND */
.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label,

/* MDC drawer list item text */
.mdc-drawer .mdc-list-item--activated .mdc-list-item__graphic,

/* MDC drawer list item leading icon */
.mdc-drawer .mdc-list-item--activated,

/* MDC snackbar */
.mdc-snackbar__action:not(:disabled),

/* MDC textfield floating label */
.mdc-text-field--focused:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid) .mdc-floating-label {
        color: var(--mdc-theme-primary); /* or secondary */
}
/* MDC select floating label ISSUE WORKAROUND */
/**********************************************************************/
.mdc-text-field--filled {
        border: 1px solid #E5E7EB;
        border-radius: 24px;
        box-sizing: border-box;                        
}

.mdc-text-field--filled:not(.mdc-text-field--disabled) {
        background: #FFFFFF;
}
/**********************************************************************/
.mdc-line-ripple::before {
        display: none;
}
.mdc-line-ripple::after {
        margin-left: 16px;
        right: 160px;
}
/**********************************************************************/
.mdc-select--filled {
        border: 1px solid #E5E7EB;
        border-radius: 24px;
        box-sizing: border-box;
}

.mdc-select--filled .mdc-select__anchor {
        border-radius: 24px;
}

.mdc-select--filled:not(.mdc-select--disabled) .mdc-select__anchor {
        background: #FFFFFF;
}
/**********************************************************************/
.mdc-list-item__text {
        padding-top: 24px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 24px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .mdc-list-item__text {
                padding-top: 16px;
                padding-left: 8px;
                padding-right: 8px;
                padding-bottom: 16px;
        }
}

@media (max-width: 599px) {
        .mdc-list-item__text {
                padding-top: 16px;
                padding-left: 8px;
                padding-right: 8px;
                padding-bottom: 16px;
        }
}
/**********************************************************************/
.mdc-button {
        border-radius: 24px;
        min-width: 48px;
}
/**********************************************************************/
.mdc-button .mdc-button__ripple {
        border-radius: 24px;
        border-radius: var(--mdc-shape-small, 24px);
}
/**********************************************************************/
.mdc-button .mdc-button__label {
        text-transform: none;
        letter-spacing: 0px;
}
/**********************************************************************/
.mdc-button--unelevated .mdc-button__label {
        text-transform: none;
        letter-spacing: 0px;
}
/**********************************************************************/
.mdc-button--outlined {
        background-color: #ffffff;
}
/**********************************************************************/
.mdc-button--outlined .mdc-button__label {
        text-transform: none;
        letter-spacing: 0px;
        color: #111827;
}
/**********************************************************************/
.mdc-button--outlined .mdc-button__ripple::before,
.mdc-button--outlined .mdc-button__ripple::after {
        background-color: #6B7280;
}
/**********************************************************************/
.mdc-button--outlined .mdc-button__icon-only {
        margin-right: 0px;
        font-size: 1.125rem;
        height: 1.125rem;
        width: 1.125rem;
        color: #111827;
}
/**********************************************************************/
.mdc-dialog .mdc-dialog__surface {
        border-radius: 24px;
}
/**********************************************************************/
.mdc-dialog__title {
        letter-spacing: 0px;
}
/**********************************************************************/
.mdc-dialog__content {
        margin-top: 24px;
        letter-spacing: 0px;
}
/**********************************************************************/
.mdc-dialog__actions {
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
}
/**********************************************************************/
.mdc-button__icon {
        color: #111827;
}
/**********************************************************************/
.mdc-card {
        height: 100%;
        display: grid;
}
/**********************************************************************/
.mdc-card--outlined {
        border: 1px solid #E5E7EB;
        box-sizing: border-box;
        border-radius: 24px;
        flex: none;
        order: 0;
        flex-grow: 0;
        padding: 32px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .mdc-card--outlined {
                padding: 24px;
        }
}

@media (max-width: 599px) {
        .mdc-card--outlined {
                padding: 24px;
        }
}
/**********************************************************************/
.mdc-tooltip__surface {
        min-width: 300px;
        border-radius: 24px;
        padding: 16px;
        background: #111827;
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #ffffff;
        letter-spacing: 0px;
}
/**********************************************************************/
.mdc-list-item__primary-text {
        display: block;
        white-space: normal;
}

.mdc-list-item__secondary-text {
        white-space: normal;
}
/**********************************************************************/
.mdc-chip {
        border: 1px solid #E0E0E0;
        background-color: #ffffff;
}
/**********************************************************************/



/***********************************************************************
                                typography
/**********************************************************************/
.typography--heading-right-side-banner {
        font-weight: 500;
        font-size: 2rem;
        line-height: 2.5rem;
        color: #FFFFFF;
        opacity: 0.75;
        letter-spacing: 0px;
}
/**********************************************************************/
.typography--h1-heading {
        font-weight: 600;
        font-size: 2.5rem;
        line-height: 3rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--h1-heading {
                font-size: 1.75rem;
                line-height: 2.25rem;
        }
}

@media (max-width: 599px) {
        .typography--h1-heading {
                font-size: 1.75rem;
                line-height: 2.25rem;
        }
}
/**********************************************************************/
.typography--h2-heading {
        font-weight: 600;
        font-size: 1.75rem;
        line-height: 2.25rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--h2-heading {
                font-size: 1.5rem;
                line-height: 2rem;
        }
}

@media (max-width: 599px) {
        .typography--h2-heading {
                font-size: 1.5rem;
                line-height: 2rem;
        }
}
/**********************************************************************/
.typography--h3-heading {
        font-weight: 600;
        font-size: 1.5rem;
        line-height: 2rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--h3-heading {
                font-size: 1.125rem;
                line-height: 1.5rem;
        }
}

@media (max-width: 599px) {
        .typography--h3-heading {
                font-size: 1.125rem;
                line-height: 1.5rem;
        }
}
/**********************************************************************/
.typography--h4-heading {
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--h4-heading {
                font-size: 0.875rem;
                line-height: 1.25rem;
        }
}

@media (max-width: 599px) {
        .typography--h4-heading {
                font-size: 0.875rem;
                line-height: 1.25rem;
        }
}
/**********************************************************************/
.typography--h5-heading {
        font-weight: 600;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #111827;
        letter-spacing: 0px;
}
/**********************************************************************/
.typography--h6-heading {
        font-weight: 600;
        font-size: 0.75rem;
        line-height: 1rem;
        color: #111827;
        letter-spacing: 0px;
}
/**********************************************************************/
.typography--paragraph-default {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.5rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--paragraph-default {
                font-size: 0.875rem;
                line-height: 1.25rem;
        }
}

@media (max-width: 599px) {
        .typography--paragraph-default {
                font-size: 0.875rem;
                line-height: 1.25rem;
        }
}
/**********************************************************************/
.typography--paragraph-small-regular {
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--paragraph-small-regular {
                font-size: 0.75rem;
                line-height: 1rem;
        }
}

@media (max-width: 599px) {
        .typography--paragraph-small-regular {
                font-size: 0.75rem;
                line-height: 1rem;
        }
}
/**********************************************************************/
.typography--paragraph-small-bold {
        font-weight: 600;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--paragraph-small-bold {
                font-size: 0.75rem;
                line-height: 1rem;
        }
}

@media (max-width: 599px) {
        .typography--paragraph-small-bold {
                font-size: 0.75rem;
                line-height: 1rem;
        }
}
/**********************************************************************/
.typography--paragraph-mormal-regular {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.5rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--paragraph-mormal-regular {
                font-size: 0.875rem;
                line-height: 1.25rem;
        }
}

@media (max-width: 599px) {
        .typography--paragraph-mormal-regular {
                font-size: 0.875rem;
                line-height: 1.25rem;
        }
}
/**********************************************************************/
.typography--paragraph-mormal-bold {
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--paragraph-mormal-bold {
                font-size: 0.875rem;
                line-height: 1.25rem;
        }
}

@media (max-width: 599px) {
        .typography--paragraph-mormal-bold {
                font-size: 0.875rem;
                line-height: 1.25rem;
        }
}
/**********************************************************************/
.typography--paragraph-smaller-regular {
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--paragraph-smaller-regular {
                font-size: 0.75rem;
                line-height: 1rem;
        }
}

@media (max-width: 599px) {
        .typography--paragraph-smaller-regular {
                font-size: 0.75rem;
                line-height: 1rem;
        }
}
/**********************************************************************/
.typography--paragraph-smaller-bold {
        font-weight: 600;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #111827;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .typography--paragraph-smaller-bold {
                font-size: 0.75rem;
                line-height: 1rem;
        }
}

@media (max-width: 599px) {
        .typography--paragraph-smaller-bold {
                font-size: 0.75rem;
                line-height: 1rem;
        }
}
/***********************************************************************
                                typography
/**********************************************************************/



/***********************************************************************
                                colors
/**********************************************************************/
.color-border--blue-gray-200 {
        border: 1px solid #E5E7EB;
}
/**********************************************************************/
.color-background--white-0 {
        background-color: #FFFFFF;
}
/**********************************************************************/
.color-background--blue-gray-50 {
        background-color: #F9FAFB;
}
/**********************************************************************/
.color-background--light-blue-100 {
        background-color: #E0F2FE;
}
/**********************************************************************/
.color-background--orange-100 {
        background-color: #FFEDD5;
}
/**********************************************************************/
.color-background--light-green-100 {
        background-color: #DFECCB;
}
/**********************************************************************/
.color-background--teal-100 {
        background-color: #CCFBF1;
}
/**********************************************************************/
.color-background--purple-500 {
        background-color: #A855F7;
}
/**********************************************************************/
.color-background--primary-500 {
        background-color: #157548;
}
/**********************************************************************/
.color--white-0 {
        color: #FFFFFF;
}
/**********************************************************************/
.color--amber-900 {
        color: #78350F;
}
/**********************************************************************/
.color--light-blue-900 {
        color: #0C4A6E;
}
/***********************************************************************/
.color--light-green-900 {
        color: #416729;
}
/***********************************************************************/
.color--teal-900 {
        color: #134E4A;
}
/**********************************************************************/
.color--blue-gray-900 {
        color: #111827;
}

.color--blue-gray-500 {
        color: #6B7280;
}
/**********************************************************************/
.color--red-500 {
        color: #EF4444;
}

.color--red-900 {
        color: #7F1D1D;
}
/**********************************************************************/
.color--green-500 {
        color: #10B981;
}
/**********************************************************************/
.color--orange-900 {
        color: #7C2D12;
}

.color--orange-500 {
        color: #FF5722;
}
/**********************************************************************/
.color--vub-green-500 {
        color: #157548;
}
/***********************************************************************
                                colors
/**********************************************************************/


/**********************************************************************/
/* chrome remove autocomplete highlight ISSUE WORKAROUND */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
        -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/* chrome remove autocomplete highlight ISSUE WORKAROUND */
/**********************************************************************/
/* remove background when autofill input css ISSUE WORKAROUND */
@-webkit-keyframes autofill {
        0%,100% {
                color: #666;
                background: transparent;
        }
}

input:-webkit-autofill {
        -webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */
        -webkit-animation-name: autofill;
        -webkit-animation-fill-mode: both;
}
/* remove background when autofill input css ISSUE WORKAROUND */
/**********************************************************************/
.hide-on-desktop {
        display: none;
}

@media (min-width: 600px) and (max-width: 839px) {
        .hide-on-desktop {
                display: flex;
        }
        
        .hide-on-tablet {
                display: none;
        }
}

@media (max-width: 599px) {
        .hide-on-desktop {
                display: flex;
        }
        
        .hide-on-tablet {
                display: flex;
        }
        
        .hide-on-phone {
                display: none;
        }
}
/**********************************************************************/
.match-parent-width {
        width: 100%;
}
/**********************************************************************/
.match-parent-height {
        height: 100%;
}
/**********************************************************************/
.match-screen-height-without-top-app-bar {
        min-height: calc(100vh - 122px);
}

@media (min-width: 600px) and (max-width: 839px) {
        .match-screen-height-without-top-app-bar {
                min-height: calc(100vh - 96px);
        }
}

@media (max-width: 599px) {
        .match-screen-height-without-top-app-bar {
                min-height: calc(100vh - 88px);
        }
}
/**********************************************************************/
body {
        margin: 0 auto;
        background: #FFFFFF;
}

@media (min-width: 600px) and (max-width: 839px) {
        body {
                background: #F9FAFB;
        }
}

@media (max-width: 599px) {
        body {
                background: #F9FAFB;
        }
}
/**********************************************************************/
element-banner-slogan {
        display: flex;
        padding-left: 64px;
        padding-top: 64px;
        padding-right: 64px;
}
/**********************************************************************/
.m-r-12 {
        margin-right: 12px;
}
/**********************************************************************/
.m-r-24 {
        margin-right: 24px;
}
/**********************************************************************/
.logo {
        background-image: url(../../vectors/logo-vub-generali-dss-color-desktop.svg);
        background-repeat: no-repeat;
        background-position: center;
}

@media (min-width: 600px) and (max-width: 839px) {
        .logo {
                background-image: url(../../vectors/logo-vub-generali-dss-color-tablet-phone.svg);
                background-repeat: no-repeat;
                background-position: center;
        }
}

@media (max-width: 599px) {
        .logo {
                background-image: url(../../vectors/logo-vub-generali-dss-color-tablet-phone.svg);
                background-repeat: no-repeat;
                background-position: center;
        }
}
/**********************************************************************/
.container-menu {
        width: 280px;
        max-width: 280px;
        padding-right: 32px;
}

.mdc-drawer {
        width: 280px;
        max-width: 280px;
        position: fixed;
        height: calc(100% - 88px);
        max-height: calc(100% - 88px);
        border: none;
        z-index: 2;
        margin-left: 32px;
}

.mdc-deprecated-list-item__text {
        color: #111827;
}

@media (max-width: 1439px) {
        .container-menu {
                width: 56px;
                max-width: 56px;
        }
        
        .mdc-drawer {
                width: 56px;
                max-width: 56px;
                height: calc(100% - 88px);
                max-height: calc(100% - 88px);
        }
        
        .mdc-deprecated-list-group__subheader-container {
                display: none;
        }
        
        .mdc-deprecated-list-item__text {
                display: none;
        }
}

@media (max-width: 839px) {
        .container-menu {
                display: none;
        }
        
        .mdc-drawer {
                width: 100%;
                max-width: 100%;
                height: calc(100% - 64px);
                max-height: calc(100% - 64px);
                margin-left: 0px;
                padding-left: 14px;
                padding-right: 14px;
        }
        
        .mdc-deprecated-list-group__subheader-container {
                display: flex;
        }
        
        .mdc-deprecated-list-item__text {
                display: flex;
        }
}
/**********************************************************************/
.container-main {
        max-width: 526px;
        padding-bottom: 64px;
        background: #F9FAFB;
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        vertical-align: top;
}

@media (max-width: 1199px) {
        .container-main {
                padding-bottom: 64px;
                border-top-right-radius: 16px;
                border-bottom-right-radius: 16px;
        }
}

@media (min-width: 600px) and (max-width: 839px) {
        .container-main {
                padding-bottom: 32px;
                border-top-left-radius: 0px;
                border-bottom-left-radius: 0px;
                border-top-right-radius: 0px;
                border-bottom-right-radius: 0px;
        }
}

@media (max-width: 599px) {
        .container-main {
                padding-bottom: 0px;
                border-top-left-radius: 0px;
                border-bottom-left-radius: 0px;
                border-top-right-radius: 0px;
                border-bottom-right-radius: 0px;
        }
}
/**********************************************************************/
.container-main--full-width {
        border-radius: 16px;
}

@media (max-width: 1199px) {
        .container-main--full-width {
                border-radius: 16px;
        }
}

@media (min-width: 600px) and (max-width: 839px) {
        .container-main--full-width {
                border-radius: 0px;
        }
}

@media (max-width: 599px) {
        .container-main--full-width {
                border-radius: 0px;
        }
}
/**********************************************************************/
.container-banner {
        width: 471px;
        background: #157548;
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
        vertical-align: top;
}

@media (max-width: 1199px) {
        .container-banner {
                display: none;
        }
}
/**********************************************************************/
.vertical-align-top {
        vertical-align: top;
}
/**********************************************************************/
.vertical-align-bottom {
        vertical-align: bottom;
}
/**********************************************************************/
.button-large {
        height: 56px;
}
/**********************************************************************/
.button-medium {
        height: 48px;
}
/**********************************************************************/
.button-small {
        height: 40px;
}
/**********************************************************************/
/* unvisited link */
a:link {
        font-weight: 600;
        color: #157548;
}

/* visited link */
a:visited {
        color: #157548;
}

/* mouse over link */
a:hover {
        opacity: 0.85;
}

/* selected link */
a:active {
        opacity: 0.55;
}
/**********************************************************************/
text-badge-medium {
        width: 48px; 
        height: 48px;
        border-radius: 50%;
        display: flex; /* or inline-flex */
        align-items: center; 
        justify-content: center;
}
/**********************************************************************/
text-badge-default {
        width: 56px; 
        height: 56px;
        border-radius: 50%;
        display: flex; /* or inline-flex */
        align-items: center; 
        justify-content: center;
}
/**********************************************************************/
text-badge-large {
        width: 72px; 
        height: 72px;
        border-radius: 50%;
        display: flex; /* or inline-flex */
        align-items: center; 
        justify-content: center;
}
/**********************************************************************/
icon-badge {
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        border: none;
        outline: none;
        background-color: transparent;
        fill: currentColor;
        color: inherit;
        font-size: 1.5rem;
        text-decoration: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: #FFFFFF;
        box-shadow: 0px 4px 6px -1px rgba(17, 24, 39, 0.1), 0px 2px 4px -1px rgba(17, 24, 39, 0.06);
        border-radius: 16px;
}
/**********************************************************************/
icon-flag-medium {
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        border: none;
        outline: none;
        background-color: transparent;
        fill: currentColor;
        color: inherit;
        font-size: 1.5rem;
        text-decoration: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 32px;
        height: 24px;
}
/**********************************************************************/
icon-small {
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        border: none;
        outline: none;
        background-color: transparent;
        fill: currentColor;
        color: inherit;
        font-size: 1.5rem;
        text-decoration: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 24px;
        height: 24px;
}
/**********************************************************************/
icon-normal {
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        border: none;
        outline: none;
        background-color: transparent;
        fill: currentColor;
        color: inherit;
        font-size: 1.5rem;
        text-decoration: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 36px;
        height: 36px;
}
/**********************************************************************/
icon-medium {
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        border: none;
        outline: none;
        background-color: transparent;
        fill: currentColor;
        color: inherit;
        font-size: 1.5rem;
        text-decoration: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 48px;
        height: 48px;
}
/**********************************************************************/
icon-large {
        display: inline-block;
        position: relative;
        box-sizing: border-box;
        border: none;
        outline: none;
        background-color: transparent;
        fill: currentColor;
        color: inherit;
        font-size: 1.5rem;
        text-decoration: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 72px;
        height: 72px;
}
/**********************************************************************/
.word-break-all {
        word-break: break-all;
}
/**********************************************************************/
.text-left {
        display: flex;
        justify-content: flex-start;
        text-align: start;
}
.text-center {
        display: flex;
        justify-content: center;
        text-align: center;
}
.text-right {
        display: flex;
        justify-content: flex-end;
        text-align: end;
}
.text-decoration-none {
        text-decoration: none;
}
.text-decoration-none {
        text-decoration: none;
}
/**********************************************************************/
.slider-value-to-text {
        width: 40px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .slider-value-to-text {
                width: 35px;
        }
}

@media (max-width: 599px) {
        .slider-value-to-text {
                width: 35px;
        }
}
/**********************************************************************/
.disabled {
        cursor: default;
        opacity: 0.32;
}
/**********************************************************************/
.p-l-48 {
        padding-left: 48px;
}
/**********************************************************************/
.flag-icon-in-list-item {
        position: absolute;
        top: 28%;
}
/**********************************************************************/
.cursor-default {
        cursor: default;
}
/**********************************************************************/
.cursor-pointer {
        cursor: pointer;
}
/**********************************************************************/
.border-collapse--collapse {
        border-collapse: collapse;
}
/**********************************************************************/
.alert--info {
        border-radius: 12px;
        padding: 16px;
        background: #CFFAFE;
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #164E63;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .alert--info {
                font-size: 0.75rem;
        }
}

@media (max-width: 599px) {
        .alert--info {
                font-size: 0.75rem;
        }
}
/**********************************************************************/
.alert--warning {
        border-radius: 12px;
        padding: 16px;
        background: #FEF3C7;
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #78350F;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .alert--warning {
                font-size: 0.75rem;
        }
}

@media (max-width: 599px) {
        .alert--warning {
                font-size: 0.75rem;
        }
}
/**********************************************************************/
.alert--error {
        border-radius: 12px;
        padding: 16px;
        background: #FEE2E2;
        font-weight: 400;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #7F1D1D;
        letter-spacing: 0px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .alert--error {
                font-size: 0.75rem;
        }
}

@media (max-width: 599px) {
        .alert--error {
                font-size: 0.75rem;
        }
}
/**********************************************************************/
.card--info {
        margin-left: 64px;
        margin-top: 64px;
        margin-right: 64px;
}
/**********************************************************************/
.card-table--desktop {
        height: 200px;
}
/**********************************************************************/
.card-table--desktop-tablet-mobile {
        padding-right: 24px;
        padding-bottom: 16px;
}

@media (min-width: 600px) and (max-width: 839px) {
        .card-table--desktop-tablet-mobile {
                padding-right: 12px;
                padding-bottom: 8px;
        }
}

@media (max-width: 599px) {
        .card-table--desktop-tablet-mobile {
                padding-right: 12px;
                padding-bottom: 8px;
        }
}
/**********************************************************************/