h1, h2, h3, h4, h5, h6 {
    font-family: var(--Font-Syne);
}
a, p, span, div, li, button {
    font-family: var(--Font-Inter);
}
body {
    color: var(--Color-Dark);
    line-height: 1.3;
    overflow-x: hidden;
}
h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--Color-Dark);
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 40px;
}
h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--Color-Dark);
    line-height: 1.3;
    margin-bottom: 20px;
}
h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--Color-Dark);
    line-height: 1.3;
    margin-bottom: 20px;
}
h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--Color-Dark);
    line-height: 1.3;
    margin-bottom: 20px;
}
h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--Color-Dark);
    line-height: 1.3;
    margin-bottom: 20px;
}
h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--Color-Dark);
    line-height: 1.3;
    margin-bottom: 20px;
}
ol {
    list-style-type: decimal;
    margin: 20px 0 20px 20px;
}
ul {
    list-style-type: disc;
    margin: 20px 0 20px 20px;
}
ol ol, ol ul, ul ul, ul ol {
    margin-top: 0;
    margin-bottom: 0;
}
strong {
    font-weight: bolder;
}
em {
    font-style: italic;
}
p {
    margin-bottom: 20px;
}
p, span, li, a {
    line-height: 1.5;
}
.header-logo {
    display: block;
    height: 60px;
}
.header-logo:hover {
    filter: brightness(0) saturate(100%) invert(35%) sepia(52%) saturate(3304%) hue-rotate(208deg) brightness(102%) contrast(101%);
}
.header-logo-link {
    display: block;
}
.main-header {
    position: absolute;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.49) 0%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    z-index: 1000;
    transition: all 0.5s ease;
}
.admin-bar .main-header {
    top: 32px;
}
.header-inner {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 20px;
    width: 100%;
    justify-items: end;
    padding-top: 40px;
    padding-bottom: 40px;
}
.content-width {
    max-width: 1240px;
    padding-right: 20px;
    padding-left: 20px;
    margin-left: auto;
    margin-right: auto;
}
.thin-content {
    max-width: 800px;
}
.mobile-menu-toggle {
    display: none;
}
.mobile-header-content {
    opacity: 0;
    height: 0;
    pointer-events: none;
    display: none;
}
header.mobile-open .mobile-header-content {
    pointer-events: initial;
}
.menu-top-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.language-choices li {
    list-style-type: none;
}
.language-choices a {
    text-decoration: none;
    font-weight: 600;
    color: var(--Color-Texts);
    transition: all 0.5s ease;
    line-height: unset;
    vertical-align: middle;
}
.language-choices a:hover {
    color: var(--Color-Accent);
}
.lang_flag {
    margin-left: 10px;
    height: 16px;
	opacity: 0.75;
    transition: all 0.5s ease;
}
.lang_flag:hover {
	opacity: 1;
}
.menu-top-container ul.menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
}
.menu-top-container ul.menu li {
    list-style-type: none;
}
.menu-top-container ul.menu a {
    text-decoration: none;
    font-weight: 600;
    color: var(--Color-Texts);
    transition: all 0.5s ease;
    line-height: unset;
    opacity: 1;
}
.menu-top-container ul.menu a:hover {
    color: var(--Color-Hover);
    opacity: 1;
}
.menu-top-container ul.menu li.current_page_item a {
    color: var(--Color-Texts);
    opacity: 1;
}
.menu-top-container ul.menu li.current_page_item a:hover {
    color: var(--Color-Hover);
    opacity: 1;
}
.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.admin-bar .main-wrapper {
    min-height: calc(100vh - 32px);
}
.main-container {
    flex: 1;
}
body.home .main-container {
    margin-top: -143px;
}
.footer {
    background-color: #00082D;
    position: relative;
    background-position-y: bottom;
    background-position-x: center;
    background-size: cover;
}
.footer-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.49) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}
.footer-container {
    padding-top: 100px;
    padding-bottom: 20px;
    z-index: 2;
    position: relative;
}
.footer-description,
.footer-links,
.footer-contact {
    width: 33%;
}
.footer-contact p, .footer-description p {
    line-height: 26px;
}
.footer-description p {
    margin-bottom: 0;
}
#copyright {
    text-align: center;
    font-weight: 500;
    color: var(--Color-Texts);
    margin-top: 50px;
    font-size: 15px;
}
.footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 0 20px;
    background: #00000080;
    padding: 20px;
    border-radius: 12px;
}
.footer-links {
    display: flex;
    flex-direction: column;
}
.footer-links h3 {
    color: var(--Color-Texts);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--Color-Texts);
    margin-left: min(80px, 4%);
}
.footer-content h3 {
    font-family: var(--Font-Inter);
}
.footer-links .menu ul, .footer-links ul.menu {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
    margin: 0;
}
.footer-links .menu ul li, .footer-links ul.menu li {
    list-style-type: none;
}
.footer-links .menu ul a, .footer-links ul.menu a {
    text-decoration: none;
    font-weight: 400;
    color: var(--Color-Texts);
    transition: all 0.5s ease;
    line-height: unset;
    text-align: center;
    opacity: 1;
}
.footer-links .menu ul a:hover, .footer-links ul.menu a:hover {
    color: var(--Color-Hover);
    opacity: 1;
}
.footer-links .menu ul li.current_page_item a, .footer-links ul.menu li.current_page_item a {
    color: var(--Color-Texts);
    opacity: 1;
}
.footer-links .menu ul li.current_page_item a:hover, .footer-links ul.menu li.current_page_item a:hover {
    color: var(--Color-Hover);
    opacity: 1;
}
.footer-contact-title {
    margin-bottom: 10px;
    color: var(--Color-Texts);
}
.footer-contact a {
    text-decoration: none;
    font-weight: 600;
    color: var(--Color-Texts);
    transition: all 0.5s ease;
}
.footer-contact a:hover {
    color: var(--Color-Accent);
}
.content-section {
    padding: 40px 0;
}
.content-introduction .content-inner {
    max-width: 800px;
}
.hero-section {
    position: relative;
}
/*
.page-template-page-frontpage .main-container {
    margin-top: -100px;
}
*/
.background-image {
    height: 100%;
    width: 100%;
    position: absolute;
}
.background-image img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.background-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
}
.hero-content {
    height: 100vh;
    min-height: 700px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    color: var(--Color-Texts);
    position: relative;
}
.hero-content-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 800px;
    height: 100%;
    gap: 20px;
}
.hero-content h1 {
    color: var(--Color-Texts);
    font-weight: 700;
    line-height: 120%;
}
.btn {
    color: var(--Color-Texts);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 38px;
    background-color: var(--Color-Hover);
    transition: all 0.5s ease;
    border-radius: 12px;
    margin-top: 40px;
    border: unset;
    cursor: pointer;
}
.btn:disabled {
    opacity: 0.3;
}
.btn:hover {
    background-color: var(--Color-Accent);
    color: var(--Color-Texts);
}
.btn:disabled:hover {
    background-color: var(--Color-Hover);
    color: var(--Color-Texts);
}
.hero-slogan {
    margin-bottom: 10px;
}
.hero-subtext {
    margin-bottom: unset;
    font-size: 18px;
}
.header-buffer {
    height: 143px;
    transition: all 0.5s ease;
    background-color: var(--Color-Background);
}/*
.page-template-page-front .header-buffer {
    background-color: rgb(4, 70, 159);
}*/

/* Burger menu animation start */
.menuicon {
    display:block;
    cursor:pointer;
    color: var(--Color-Hover);
    width: 40px;
    
    transform:rotate(0deg);
    transition: .3s cubic-bezier(0.165, 0.840, 0.440, 1.000); 
}
.menuicon__bar, .menuicon__circle {
    fill:none;
    stroke: currentColor;
    stroke-width:3;
    stroke-linecap:round;
}
.menuicon__circle {
    stroke-width: 2;
}
.menuicon__bar {
    transform: rotate(0deg);
    transform-origin:50% 50%;
    transition: transform .25s ease-in-out;
}
.menuicon__circle {
    transition: stroke-dashoffset .3s linear .1s;
    stroke-dashoffset: calc(23 * 2 * 3.141592653);
    stroke-dasharray: calc(23 * 2 * 3.141592653);
}
header.mobile-open .mobile-menu-toggle .menuicon {
    color:var(--Color-Hover);
    transform:rotate(180deg);
}
header.mobile-open .mobile-menu-toggle .menuicon__circle {
    stroke-dashoffset:0;
}
header.mobile-open .mobile-menu-toggle .menuicon__bar:nth-child(1),
header.mobile-open .mobile-menu-toggle .menuicon__bar:nth-child(4) {
    opacity:0;
}
header.mobile-open .mobile-menu-toggle .menuicon__bar:nth-child(2) {
    transform: rotate(45deg);
}
header.mobile-open .mobile-menu-toggle .menuicon__bar:nth-child(3) {
    transform: rotate(-45deg);
}

.page-title {
    margin: 80px 0;
}
.page-title.middle {
    text-align: center;
}
.content {
    margin: 20px 0 80px;
}
.debt-other-side {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--Color-Dark);
    background-color: #DBE9FF;
    padding: 40px 20px 50px;
    text-align: center;
}
.debt-other-side-content {
    font-size: 20px;
    color: var(--Color-Background);
    margin-top: 60px;
}
.form-confirmation-block {
    color: var(--Color-Texts);
    background-color: var(--Color-Background);
    background-color: #ffffff;
    color: var(--Color-Background);
    border-radius: 12px;
    padding: 20px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    width: fit-content;
}
.form-confirmation-block input[type=text] {
    border: 1px solid var(--Color-Background);
}
.form-confirmation-block input[type=submit] {
    display: block;
    padding: 17px 38px;
    font-size: 18px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--Font-Inter);
}
.form-confirmation-block h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}
.form-confirmation-block input.creditor-date {
    max-width: 310px;
    margin: 0 auto;
}
.form-confirmation-question input[type=radio] {
    display: none;
}
.form-confirmation-question .wpcf7-list-item {
    margin: 0;
}
.form-confirmation-question .wpcf7-list-item label {
    color: var(--Color-Texts);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 38px;
    background-color: var(--Color-Hover);
    transition: all 0.5s ease;
    border-radius: 12px;
    border: unset;
    cursor: pointer;
}
.form-confirmation-question .wpcf7-list-item label * {
    cursor: pointer;
}
.form-confirmation-question .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
}
.form-confirmation-question .wpcf7-list-item label:hover {
    background-color: var(--Color-Accent);
}
.form-confirmation-question .wpcf7-list-item.last label {
    background-color: #fff;
    color: var(--Color-Background);
    border: 1px solid var(--Color-Hover);
}
.form-confirmation-question .wpcf7-list-item.last label:hover {
    background-color: var(--Color-Accent);
    color: var(--Color-Texts);
}

.form-confirmation-block .wpcf7-spinner {
    display: none;
}
div[data-id="choice-selected"] p {
    margin: 0;
}
div[data-id="choice-selected"] input {
    margin-top: 0;
}
.form-confirmation-block .creditor-date {
    margin-bottom: 20px;
}
.debt-other-side-content .creditor-date {
    margin-top: 10px;
}

#wp-accessibility-panel {
    background-color: var(--Color-Background);
}
#wp-accessibility-panel, #wp-accessibility-panel div, #wp-accessibility-panel ul{
    width: 100%;
}
#wp-accessibility-panel li{
    width: fit-content;
}
#wp-accessibility-panel ul li button{
    text-align: left;
    padding-left: 20px;
    color: #fff;
    background: none;
}
.aticon-adjust:before, .aticon-font:before{
    padding-right: 10px;
    color: #fff;
}
#wp-accessibility-panel ul li button {
    border-width: 0px;
}
#wp-accessibility-panel ul li button.active, #wp-accessibility-panel ul li button:hover {
    background: #04469f;
    border-width: 0px;
    color: #FFC76E;
}
.offscreen {
    display: none;
}
#wp-accessibility-panel ul li button.active .aticon-adjust:before, #wp-accessibility-panel ul li button.active .aticon-font:before{
    color: #FFC76E;
}
#wp-accessibility-panel ul li button:hover .aticon-adjust:before, #wp-accessibility-panel ul li button:hover .aticon-font:before{
    color: #FFC76E;
}
#wp-accessibility-panel ul {
    list-style: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0 0 4px 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}
#wp-accessibility-panel ul li {
    margin: 0;
    padding: 0;
    display: block;
}
#wp-accessibility-panel ul li button {
    font-size: 22px !important;
    padding: 14px 10px;
    width: 100%;
}
#hidden_panel {
    margin: 20px 0 20px 50px;
    text-decoration: none;
    font-weight: 600;
    color: var(--Color-Texts);
    transition: all 0.5s ease;
    line-height: unset;
    cursor: pointer;
    height: 24px;
    line-height: 1.5;
}
#hidden_panel:hover {
    color: var(--Color-Hover);
}
/* LANGUAGE REMOVE WHEN ENGLISH IS AVAILABLE */
/*
.language-switcher {
    display: none;
}
*/
ul.language-choices {
    margin-left: 30px;
}
.content-left, .content-right {
    width: 50%;
    font-size: 20px;
}
.content-top {
    display: flex;
    align-items: center;
    gap: 80px;
}
.content-left img, .content-right img {
    width: 100%;
    max-width: 500px;
}
.home-content1 .content-right, .home-content3 .content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-content1 {
    background-color: rgb(from var(--Color-Background-Light) r g b / 40%);
    padding: 180px 0 60px;
    color: var(--Color-Dark);
    position: relative;
}
.home-content3 {
    background-color: rgb(from var(--Color-Background-Light) r g b / 40%);
    padding: 60px 0 100px;
    color: var(--Color-Dark);
    position: relative;
}
.home-content3 h2, .home-content2 h2, .home-content1 h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 134%;
}
.home-content2 {
    background-color: rgb(from var(--Color-Background-Light) r g b / 40%);
    padding: 60px 0 60px;
    color: var(--Color-Dark);
    position: relative;
}
.cta-section {
    background-color: var(--Color-White);
    padding: 240px 0 200px;
    color: #00082D;
    position: relative;
}
.how-blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 1px;
}
.how-block {
    display: flex;
    justify-content: center;
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    color: #00082D;
}
.how-block-inner {
    display: flex;
    flex-direction: column;
}
.how-block.step1 {
    background: #E8F1FF;
}
.how-block.step2 {
    background: #DBE9FF;
}
.how-block.step3 {
    background: #C9DEFF;
}
.how-block .icon img {
    height: 60px;
}
.how-top-text {
    font-size: 26px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--Font-Syne);
}
.how-bot-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
    font-family: var(--Font-Inter);
}
.how-section {
    background-color: var(--Color-White);
    padding: 100px 0 180px;
    position: relative;
    margin-top: -1px;
}
.how-section h2 {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    line-height: 134%;
}
.icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}
.icon-nr {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
}
h2.dark {
    color: var(--Color-Dark);
}
h2.white {
    color: var(--Color-Texts);
}
img.round {
    border-radius: 12px;
}
.content-top li {
    font-size: 20px;
    line-height: 1.8;
}
.btn.small {
    padding: 12px 40px;
}
.btn.center {
    margin: 0 auto;
    display: block;
    width: fit-content;
}
.cta-section .content-width {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.cta-section h2 {
    text-align: center;
    width: 100%;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 5px;
}
.footer-description {
    color: var(--Color-Texts);
}
.footer-description h3 {
    color: var(--Color-Texts);
}
.wave {
    display: block;
    width: 100%;
    transform: rotate(0deg);
    /*background: #00082D;*/
    height: 50px;
}
.wave.light {
    /*background-color: #00082D;*/
}
.wave.banner-wave {
    transform: rotateY(180deg) rotateX(0deg);
    position: absolute;
    bottom: 0;
    background-color: transparent;
}
.wave.top {
    position: absolute;
    top: 0;
    transform: rotateY(180deg) rotateX(180deg);
}
.wave.bottom {
    position: absolute;
    top: 0;
    transform: rotateY(0deg) rotateX(180deg);
}
/*
.home-content3 img.sphere {
    border-radius: 50%;
}
*/
.how-nr {
    line-height: 1;
    font-weight: 700;
    color: #9df4ff;
    font-size: 217px;
    height: 217px;
    margin-top: -10px;
    background-image: linear-gradient(var(--bgi-degree), #c3f8ff 20%, var(--Color-Accent));
    background-image: -webkit-linear-gradient(var(--bgi-degree), #c3f8ff 20%, var(--Color-Accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.95;
    animation-duration: 20s;
    animation-name: rotates;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
/* Animation Keyframes*/
@property --bgi-degree {
    syntax: '<angle>';
    inherits: false;
    initial-value: 135deg;
}
@keyframes rotates {
    to {
        --bgi-degree: -225deg;
    }
}
.how-nr.first {
    min-width: 122px;
    text-align: center;
    margin-left: -112px;
}
.how-nr.second {
    min-width: 175px;
    margin-left: -127px;
    text-align: center;
}
.how-nr.third {
    min-width: 164px;
    margin-left: -120px;
    text-align: center;
}
.how-hr {    
    margin: 130px 0 100px;
    border-top: 1px solid var(--Color-Accent)
}
.a11y-toolbar-list-item button {
    cursor: pointer;
}
.accessibility_open .header-buffer {
    height: 193px;
}
.home-content3 p {
    font-size: 20px;
}
.home-content2 .content-top {
    flex-direction: row-reverse;
}


@media screen and (max-width: 1000px) {


}

/* Burger menu animation end */

@media screen and (max-width: 800px) {
    .mobile-menu-toggle {
        display: block;
    }
    .header-inner .header-menus {
        display: none;
    }
    .mobile-header-content {
        display: block;
        opacity: 0;
        transition: all 0.5s ease;
        pointer-events: none;
        width: 100%;
        height: 0;
    }
    header.mobile-open .mobile-header-content {
        opacity: 1;
        pointer-events: initial;
        height: calc(100vh - 70px);
        overflow-y: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .admin-bar header.mobile-open .mobile-header-content {
        height: calc(100vh - 116px);
    }
    header {
        display: grid;
    }
    header.mobile-open {
        position: fixed;
        top: 0;
        z-index: 100000;
        width: 100%;
        background: var(--Color-Background);
    }
    header .header-inner {
        width: 100%;
    }
    html.mobile-open {
        overflow-y: hidden;
    }
    .mobile-header-content .menu-top-container .menu ul {
        flex-direction: column;
    }
    .steps-content {
        align-items: flex-start;
        flex-direction: column;
        width: fit-content;
    }
    .step {
        margin-right: min(140px, 25vw);
    }
    .step-arrow {
        transform: rotate(50deg);
        margin-top: 10px;
        margin-bottom: 10px;
        top: 0;
        margin-left: auto;
        margin-right: 146px;
    }
    .step-arrow.reverse {
        transform: rotate(310deg);
    }
    .step.bottom {
        margin-top: 0;
        margin-left: min(140px, 25vw);
        margin-right: 0;
    }
    .hero-content {
        min-height: 550px;
    }
    .admin-bar .main-header {
        top: 46px;
    }
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .hero-subtext {
        font-size: 16px;
    }
    .btn {
        padding: 14px 20px;
        font-size: 16px;
    }
    .home-content1 .content-top,
    .home-content3 .content-top {
        flex-direction: column;
    }
    .home-content2 .content-top {
        flex-direction: column;
        gap: 20px;
    }
    .content-left, .content-right {
        font-size: 16px;
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .mobile-header-content .menu-top-container {
        flex-direction: column;
    }
    .mobile-header-content .menu-top-container ul.menu {
        flex-direction: column;
        margin-left: 0;
    }
    .how-block {
        padding: 30px;
    }
    .footer-description, .footer-links, .footer-contact {
        width: 100%;
    }
    footer nav {
        margin: 0;
    }
    .hero-content-inner {
        max-width: 400px;
    }
    .mobile-header-content .menu-main-menu-container ul {
        margin-left: 0;
    }
    #hidden_panel {
        margin-left: 0;
    }
    .language-choices {
        margin-left: 0;
    }
    .cta-section {
        padding: 120px 0 70px;
    }
    .home-content1 {
        padding: 60px 0 50px;
    }
    .home-content3 {
        padding: 50px 0 60px;
    }
    .content-top {
        gap: 60px;
    }
    .home-content1 .content-top {
        gap: 60px;
    }
    .home-content3 .content-top {
        gap: 60px;
    }
    .home-content3 img.sphere {
        margin-left: -3px;
    }
    .home-content2 {
        padding: 50px 0;
    }
    .how-section {
        padding: 50px 0 130px;
    }
    .header-logo {
        height: 40px;
    }
    .header-inner {
        padding: 20px;
    }
    .header-buffer {
        height: 90px;
    }
    .accessibility_open .header-buffer {
        height: 90px;
    }
    .content-top li {
        font-size: 16px;
    }
    .footer-links h3 {
        color: var(--Color-Texts);
        margin-left: 0;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
    ul.language-choices {
        margin-left: 0;
    }
    .lang_flag {
        margin-left: 0;
    }
    .home-content3 p {
        font-size: 16px;
    }
}
.hidden-form-submit-div {
    opacity: 0 !important;
    position: absolute;
}
/* Accessibility CSS start */

html.fontsize h1 {
    font-size: 60px !important;
}
html.fontsize h2 {
    font-size: 48px !important;
}
html.fontsize .btn {
    font-size: 24px !important;
}
html.fontsize .form-autocomplete-block-button {
    font-size: 20px !important;
}
html.fontsize .how-nr {
    font-size: 217px !important;
    line-height: 1;
}
html.fontsize .result-reasonings {
    font-size: 24px !important;
}
html.fontsize .license-price {
    font-size: 48px !important;
}
html.fontsize .license-choice-label h3 {
    font-size: 44px !important;
}
html.fontsize .license-choice-label h3 .license-text {
    font-size: 32px !important;
}
html.fontsize span {
    font-size: var(--wpa-font-size) !important;
}
html.fontsize .footer-contact span {
    font-size: var(--wpa-font-size) !important;
    line-height: 1.6;
}
html.fontsize .content-top li {
    line-height: 2.4;
}
body.contrast img.header-logo {
    background-color: #000 !important;
}
body.contrast .wave {
    height: 0;
}
body.contrast .hero-content,
body.contrast .hero-content-inner,
body.contrast .hero-slogan,
body.contrast .hero-subtext {
    background: transparent !important;
}
body.contrast .main-header,
body.contrast .header-inner,
body.contrast .header-menus,
body.contrast .header-menus * {
    background: transparent !important;
}
@media screen and (max-width: 800px) {
    body.contrast .header-inner {
        background: #000 !important;
    }
    html.fontsize h1 {
        font-size: 44px !important;
    }
    html.fontsize h2 {
        font-size: 40px !important;
    }
    html.fontsize .how-nr {
        display: none;
    }
    html.fontsize .how-blocks {
        margin-left: 0;
    }
    html.fontsize .hero-content {
        min-height: 750px;
    }
    html.fontsize .how-block {
        padding-left: 20px;
    }
}

/* Accessibility CSS end */

.hide {
    display: none;
}
.hide-i {
    display: none !important;
}
/*.wpcf7-response-output {
    display: none;
}*/
span[data-name="creditor-date"] .wpcf7-not-valid-tip {
    display: none;
}
.creditor-form-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
}
.debt-intro-block {
    background-color: #ffffff;
    color: var(--Color-Background);
    padding: 50px;
    flex: 1;
}
.debt-intro-block.step1 {
    background: #E8F1FF;
}
.debt-intro-block.step2 {
    background: #DBE9FF;
}
.debt-intro-block.step3 {
    background: #C9DEFF;
}
.debt-intro-block input:autofill {
    background-color: red !important;
}
.main-container input:-webkit-autofill,
.main-container input:-webkit-autofill:hover, 
.main-container input:-webkit-autofill:focus, 
.main-container input:-webkit-autofill:active  {
    color : var(--Color-Dark) !important;
    -webkit-text-fill-color: var(--Color-Dark) !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}
.form-step-img p {
    margin: 0;
}
.form-step-img img {
    width: 55px;
    height: 55px;
    display: block;
}
.debt-intro-block h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--Color-Dark);
    line-height: 140%;
    margin-top: 10px;
}
input[type=text], input[type=email], input[type=number], label.password input[type=password] {
    padding: 8px 20px;
    width: 100%;
    border: unset;
    font-size: 16px;
    font-family: var(--Font-Inter);
    font-weight: 400;
    line-height: 220%;
    color: var(--Color-Dark);
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=number]::placeholder, label.password input[type=password]::placeholder {
    color: #515151;
}
#creditor-form-intro-btn {
    margin-top: 60px;
}
.creditor-form-backgroundcheck {
    background-color: var(--Color-Background);
    margin-top: 140px;
    position: relative;
}
.creditor-form-backgroundcheck-inner {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.backgroundcheck-background {
    width: 100vw;
    height: 100%;
    left: min(calc((1200px - 100vw) / 2), -20px);
    position: absolute;
    top: 0;
    background-color: #000924;
    z-index: -1;
}
.creditor-form-backgroundcheck h2,
.creditor-form-backgroundcheck span,
.creditor-form-backgroundcheck p {
    color: var(--Color-White);
}
.creditor-form-backgroundcheck h2 {
    text-align: center;
    margin-bottom: 40px;
}
img.calendar {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.creditor-form-submit .loader {
    margin-top: 60px;
}
.creditor-form-submit {
    margin-left: auto;
    margin-right: auto;
}
.license_container {
    font-size: 16px;
    text-align: center;
}
.license-choices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 20px;
}
.creditor-form-info input:read-only {
    cursor: not-allowed;
}
.license-choice-radio {
    opacity: 0;
    position: absolute;
}
.license-choice-radio:focus-visible + label {
    outline: 2px solid black;
    outline-offset: 2px;
}
.license-choice-radio:checked + label {
    background-color: var(--Color-Hover);
}
.license-choice-radio#license_1:checked + label {
    background-color: #E8F1FF;
}
.license-choice-radio#license_2:checked + label {
    background-color: #DBE9FF;
}
.license-choice-radio#license_3:checked + label {
    background-color: #C9DEFF;
}
.license-choice-radio:checked + label h3 {
}
.license-choice-label.btn {
    background-color: #ffffff;
    color: var(--Color-Dark);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    width: 220px;
    height: 330px;
    margin-top: 0;
    border: 2px solid var(--Color-Background);
}
.license-choice-label.btn:hover {
    background-color: var(--Color-Hover);
}
.license-choice-label.btn[for=license_1]:hover {
    background-color: #E8F1FF;
}
.license-choice-label.btn[for=license_2]:hover {
    background-color: #DBE9FF;
}
.license-choice-label.btn[for=license_3]:hover {
    background-color: #C9DEFF;
}
.license-choice-label.btn:hover h3 {
}
.license-choice-label h3 {
    margin-bottom: 0;
    color: var(--Color-Dark);
    font-size: 32px;
    font-weight: 600;
}
.license-text {
    display: block;
    font-size: 24px;
    font-weight: 400;
    font-family: var(--Font-Syne);
}
.license-price {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}
.license-spacing {
    margin-top: 60px;
    display: block;
}
.license-text-free {
    font-style: italic;
}
.license-text-left {
    font-size: 24px;
    margin-top: 10px;
    display: block;
}
.license-text-left-nr {
    font-weight: 700;
}
.license-text-empty {
    font-style: italic;
}
.creditor-form-submit .creditor-form-submit-btn {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.creditor-form-submit .creditor-form-submit-btn .wpcf7-list-item {
    margin: 0;
}
.creditor-form-submit .creditor-form-submit-btn p {
    margin: 0;
}
.creditor-form-submit .wpcf7-spinner {
    display: none;
}
.creditor-form-dateblock {
    background-color: #ffffff;
    margin-top: 140px;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
    width: 100%;
}
.creditor-form-dateblock h2 {
    color: var(--Color-Dark);
    font-size: 50px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 60px;
    text-align: center;
}
.creditor-form-dateblock input[type=text] {
    border: 1px solid var(--Color-Dark);
}
.creditor-form-dateblock input[type=submit] {
    padding: 12px 20px;
    font-size: 16px;
}
.creditor-form-intro .wpcf7cf_group p {
    margin: 0;
}
.creditor-form-dateblock p {
    margin-bottom: 0;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.creditor-date-label {
    max-width: 310px;
    margin: 0 auto;
    display: block;
}
#last_bid_used {
    font-size: 26px;
    font-weight: 700;
    color: var(--Color-Dark);
    line-height: 1.3;
    margin-bottom: 20px;
    width: 100%;
}

#form-autocomplete-block {
    position: absolute;
    width: 100%;
    /*top: calc(100% + 5px);*/
    top: 27px;
    box-sizing: border-box;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #515151;
    box-shadow: 0 0 20px -10px var(--Color-Dark);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}
#form-autocomplete-block.hide {
    display: none;
}
#form-autocomplete-block button {
    width: 100%;
    line-height: 21.5px !important;
    font-family: var(--Font-Inter);
    font-size: 16px;
    font-weight: 400;
    color: var(--Color-Dark);
    border: unset;
    background-color: #E8F1FF;
    transition: all 0.5s ease;
    height: unset;
    text-align: left;
    padding: 3px 0 3px 9px;
    cursor: pointer;
}
#form-autocomplete-block button:hover {
    color: var(--Color-Texts);
    background-color: var(--Color-Dark);
}
#form-autocomplete-block button:focus-visible {
    color: var(--Color-Texts);
    background-color: var(--Color-Dark);
}
.form-submit {
    cursor: pointer;
}
.form-submitted {
    padding: 40px 20px;
    background-color: #E8F1FF;
    color: var(--Color-Background);
    margin-top: 40px;
    font-size: 20px;
}
img.send {
    width: 30px;
    display: block;
    margin-right: 10px;
}
.form-submitted p {
    color: var(--Color-Background);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.daterangepicker .drp-buttons .btn {
    margin-top: 0;
}
.debt-amount-label .wpcf7-not-valid-tip {
    font-size: 16px;
}
div[data-id=intro-filled] {
    margin: 0 auto;
    width: 100%;
}
div[data-id=intro-filled] p {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.negotiation-intro {
    color: var(--Color-Dark);
    background-color: #DBE9FF;
    padding: 40px 20px 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
    text-align: center;
}
.negotiation-intro .negotiation-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.negotiation-content {
    max-width: 1000px;
    margin: 0 auto;
}
.negotiation-proposal {
    background-color: #E8F1FF;
    color: var(--Color-Texts);
    padding: 30px 20px 40px;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    text-align: center;
    position: relative;
}
.negotiation-proposal h2 {
    color: var(--Color-Texts);
}
.negotiation-intro .btn {
    width: fit-content;
}
.negotiation-intro .btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.timer, .timerReady {
    margin-top: 10px;
}
.timer text,
.timerReady text {
    fill: var(--Color-Dark);
}
.timer text tspan,
.timerReady text tspan {
    fill: var(--Color-Hover);
}
  
.timer > svg,
.timerReady > svg {
    width: 200px;
    height: 200px;
}

.timer > svg > circle,
.timerReady > svg > circle {
    fill: none;
    stroke: var(--Color-White);
    stroke-width: 10;
    transform-origin: center center;
    transform: rotate(-90deg);
}

.timer > svg > circle + circle,
.timerReady > svg > circle + circle {
    stroke: var(--Color-Hover);
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    stroke-linecap: butt;
    stroke-opacity: 1;
}

.timer.animatable > svg > circle + circle,
.timerReady.animatable > svg > circle + circle {
    transition: stroke-dashoffset 0.3s ease;
}

.timer > svg > text,
.timerReady > svg > text {
    font-size: 50px;
}
.timerReady > svg > text {
    fill: var(--Color-Background);
}

.timer > svg > text + text,
.timerReady > svg > text + text {
    font-size: 20px;
    font-weight: 700;
}
.negotiation-proposal .timer,
.negotiation-proposal .timerReady {
    margin-left: auto;
    margin-right: auto;
}
.timerReady {
    opacity: 0;
    transition: all 1.25s ease;
}
.timerReady.fadein {
    opacity: 1;
}
#timeLeft, #timeLeftReady {
    font-weight: 600;
}
.proposal_amount-div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    margin: 40px auto 0;
    width: 100%;
    font-size: 40px;
    line-height: 60px;
    font-weight: 500;
}
.proposal_amount-div.sent {
    gap: 0;
    margin: 40px auto 20px;
}
.proposal_amount-sent_alt {
    width: 100%;
    color: var(--Color-Dark);
    margin: 10px 0 0;
    font-size: 20px;
    font-weight: 700;
}
.proposal_amount-div input {
    font-size: 26px;
    text-align: center;
    height: 60px;
    font-weight: 700;
    padding-left: 32px;
    max-width: 310px;
}
.proposal_amount-div span {
    line-height: 65px;
    font-size: 40px;
    font-weight: 500;
}
.negotiation-proposal p {
    font-size: 20px;
}
.negotiation-proposal .btn {
    width: fit-content;
    margin: 30px auto 0;
    padding: 17px 38px;
}
.div-form-inline {
    display: inline;
    font-size: 22px;
}
input.debt-amount {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}
.negotiation-popup {
    position: absolute;
    width: 100%;
    top: 0;
    background-color: #E8F1FF;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.negotiation-popup.orange {
    background-color: #ffebe3;
}
.negotiation-popup h2 {
    color: var(--Color-Background);
}
.negotiation-logo {
    width: 77px;
    height: 70px;
    display: block;
    margin: 0 auto 30px;
}
.negotiation-logo.small {
    width: 50px;
    height: 50px;
}
.negotiation-sum {
    font-family: var(--Font-Syne);
}
.negotiation-sum-text {
    margin-bottom: 30px;
    font-size: 48px;
}
.negotiation-notification {
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.negotiation-ended {
    margin-bottom: 30px;
}
.negotiation-end-subtext {
    display: block;
    color: var(--Color-Background);
    font-size: 16px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.proposal_amount-sent {
    color: var(--Color-Dark);
    width: 100%;
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 700;
}
.proposal_amount-sent strong {
    font-weight: 700;
    white-space: nowrap;
}
button#offer-proposal:disabled {
    opacity: 0.7;
    background: var(--Color-Background-Light);
    color: var(--Color-Background);
    cursor: not-allowed;
}
.proposal_amount-input {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}
.proposal_amount-input::after {
    content: "€";
    position: absolute;
    right: 20px;
    color: var(--Color-Dark);
    transition: all .5s ease-in-out;
    font-size: 26px;
    pointer-events: none;
}
.proposal_amount-input:hover::after,
.proposal_amount-input:focus-within::after {
    right: 40px;
}

/* handle Firefox (arrows always shown) */
@supports (-moz-appearance:none) {
    .proposal_amount-input::after {
        right: 40px;
    }
}
button:focus-within {
    outline: 2px solid black;
    outline-offset: 2px;
}
div.wpcf7 form.invalid .wpcf7-response-output, 
div.wpcf7 form.unaccepted .wpcf7-response-output, 
div.wpcf7 form.payment-required .wpcf7-response-output {
    padding: 40px 20px;
    background-color: #cc000040;
    color: var(--Color-Background);
    margin-top: 40px;
    font-size: 20px;
    border: unset;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    position: relative;
}
.negotiation-failed-cross {
    display: block;
    margin: 0 auto 30px;
    width: 50px;
    height: 50px;
    position: relative;
}
.negotiation-failed-cross:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #cc0000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.negotiation-failed-cross:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #cc0000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}
.negotiation-failed h2 {
    font-size: 48px;
    margin-bottom: 30px;
}
.negotiation-failed h3 {
    font-size: 20px;
    font-weight: 700;
}
/*
.negotiation-new-round {
    margin-top: 60px;
}
*/
.negotiation-new-round h2 {
    margin-bottom: 54px;
}
.negotiation-new-round h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}
.negotiation-new-round-extra h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}
.negotiation-new-round-extra h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}
.ready-text h2 {
    font-size: 48px;
    margin: 0px 0px 50px;
}
.loader {
    border: 10px solid var(--Color-Background-Light);
    border-radius: 50%;
    border-top: 10px solid var(--Color-Hover);
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}
.debt-background-info .loader {
    grid-column: 1 / 3;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.analysis-table td, .analysis-table th {
    text-align: start;
}
.analysis-table {
    border-collapse: separate;
    border-spacing: 0 10px;
    font-size: 20px;
    width: 100%;
}
.debt-background-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.debt-background-info h3 {
    color: #C9DEFF;
}
.analysis-circle > svg > circle {
    fill: none;
    stroke: var(--Color-Hover);
    stroke-width: 20px;
    transform-origin: center center;
    transform: unset;
    stroke-opacity: 1;
}
.analysis-circle > svg > circle + circle {
    stroke-opacity: 1;
    stroke-dasharray: 1;
    stroke-linecap: butt;
    stroke-width: 20px;
}
.analysis-circle > svg > text {
    font-size: 40px;
}
.analysis-circle text {
    fill: var(--Color-Texts);
}
#probability_percent {
    font-weight: 700;
    font-family: var(--Font-Syne);
    font-size: 50px;
    fill: var(--Color-White);
}
#probability_percent2 {
    font-weight: 700;
    font-family: var(--Font-Inter);
    font-size: 20px;
}
.analysis-circle > svg {
    width: 250px;
    height: 250px;
    overflow: unset;
}
.analysis-circle {
    margin-top: 12px;
    margin-bottom: 36px;
}
.analysis-circle.low > svg > circle {
    stroke: #3AC930;
}
.analysis-circle.medium > svg > circle {
    stroke: yellow;
}
.analysis-circle.high > svg > circle {
    stroke: red;
}
.analysis-circle.low text {
    fill: #3AC930;
}
.analysis-circle.medium text {
    fill: yellow;
}
.analysis-circle.high text {
    fill: red;
}
.analysis-circle circle.circle2 {
    transform: scaleX(1) rotate(-90deg);
}
.analysis-circle circle.circle1 {
    stroke: var(--Color-White) !important;
}
.analysis-result h3 {
    color: var(--Color-Texts);
}
.analysis-result span, .analysis-result li {
    font-size: 20px;
}
.result-color {
    width: 20px;
    height: 20px;
}
.result-color.low {
    background-color: green;
}
.result-color.medium {
    background-color: yellow;
}
.result-color.high {
    background-color: red;
}
.result-meaning {
    display: flex;
    gap: 20px;
    align-items: center;
}
.result-reasonings {
    font-size: 20px;
}
#refresh_result {
    border-radius: 50%;
    padding: 2px;
    width: 28px;
    height: 28px;
    margin-top: 0px;
    margin-left: 0px;
    position: absolute;
    top: 20px;
    right: 20px;
}
#refresh_result:hover {
    background-color: var(--Color-Hover);
}
#refresh_result img {
    width: 100%;
}
#refresh_result:hover img {
    animation: rotate-btn 2s linear infinite;
    -webkit-animation: rotate-btn 2s linear infinite;
}
@keyframes rotate-btn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.negotiation-extra-h2 {
    font-size: 36px;
    margin-bottom: 60px;
}
.negotiation-extra-h3 {
    font-size: 16px;
    font-family: var(--Font-Inter);
    font-weight: 400;
    margin-bottom: 0px;
}
.negotiation-extra-h4 {
    width: 100%;
    margin-top: 80px;
    font-size: 20px;
    font-weight: 700;
}
.analysis-table th {
    padding-right: 10px;
    width: 50%;
}
.analysis-table td {
    padding-left: 10px;
    width: 50%;
    font-weight: 500;
}

.page .daterangepicker .drp-calendar {
    background-color: var(--Color-Background);
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    max-width: calc(100vw - 80px);
}
.page .daterangepicker .calendar-table {
    background-color: var(--Color-Background);
}
.page .daterangepicker {
    border-color: var(--Color-Hover);
    border-radius: 12px;
    background-color: var(--Color-Background);
    margin-top: 10px;
    border-width: 2px;
    width: auto;
}
.page .daterangepicker:before {
    border-bottom: 10px solid var(--Color-Hover);
    top: -10px;
}
.page .daterangepicker:after {
    border-bottom: 6px solid var(--Color-Hover);
}
.page .daterangepicker .drp-buttons {
    background-color: var(--Color-Background);
    border-top: 1px solid var(--Color-Hover);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.page .daterangepicker td {
    color: var(--Color-Texts);
}
.page .daterangepicker .calendar-table th {
    color: var(--Color-Texts);
    font-weight: 500;
    font-size: 14px;
}
.page .daterangepicker .calendar-table th, 
.page .daterangepicker .calendar-table td {
    width: 64px;
}
.page .daterangepicker .calendar-table th.month {
    font-size: 18px;
}
.page .daterangepicker .calendar-table .next span, 
.page .daterangepicker .calendar-table .prev span {
    border: solid var(--Color-Texts);
    border-width: 0 2px 2px 0;
}
.page .daterangepicker .calendar-table .next, 
.page .daterangepicker .calendar-table .prev {
    padding-top: 1px;
}
.page .daterangepicker .calendar-table .next:hover span, 
.page .daterangepicker .calendar-table .prev:hover span {
    border: solid var(--Color-Background);
    border-width: 0 2px 2px 0;
}
.page .daterangepicker td.off {
    background-color: var(--Color-Background);
}
.page .daterangepicker .drp-buttons .btn {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 8px 22px;
}
.page .daterangepicker .drp-buttons .btn.cancelBtn {
    font-weight: 400;
}
.page .daterangepicker .drp-buttons .btn.applyBtn {
    margin-left: 16px;
}
.page .daterangepicker select.hourselect, 
.page .daterangepicker select.minuteselect, 
.page .daterangepicker select.secondselect, 
.page .daterangepicker select.ampmselect {
    font-family: 'Open Sans';
    width: 64px;
}
.page .daterangepicker.show-calendar .drp-buttons {
    display: flex;
    justify-content: center;
}
.page .daterangepicker .calendar-time {
    color: var(--Color-Texts);
    margin-right: 6px;
}
.page .daterangepicker td.active, 
.page .daterangepicker td.active:hover {
    background-color: var(--Color-Hover);
    color: var(--Color-Texts) !important;
}
.page .daterangepicker td.available:hover, 
.page .daterangepicker th.available:hover {
    color: var(--Color-Background);
}
.analysis-data {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.analysis-general-table, .analysis-finance-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.analysis-data h3 {
    color: var(--Color-Texts);
    margin-bottom: 0;
    font-weight: 600;
}
.analysis-data h3.sub {
    margin-top: 10px;
}
.risk-analysis-heading {
    margin-bottom: 20px;
}
.result-reasonings ul {
    margin-top: 10px;
}
.result-reasonings h3 {
    margin-top: 30px;
}
.analysis-result {
    display: flex;
    flex-direction: column;
}
.nowrap {
    white-space: nowrap;
}
.form-confirmation-question .wpcf7-list-item label {
    display: block;
}
.negotiation-progress {
    background-color: #E8F1FF;
    margin-top: 1px;
    padding: 40px 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.negotiation-progress h3 {
    color: var(--Color-Dark);
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
}
.progress-bars {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 17px;
}
.progress-bars .round-nr.round-1 {
    z-index: 4;
}
.progress-bars .round-nr.round-2 {
    z-index: 3;
}
.progress-bars .round-nr.round-3 {
    z-index: 2;
}
.progress-bars .round-nr.round-4 {
    z-index: 1;
}
.progress-bars .round-nr {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.progress-bars .round-nr:first-child:before {
    display: none;
}
.progress-bars .round-nr::before {
    content: "";
    width: 32px;
    height: 3px;
    background-color: var(--Color-Dark);
    position: absolute;
    top: 50%;
    right: 23px;
    z-index: -1;
    transform: translateY(-50%);
}
.progress-bars .round-nr::after {
    content: "";
    width: 16px;
    height: 16px;
    background-color: var(--Color-Dark);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.progress-bars .round-nr.filled {
    background-color: var(--Color-White);
    border: 3px solid var(--Color-Dark);
}
.progress-bars .round-nr.filled::before {
    width: 24px;
    right: 24px;
}
.progress-bars .round-nr.filled::after {
    background-color: var(--Color-Hover);
}
.progress-bars .round-nr.filled.done {
    background-color: var(--Color-Dark);
}
.progress-bars .round-nr.filled.done::after {
    background-color: transparent;
    border-radius: 0;
    width: 12px;
    height: 6px;
    top: 45%;
    transform: translate(-50%, -50%) rotate(135deg);
    border-top: 2px solid var(--Color-White);
    border-right: 2px solid var(--Color-White);
}
/*
.progress-bars .round-nr.round-4 {
    border-color: var(--Color-Accent);
}
.progress-bars .round-nr.round-4.filled {
    background-color: var(--Color-Accent);
}
*/
.progress-round {
    font-family: var(--Font-Syne);
}
.btn.form-submit {
    margin-top: 50px;
    border-radius: 12px;
}
label.password {
    position: relative;
}
label.password button {
    position: absolute;
    top: 3px;
    right: 20px;
    cursor: pointer;
    background-color: transparent;
    border: unset;
    width: 16px;
    height: 16px;
    padding: 0;
}
#creditor-form-intro-btn:disabled {
    cursor: not-allowed;
}
.password-hint {
    font-size: 14px;
}
.wpcf7-acceptance label {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
input.negotiation-rules {
    min-height: 20px;
    min-width: 20px;
    margin-right: 10px;
    position: relative;
}
.wpcf7-acceptance .wpcf7-list-item-label {
    text-align: left;
}
input.negotiation-rules:checked::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--Color-Hover);
}
input.negotiation-rules:checked::after {
    content: "";
    position: absolute;
    width: 30%;
    height: 60%;
    border-bottom: 2px solid var(--Color-White);
    border-right: 2px solid var(--Color-White);
    left: 50%;
    top: 38%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.creditor-password-link {
    border: unset;
    background-color: unset;
    font-weight: 500;
    color: var(--Color-Background);
    text-decoration: none;
    transition: 0.5s;
    font-size: 16px;
    padding: 0;
    cursor: pointer;
    display: flex;
    gap: 7px;
    align-items: center;
}
.creditor-password-link:focus-visible {
    outline: 2px solid black;
    border-radius: 4px;
}
.recover-key {
    width: 20px;
    height: 20px;
    transform: rotate(135deg) scale(1, -1);
}
.creditor-password-link br {
    display: none;
}
.creditor-password-link:hover {
    color: var(--Color-Hover);
}
.negotiation-close-sum {
    color: red;
    font-weight: 500;
    font-size: 16px;
    margin-top: -44px;
    margin-bottom: 20px;
    display: block;
}
.negotiation-close-sum.hide {
    display: none;
}
.license-pay {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pay-error {
    margin-top: 20px;
    color: red;
    font-weight: 500;
}
.license-paid {
    border: 2px solid #46b450;
    border-radius: 12px;
    padding: 30px 20px;
    background-color: #46b45040;
    color: var(--Color-Background);
    margin-top: 40px;
    font-size: 20px;
    margin-bottom: 10px;
}
.license-not-paid {
    border: 2px solid #ea1f1f;
    border-radius: 12px;
    padding: 30px 20px;
    background-color: #ea1f1f40;
    color: var(--Color-Background);
    margin-top: 40px;
    font-size: 20px;
    margin-bottom: 10px;
}
.thankyou-text {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    margin-top: 40px;
    margin-left: 22px;
}
.thankyou-success {
    font-weight: 500;
    margin-bottom: 20px;
}
.thankyou-text strong {
    font-weight: 600;
}
.wpcf7-list-item-label.payment-error {
    font-weight: 600;
    color: red;
}
.wpcf7-list-item-label.payment-error a {
    color: red;
}
input[type=text].payment-error,
input[type=email].payment-error {
    border-color: red !important;
}
#pay-for-license:disabled {
    cursor: not-allowed;
}
.table-proscons {
    background: var(--Color-Background);
    color: var(--Color-Texts);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 20px;
}
.table-proscons table {
    width: 100%;
}
.table-proscons tr > td, 
.table-proscons tr > th {
    padding: 10px 5px;
    border-bottom: 1px solid #e0e6ed40;
    vertical-align: middle;
    text-align: center;
}
.table-proscons th {
    font-weight: 600;
}
.table-proscons tr > th:first-child {
    text-align: left;
}
.table-proscons td {
    font-size: 16px;
    font-weight: 400;
}
.table-proscons tr:last-child > th, 
.table-proscons tr:last-child > td {
    border-bottom: unset;
}
.debt-form-amount .field-hidden {
    margin-top: -20px;
}
.footer-logo-img {
    display: block;
    height: 60px;
}
.footer-logo {
    margin-bottom: 40px;
}
.home-content3 ul {
    margin-left: 72px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.home-content3 li {
    font-size: 20px;
    position: relative;
    line-height: 160%;
    font-weight: 700;
}
.home-content3 li::marker {
    color: transparent;
}
.home-content3 li::before {
    content: "";
    width: 52px;
    height: 52px;
    background: #2579FF;
    display: block;
    position: absolute;
    right: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.home-content3 li::after {
    content: "";
    position: absolute;
    display: block;
    right: calc(100% + 31px);
    top: 50%;
    transform: translateY(-60%) rotate(-45deg);
    width: 26px;
    height: 15px;
    border-bottom: 3px solid var(--Color-White);
    border-left: 3px solid var(--Color-White);
}
.wave.blue {
    opacity: 0.4;
}
.wave.top.reverse {
    top: unset;
    bottom: 0px;
    transform: rotateY(0deg) rotateX(0deg);
}
.th-image {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -5px;
}
.th-image img {
    width: 40px;
    height: 30px;
    object-fit: contain;
}
.wpcf7-not-valid-tip {
    padding: 5px 20px;
}
footer img.wave {
    margin-top: -1px;
}
.form-confirmation-question h2 {
    text-align: center;
}
.form-confirmation-question span[data-name="debt-agree"] {
    display: block !important;
}
.negotiation-block h2, .negotiation-intro h2 {
    font-family: var(--Font-Syne);
    font-size: 26px;
    font-weight: 700;
    color: var(--Color-Dark);
}
.negotiation-intro span {
    font-size: 16px;
    font-weight: 400;
}
.negotiation-intro button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
    padding: 17px 38px;
}
.btn.thankyou-return {
    margin-top: 60px;
    display: block;
    width: fit-content;
}
.how-blocks.how_shortcode {
    margin-bottom: 60px;
}
.hide-tip .wpcf7-not-valid-tip {
    display: none;
}

@media screen and (max-width: 1100px) {
    .home-content2 .content-left, .home-content2 .content-right {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .creditor-form-backgroundcheck {
        margin-top: 40px;
    }
    .creditor-form-dateblock {
        margin-top: 40px;
    }
    .wave { 
        object-fit: cover;
        object-position: top;
        height: auto;
    }
}
@media screen and (max-width: 940px) {
    .creditor-form-intro {
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        flex-direction: column;
    }
    .creditor-form-intro .debt-intro-block {
        max-width: 510px;
        padding: 20px;
    }
    .creditor-form-backgroundcheck-inner {
        padding: 50px 0px;
    }
}

@media screen and (max-width: 800px) {
    .debt-background-info {
        grid-template-columns: 1fr;
    }
    div[data-id=intro-filled] {
        grid-column: 1;
    }
    .analysis-result {
        align-items: center;
        justify-content: unset;
    }
    .footer {
        background-size: 200% 100%;
    }
    .home-content3 ul {
        margin-left: 51px;
        gap: 10px;
    }
    .home-content3 li {
        font-size: 16px;
    }
    .home-content3 li::before {
        width: 30px;
        height: 30px;
    }
    .home-content3 li::after {
        right: calc(100% + 26px);
        top: 50%;
        transform: translateY(-70%) rotate(-45deg);
        width: 16px;
        height: 8px;
    }
    .content-left img, .content-right img {
        object-fit: contain;
        max-height: 300px;
        max-width: unset;
    }
    .footer-contact {
        margin-left: unset;
    }
    .home-content3 h2, .home-content2 h2, .home-content1 h2 {
        font-size: 36px;
    }
    .how-section h2 {
        font-size: 42px;
    }
    .cta-section h2 {
        font-size: 42px;
    }
    .creditor-form-dateblock h2 {
        font-size: 42px;
    }
    .form-confirmation-block h2 {
        font-size: 40px;
    }
    .license-choices {
        flex-direction: column;
    }
    .license-choice-label.btn {
        height: 165px;
    }
    .form-confirmation-question h2 {
        font-size: 40px;
    }
    .proposal_amount-div input {
        padding-left: 20px;
    }
}

@media screen and (max-width: 600px) {
    .th-image img {
        display: none;
    }
    .th-image {
        font-size: 14px;
    }
    .table-proscons th {
        font-size: 14px;
    }
    .table-proscons td {
        font-size: 14px;
    }
    .table-proscons {
        padding: 10px;
    }
}
@media screen and (max-width: 500px) {
    .analysis-table {
        font-size: 16px;
    }
    .page .daterangepicker .drp-buttons .btn {
        font-size: 14px;
    }
    .creditor-form-backgroundcheck h3 {
        font-size: 20px;
    }
    .negotiation-proposal .btn {
        padding: 17px 38px;
        font-size: 18px;
    }
    .license-price {
        line-height: 1;
        font-size: 44px;
    }
    .license-choice-label h3 {
        line-height: 1;
    }
    .license-text {
        line-height: 1;
    }
    .btn.form-submit {
        padding: 24px 40px;
        font-size: 20px;
    }
    .home-content3 h2, .home-content2 h2, .home-content1 h2 {
        font-size: 32px;
    }
    .how-section h2 {
        font-size: 32px;
    }
    .cta-section h2 {
        font-size: 34px;
    }
    .how-top-text {
        font-size: 22px;
    }
    .creditor-form-dateblock h2 {
        font-size: 32px;
    }
    .form-confirmation-block h2 {
        font-size: 32px;
    }
    .form-confirmation-question h2 {
        font-size: 32px;
    }
    .negotiation-block h2.negotiation-extra-h2 {
        font-size: 22px;
        font-weight: 600;
    }
    .home-content1 .content-right, .home-content3 .content-right {
        display: none;
    }
    .home-content1 {
        padding-bottom: 10px;
    }
    .home-content2 {
        padding-bottom: 30px;
    }
}
