:root {
    --primary-green: #6ba743;
    --primary-blue: #0099cc;
    --white: #ffffff;
    --black: #292b2e;
    --gray: #b4b4b4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    background-color: var(--primary-green);
}

.container-fluid{
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 40px !important;
}

.container--xxl{
    max-width: 1920px;
    margin: 0 auto;
}
.wrapper{
    padding: 0 22px;
}
h1, h2, h3, h4, h5, h6, p{
    color: var(--white);
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 900;
}
p{
    font-weight: 400;
}
h1{
    font-size: 20px;
    margin-bottom: 15px;
}
h2{
    font-size: 20px;
    margin-bottom: 10px;
}
p{
    font-size: 16px;
    font-weight: 400;
}
a:hover{
    text-decoration: none;
}
.cta{
    display: inline-block;
}
.cta-button{
    background-color: var(--primary-blue);
    display: inline-block;
    border-radius: 4px;
    padding: 17px 44px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    animation: btn-pulse 1s ease-in-out infinite;
}

@keyframes btn-pulse{
    from {
        transform: scale(1.0);
    }
    to{
        transform: scale(1.05);
    }
}

.cta-button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    animation: none;
}
.cta-button span{
    font-size: 1.18rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
}
.more-info-btn span{
    font-family: 'Open-Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;

}
.more-info-btn{
    padding: 12px 21px;
    font-size: 14px;
    font-weight: 900;
    color: var(--white);
    border-radius: 1px;
    border: solid 1px var(--white);
    margin-top: 22px;
    margin-bottom: 30px;
    transition: 0.3s;
    text-align: center;
}

.more-info-btn:hover{
    color: var(--primary-blue);
    background-color: var(--white);
    cursor: pointer;
}

.img-fluid{
    max-width: 100%;
     height: auto;
}

/* nav */
.nav-wrapper .container-fluid{
    padding-bottom: 0 !important;
}
.nav-wrapper{
    overflow: hidden;
    background-color: var(--white);
}
.nav-list-items {
    width: 100%;
    position: absolute;
    left: 0;
    overflow-y: auto;
    background-color: #fff;
    top: 90px;
    height: 0;
    overflow-y: auto;
}
.increase-nav-height {
    height: auto !important;
    opacity: 1;
    visibility: visible;
    z-index: 100;
}
.nav-list-items ul {
    padding: 6px 24px 0px 33px;
    font-size: 20px;
}
.nav-list-items ul a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    color: #8e8e8e;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: center;
}
.nav-list-items ul a img {
    margin-right: 5px;
}
.nav-list-items ul li {
    line-height: 38px;
    border-bottom: 1px solid #f5f5f5;
    list-style: none;
}
.nav-section-1 {
    padding: 30px 0;
}
.logo-wrapper {
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-direction: row;
}
.hamburger {
    display: flex;
    height: 30px;
    width: 22px;
    background-color: #fff;
    z-index: 9999;
    position: relative;
    left: 14px;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #515151;
    transition: 0.3s;
}
.hamburger span::before {
    display: block;
    height: 2px;
    width: 100%;
    content: '';
    background-color: #515151;
    top: 5px;
    position: absolute;
    transition: 0.3s;
}
.hamburger span::after {
    display: block;
    height: 2px;
    width: 100%;
    content: '';
    background-color: #515151;
    bottom: 5px;
    position: absolute;
    transition: 0.3s;
}

.animate-hamburger::before {
    transform: rotate(45deg);
    top: 14px !important;
}
.animate-hamburger::after {
    transform: rotate(-45deg);
    top: 14px;
}
.navbar-buttons {
    display: inline;
}
.navsec-1-items, .nav-section-2 {
    display: none;
}
.button-mobile img {
    margin-right: 20px;
}

/* intro section */
.intro-section{
    background-color: var(--primary-green);
}
.intro-content .textbox-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intro-section .intro-img{
    position: relative;
}
.intro-section .intro-img .intro-main-img {
    width: 100%;
    object-fit: cover;
    position: relative;
}
.intro-section .intro-xl-hid-element-2{
    display: none;
}



@keyframes fadeInRight {
    0% {
       opacity: 0;
       transform: translateX(50px);
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
       opacity: 0;
    }
    100% {
       opacity: 1;
    }
}


.intro-section .intro-vec-1 {
    transform: rotate(110deg) ;
    position: absolute;
    left: -16px;
    bottom: 2%;
    height: 20%;
    animation: fadeIn 0.7s ease-in-out 0.3s;
}




/* section daikin-infobox */

.daikin-infobox .container::after,
.daikin-infobox .container::before,
.daikin-infobox .row::after,
.daikin-infobox .row::before {
	content: " ";
	display: table;
}
.daikin-infobox .container::after,
.daikin-infobox .row::after {
	clear: both;
}
.daikin-infobox .row {
	display: block;
}
.daikin-infobox {
	background: var(--primary-green);
	overflow: hidden;
}
.daikin-infobox .picture {
	width: 48%;
	float: left;
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
.daikin-infobox .img-responsive{
	height: 491px;
}
.daikin-infobox .picture{
    position: relative;
}
.daikin-infobox .infobox-vec {
    position: absolute;
    transform: rotate(80deg);
    left: 35px;
    bottom: 12px;
    height: 12%;
}
.daikin-infobox .textbox-wrapper {
	width: 100%;
}


/*  section daikin-support*/

.daikin-support{
    background-color: var(--primary-green);
}
.daikin-support .container{
    padding: 0;
}
.daikin-support .textbox-wrapper{
    padding-top: 30px;
}

/* more info */
.position-relative{
    position: relative !important;
}
.more-info{
    background-color: var(--primary-blue);
    padding-top: 26px;
}
.more-info .more-info-title{
    font-size: 21px;
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

/* footer */
.footer{
    background-color: var(--black);
}
.footer-lower-urls{
    padding-top: 30px;
    text-align: center;
}
.footer-lower-urls span{
    font-family: 'Open sans', sans-serif;
    text-align: center;
    font-size: 11px;
    color: var(--gray);
}
.copy-right-span {
    font-weight: 700;
    color: var(--white) !important;
    padding: 0 15px;
}
.footer-link-items{
    text-align: center;
    display: block;
}
.footer-link-items a{
    padding: 0 8px;
}
.footer-link-items a:hover{
    text-decoration: none;
    cursor: pointer;
}
.footer-lower-social {
    display: flex;
    justify-content: space-between;
}
.footer-lower-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
}
.row-footer{
    flex-direction: column;
    align-items: center;
}
span.hamburger-dash{
    width: 0;
}

@media screen and (max-width: 992px) {
	.daikin-infobox .picture {
		width: 100%;
		overflow: hidden;
        position: relative;
        padding-bottom: 30px;
	}
	.daikin-infobox .picture .img-responsive {
		height: auto;
	}
    .intro-section .daikin-intro-img{
        position: relative;
    }
    
    .intro-section .daikin-intro-img .daikin-img{
        width: 100%;
        object-fit: cover;
        position: relative;
    }
    .intro-section .intro-vec-2 {
        transform: rotate(50deg);
        position: absolute;
        height: 35%;
        bottom: -50%;
        left: 0;
    }


}
@media screen and (min-width: 500px) and (max-width: 768px){
    .intro-section .intro-vec-2 {
        height: 100px;
        bottom: -130px;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px){
    .intro-section .intro-vec-2 {
        height: 120px;
        bottom: -160px;
    }
}

/* tablet */

@media screen and (min-width: 576px) and (max-width: 992px){
    h1, h2{
        font-size: 28px;
    }
    p{
        font-size: 20px;
    }
    .intro-section .intro-xl-vis-element .intro-text{
        padding: 0;
    }
    .intro-section .intro-img img {
        margin-top: -5%;
        margin-bottom: -5%;
    }
    .intro-section .intro-vec-1 {
        bottom: 6%;
    }
    .daikin-infobox .infobox-vec {
        position: absolute;
        transform: rotate(80deg);
        left: 66px;
        bottom: 20px;
        height: 12%;
    }

}

@media screen and (min-width: 992px) {
    .container-fluid{
        padding-bottom: 0 !important;
    }
    h1{
        font-size: 44px;
    }
    h2{
        font-size: 38px;
        margin-bottom: 10px;
    }
    h3{
        font-size: 38px;
        font-weight: 400;
    }
    h4{
        font-size: 35px;
        font-weight: 900;
    }
    p{
        font-size: 24px !important;
        font-weight: 400;
    }
    .cta-button{
        background-color: var(--primary-blue);
        display: inline-block;
        border-radius: 4px;
        padding: 22px 55px;
        box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);

    }
    .cta-button span{
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
    }
    /* nav */
    .nav-wrapper {
        background-color: #fff;
        z-index: 9;
        position: relative;
    }
    .nav-wrapper .container {
        max-width: 1140 !important;
    }
    .nav-list-items {
        width: 100%;
        height: 0;
        opacity: 0;
        visibility: hidden;
    }
    .hamburger{
        display: none;
    }
    .navbar-buttons{
        display: none;
    }
    .nav-section-1 {
        padding: 27px 0;
    }
    .navsec-1-items{
        display: flex;
    }
    .nav-section-1 .navsec-1-items ul {
        display: flex;
        flex-grow: 1;
        justify-content: space-between;
        margin-bottom: 0;
    }
    .header-link-list {
        display: flex;
        align-items: center;
    }
    .header-link-list li {
        font-size: 12px;
        color: #9a9a9a;
        text-transform: uppercase;
        list-style: none;
    }
    .header-link-list-1 li {
        font-weight: normal;
    }
    .light-silver {
        background-color: #fafafa;
    }
    .nav-section-2 {
        padding: 16px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-section-2 .navsec-2-group-1 {
        flex-grow: 1;
    }
    .nav-section-2 .navsec-2-group-1 ul {
        display: flex;
        justify-content: center;
        flex-grow: 1;
        margin-bottom: 0;
    }
    .header-link-list {
        display: flex;
        align-items: center;
    }
    .nav-section-2 .navsec-2-group-1 ul li {
        padding: 0 15px;
    }
    .header-link-list li {
        font-family: "Open sans", sans-serif;
        font-size: 12px;
        color: #9a9a9a;
        text-transform: uppercase;
    }
    .header-link-list-2 li {
        font-family: "Open sans", sans-serif;
        font-weight: 600;
    }
    .nav-section-2 .navsec-2-group-2 ul {
        display: flex;
        margin-bottom: 0;
    }
    .dkn-btn {
        background-color: #e64a03;
        padding: 5px 10px;
        color: white;
    }
    .dkn-btn li {
        color: white !important;
        display: flex;
        align-items: center;
    }
    .dkn-btn li span {
        margin-left: 5px;
    }
    .nav-section-2 .navsec-2-group-2 ul li {
        padding: 0 15px;
    }

    /* intro section */
    .intro-content{
        padding-bottom: 240px;
    }
    .intro-section .intro-xl-hid-element{
        display: none;
    }
    .intro-section .intro-xl-hid-element-2{
        display: inline-block;
        margin-top: 150px;
    }
    .intro-section .intro-xl-vis-element .intro-text{
        padding-right: 40px;
        margin-bottom: 2rem;
    }
    
    .intro-2{
        padding-bottom: 40px;
    }
    

    /* daikin-infobox */
    .daikin-infobox .picture img {
		object-fit: cover;
	}
	.daikin-infobox .container {
		width: 1140px;
	}
    .daikin-infobox .textbox-wrapper {
        width: 50%;
        float: right;
        padding-top: 94px;
        padding-left: 60px !important;
    }
    .daikin-infobox .infobox-vec {
        position: absolute;
        transform: rotate(5deg);
        right: -60px;
        left: unset;
        top: 32%;
        height: 15%;
    }

    /*  section daikin-support*/
    .daikin-support .textbox-wrapper{
        margin: auto;
        padding: 70px;
    }
    .daikin-support .textbox-wrapper{
        text-align: center;
    }
    /* more info */
    .more-info{
        padding: 90px 0 37px;
    }
    /* footer */
    .row-footer{
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-link-items {
        display: inline-block;
    }
    .footer-lower-urls{
        padding: 15px 0;
    }

}

/* Desktop */
@media screen and (min-width: 992px) and (max-width: 1200px){
    .intro-content {
        padding-bottom: 190px;
    }
    .intro-section .daikin-intro-img .daikin-img {
        position: absolute;
        width: 135%;
        right: 0;
        top: 3rem;
    }
    .intro-section .intro-xl-hid-element-2 {
        margin-top: 11.25rem;
    }
    .intro-section .intro-img .intro-main-img {
        width: 130%;
        margin-left: -120px;
        margin-top: -7%;
        margin-bottom: -10%;
    }
    .intro-section .intro-vec-2 {
        position: absolute;
        height: 100px;
        bottom: -120px;
        left: 44%;
    }
    .intro-section .intro-xl-vis-element .intro-text {
        padding-right: 0;
    }
    
    .intro-section .intro-vec-1 {
        transform: rotate(0deg);
        position: absolute;
        left: 21.25rem;
        bottom: 2rem;
        height:6.25rem;
    }
    .daikin-support .textbox-wrapper{
        max-width: 936px;
    }
    .daikin-infobox .textbox-wrapper {
        padding-top: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .daikin-support .textbox-wrapper{
        padding: 107px 70px 90px;
    }
}
@media screen and (min-width: 1200px) {
    .daikin-infobox .picture img {
        height: auto;
    }
    .intro-section .intro-img .intro-main-img {
        width: 150%;
        margin-left: -10.5rem;
        margin-top: -7%;
        margin-bottom: -10%;
    }
    .intro-section .intro-vec-1 {
        transform: rotate(0deg);
        position: absolute;
        left: 29.25rem;
        bottom: 4.5rem;
        height: 8rem;
    }
    .intro-2{
        padding: 2.5rem 1rem 0 3.625rem;
    }
    .intro-section .daikin-intro-img .daikin-img {
        position: absolute;
        width: 150%;
        right: 0;
        top: 12.25rem;
    }
    .daikin-infobox .textbox-wrapper {
        padding-top: 120px;
    }
    .intro-section .intro-vec-2 {
        transform: rotate(5deg);
        position: absolute;
        height: 120px;
        bottom: -140px;
        left: 38%;
    }

}
@media screen and (min-width: 1920px) {
    .daikin-infobox .picture img {
        top: 40%;
    }
    .daikin-infobox .textbox-wrapper {
        padding-top: 196px;
    }
}


.multi-steps-configure-form *,
.guide-carousel-section * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.multi-steps-configure-form {
    height: 0px;
    max-height: 0px;

    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-blue);
    position: relative;
    overflow: hidden;
    transition: max-height 1s ease;
}

.multi-steps-configure-form.with-loader {
    background-color: #088ec4;
}

.multi-steps-configure-form.open {
    padding: 120px 40px 0 40px;
    height: 670px;
    max-height: 670px;
}

.multi-steps-configure-form-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    min-width: 100%;
}

.arrow-triangle {
    width: 80px;
    height: 80px;
    background-color: #6ca844;
    transform: translate(-50%, -50%) rotate(-135deg);
    position: absolute;
    left: 50%;
    top: 0;
}

.step-indicators {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 36px;
}

.step-indicator {
    width: 27px;
    height: 27px;
    padding: 9px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: border-color .2s linear;
}

.step-indicator > div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--white);
}

.step-indicator.active {
    border-color: var(--white);
}

.multi-steps-tab {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
}

.multi-steps-tab.full-height {
    flex: 1;
}

.multi-steps-tab h2 {
    font-size: 38.7px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.34;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
}

.multi-steps-tab > .options {
    display: flex;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 60px;
    margin-bottom: 32px;
    position: relative;
}

.multi-steps-tab > .options > .question-subtitle {
    width: 100%;
    position: absolute;
    left: 50%;
    top: -48px;
    transform: translateX(-50%);
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.34;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
}

.multi-steps-tab > .options .option {
    width: 183px;
    height: 214px;
    background-color: #004f77;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    outline: none;
    transition: border-color .07s linear;
}

.multi-steps-tab > .options .option.selected {
    border-color: var(--white);
}

.multi-steps-tab > .options .option__image {
    flex-basis: 68%;

    background-size: contain;
    background-repeat: no-repeat;
}

.multi-steps-tab > .options .option-0[data-index="0"] > .option__image {
    background-image: url('./src/assets/new-home.svg');
}
.multi-steps-tab > .options .option-0[data-index="1"] > .option__image {
    flex-shrink: 0;
    background-image: url('./src/assets/home-reconstruction.svg');
}
.multi-steps-tab > .options .option-1[data-index="0"] > .option__image {
    background-image: url('./src/assets/heating.svg');
}
.multi-steps-tab > .options .option-1[data-index="1"] > .option__image {
    background-image: url('./src/assets/cooling.svg');
}
.multi-steps-tab > .options .option-1[data-index="2"] > .option__image {
    background-image: url('./src/assets/hot-water.svg');
}
.multi-steps-tab > .options .option-2[data-index="0"] > .option__image {
    background-image: url('./src/assets/floor-heating.svg');
}
.multi-steps-tab > .options .option-2[data-index="1"] > .option__image {
    background-image: url('./src/assets/radiator.svg');
}
.multi-steps-tab > .options .option-2[data-index="2"] > .option__image {
    background-image: url('./src/assets/ventiloconvector.svg');
}
.multi-steps-tab > .options .option-2[data-index="3"] > .option__image {
    background-image: url('./src/assets/floor-radiator.svg');
}
.multi-steps-tab > .options .option-2[data-index="4"] > .option__image {
    background-image: url('./src/assets/floor-veniloconv.svg');
}
.multi-steps-tab > .options .option-2[data-index="5"] > .option__image {
    background-image: url('./src/assets/floor-multizone.svg');
}
.multi-steps-tab > .options .option-3[data-index="0"] > .option__image {
    background-image: url('./src/assets/single-phase.svg');
}
.multi-steps-tab > .options .option-3[data-index="1"] > .option__image {
    background-image: url('./src/assets/three-phase.svg');
}

.multi-steps-tab > .options .option__text {
    font-size: 15px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);

    flex: 1;
    padding: 4px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nextBtn {
    border: none;
    background-color: transparent;
    height: 40px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 28px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    transition: opacity .2s linear;
}

.nextBtn:focus,
.nextBtn:focus-visible {
    outline: none;
}

#prevBtn {
    position: absolute;
    top: -74px;
    left: 40px;
}

.nextBtn.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.number-input-container {
    margin-top: 44px;
    margin-bottom: 40px;
    width: 336px;
}

.number-input-container input::-webkit-outer-spin-button,
.number-input-container input::-webkit-inner-spin-button,
.number-input-container input[type=number] {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
}

.number-input-container .power-size-nr-input {
    width: 100%;
    border: none;
    border-bottom: 4px solid #fff;
    background-color: transparent;
    padding-left: 36px;
    font-size: 34.6px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    color: #f9f7f4;
}

.number-input-container .power-size-nr-input:focus-visible {
    outline: none;
}

.number-input-container > .nr-input-wrap {
    position: relative;
}
.number-input-container > .nr-input-wrap > span {
    position: absolute;
    right: 8px;
    bottom: 4px;
    font-size: 34.6px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    color: #f9f7f4;
}

.number-input-container > .nr-input-info {
    font-size: 23.2px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.34;
    letter-spacing: normal;
    text-align: center;
    color: #0f0500;
    margin-top: 10px;
}

.regions-map {
    width: 362px;
    height: 358px;
}

.regions-map .region {
    cursor: pointer;
    transition: fill .2s linear;
}

.regions-map .region.selected {
    fill: #6ca844 !important;
}

.regions-map .region:hover {
    fill: #b3f189;
}

.last-step-container,
.results-container {
    display: flex;
    flex: 1;
    padding: 15px 0 50px 0;
    margin: 0 auto;
    width: 1024px;
    max-width: 1024px;
}

.last-step-container > .left-top,
.last-step-container > .user-info-form-wrap,
.results-container > .results-graphic,
.results-container > .results-details-wrap {
    flex: 1 1 50%;
}

.last-step-container > .left-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 5px;
}

.last-step-container > .left-top > p {
    margin-top: 28px;
    font-size: 24.7px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.42;
    letter-spacing: normal;
    color: var(--white);
}

.last-step-container > .user-info-form-wrap,
.results-container > .results-details-wrap {
    padding-left: 90px;
}

.last-step-container .user-info-form {
    height: 100%;
    background-color: var(--white);
    padding: 20px 48px 6px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-info-form .user-info-form-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 21px;
}

.user-info-form-row > input[type="text"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #34303d;
    padding-bottom: 8px;
}

.user-info-form-row > input[type="text"],
.user-info-form-row > input[type="text"]::placeholder {
    font-size: 15.4px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
}

.user-info-form-row > input[type="text"]:focus-visible {
    outline: none;
}

.user-info-form-row > label {
    font-size: 11.8px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.45;
    letter-spacing: normal;
    color: #000;
}

.user-info-form-row > input[type="text"].invalid,
.user-info-form-row > input[type="text"].invalid::placeholder {
    color: #ff3939;
    border-color: #ff3939;
}

.user-info-form-row input[type="checkbox"].invalid {
    outline: 1px solid #ff3939;
    accent-color: #ff3939;
}

.user-info-form-row.invalid label,
.user-info-form-row.invalid label a {
    color: #ff3939;
}

.submit-form-row {
    margin-bottom: 44px;
    position: relative;
}

.submit-form-row > input[type="submit"] {
    width: 100%;
    height: 64px;
    font-size: 16px;
    color: var(--white);
    border-radius: 3px;
    border: none;
    background-color: var(--primary-blue);
    cursor: pointer;
}

.user-info-form .user-info-form-notification,
.submit-form-row > .user-info-form-error {
    font-size: 11.8px !important;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.45;
    letter-spacing: normal;
    color: #000;
}

.submit-form-row > .user-info-form-error {
    position: absolute;
    left: 0;
    bottom: -28px;
    color: #ff3939;
}

.multi-steps-tab > .loader-bg {
    width: 100%;
    flex: 1;
    background-image: url('./src/assets/ladders.gif');
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: 75% 100%;
}

.multi-steps-tab h2.results-heading {
    margin-bottom: 20px;
}

.results-container > .results-graphic {
    height: 100%;
    background-image: url('./src/assets/both-units.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.results-container .results-details {
    height: 100%;
    background-color: var(--white);
    padding: 12px 48px 4px 45px;
}

.results-details h4.daikin-altherma {
    font-size: 21.7px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.34;
    letter-spacing: normal;
    color: #004f77;
    margin-bottom: 6px;
}

.results-details .received-units {
    display: flex;
    /* flex-direction: column; */
    margin-bottom: 6px;
    font-size: 12.4px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.58;
    letter-spacing: normal;
    color: #000;
}

.results-details .received-units > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.results-details .received-units #results-inside-unit,
.results-details .received-units #results-outside-unit {
    font-size: 15px;
}

.results-details .brochure-link,
.results-details .pricelist-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;
    border-radius: 3px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 8px;
}

.results-details .brochure-link {
    background-color: #0099cc;
    color: var(--white);
}

.results-details .pricelist-link {
    border: 1px solid #0099cc;
    color: #000;
}

.results-details .pricelist-link.disabled {
    cursor: not-allowed;
    background-color: #77767a;
    opacity: 0.5;
}

.results-details .results-notification {
    font-size: 11.2px !important;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: normal;
    color: #000;
}

.results-details .results-notification.error {
    color: #ff3939;
}

.multi-steps-configure-form.received-results {
    padding: 110px 40px 0 40px;
}

.ty-notice {
    display: none;
    width: 842px;
    height: 450px;
    background-color: var(--white);
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ty-notice > h3 {
    font-size: 37.2px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.34;
    letter-spacing: normal;
    text-align: center;
    color: #004f77;
}

.ty-notice > h4 {
    font-size: 29.7px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.34;
    letter-spacing: normal;
    text-align: center;
    color: #004f77;
}

#close-ty-notice {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    background-image: url('./src/assets/close-black-24-dp.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#power-question-1,
#power-question-2 {
    flex-direction: column;
    align-items: center;
}

#power-question-1 {
    display: flex;
}

#power-question-2 {
    display: none;
}

#power-question-1 > h3 {
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.34;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    margin-bottom: 35px;
}

#answer-dont-know,
#answer-i-know {
    width: 360px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    cursor: pointer;
}

#answer-dont-know {
    background-color: var(--white);
    color: var(--primary-blue);
    margin-bottom: 24px;
}
#answer-i-know {
    color: var(--white);
    border: 1px solid #fff;
}

.guide-carousel-section {
    height: 765px;
    background-color: #eaf6e6;
    padding: 0 11px;
    padding-top: 120px;
    display: flex;
    justify-content: center;
}

.guide-carousel-section > .carousel-wrapper {
    max-width: 1366px;
}

.guide-carousel-section .carousel-slide {
    width: 705px;
    height: 471px;
    border-radius: 5px;
    background-color: var(--primary-green);
    transform: scale(0.9);
    transition: all 0.3s linear;
    display: flex;
    overflow: hidden;
    position: relative;
}

.guide-carousel-section .carousel-slide::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--white);
    opacity: 0.8;
}

.owl-item.center .carousel-slide {
    transform: none;
}

.owl-item.center .carousel-slide::after {
    display: none;
}

.guide-carousel-section .owl-dots {
    margin-top: 28px !important;
}

.guide-carousel-section .owl-dot > span {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50%;
    background-color: transparent !important;
    border: 1px solid var(--primary-green);
    transition: background-color 0.2s linear !important;
}

.guide-carousel-section .owl-dot.active > span,
.guide-carousel-section .owl-dot:hover > span {
    background-color: var(--primary-green) !important;
}

.guide-carousel-section .owl-dot:focus,
.guide-carousel-section .owl-dot:focus-visible {
    outline: none;
}

.guide-carousel-section .carousel-slide-text {
    flex: 1;
    padding: 70px 36px 0 34px;
}

.guide-carousel-section .carousel-slide-img {
    flex-basis: 300px;
    height: 100%;
    background-image: url('./src/assets/slide-bg@3x.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.carousel-slide-text .carousel-slide-heading {
    font-size: 34.8px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.48;
    letter-spacing: normal;
    color: var(--white);
    margin-bottom: 10px;
}

.carousel-slide-text .carousel-slide-paragraph {
    font-size: 20px !important;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: var(--white);
    max-width: 310px;
    margin-bottom: 26px;
}

.carousel-slide-text .carousel-slide-download-link {
    width: 320px;
    height: 70px;
    border-radius: 5px;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: var(--primary-blue);
    font-family: 'Open-Sans', sans-serif;
    font-size: 23.8px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.cookie-consent {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(250, 250, 250, 0.7);
    padding: 0px 15px;
    text-align: center;
    z-index: 999999999999999999999;
    display: flex;
    align-items: center;
}

.cookie-consent p {
    font-size: 16px !important;
    color: #000;
    display: inline-block;
    margin: 15px 0px;
    text-align: left;
    padding-right: 30px;
}

.cookie-consent a {
    color: black;
    font-weight: bold;
    text-decoration: underline;
}

.cookie-consent button {
    white-space: nowrap;
}

.cookie-consent-agree {
    background-color: #e98400;
    color: var(--white);
    margin: 15px 0px;
    padding: 6px 20px;
    border-radius: 4px;
    border: none;
    display: inline-block;
    margin-left: 15px;
}

.stand-by-link,
.stand-by-link:link,
.stand-by-link:active,
.stand-by-link:visited {
    color: var(--white);
    text-decoration: underline;
}

.question.loader-heading {
    max-width: 475px;
    position: absolute;
    top: 200px;
    left: 250px;
    text-align: left;
}

@media screen and (max-width: 1400px) {
    .guide-carousel-section > .carousel-wrapper {
        max-width: 1024px;
    }
}

@media screen and (max-width: 1224px) {
    .multi-steps-tab > .options .option {
        width: 110px;
        height: 130px;
    }

    .multi-steps-tab > .options .option-0[data-index="1"] {
        position: relative;
    }

    .multi-steps-tab > .options .option__text {
        font-size: 12px;
        padding: 4px 1px;
    }

    .multi-steps-tab > .options .option__text.nowrap {
        white-space: nowrap;
    }

    .multi-steps-tab > .options .option-0[data-index="1"] .option__text {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        font-size: 11px !important;
    }
}

@media screen and (max-width: 1024px) {
    .multi-steps-configure-form {
        height: 0;
        max-height: 0;

    }

    .multi-steps-configure-form.open {
        padding: 50px 8px 0 8px;
        height: 568px;
        max-height: 568px;
    }

    .multi-steps-configure-form-inner {
        padding-top: 50px;
    }

    .multi-steps-configure-form-inner.received-results {
        padding-top: 0;
    }

    .arrow-triangle {
        width: 39px;
        height: 39px;
    }

    .step-indicators {
        margin-bottom: 30px;
        margin-top: 15px;
    }

    .step-indicator {
        width: 13px;
        height: 13px;
        padding: 4px;
    }

    .multi-steps-tab h2 {
        font-size: 16px;
        line-height: 1.38;
        max-width: 240px;
    }

    .multi-steps-tab > .options {
        gap: 3px;
        margin-top: 48px;
        margin-bottom: 16px;
    }

    .multi-steps-tab > .options > .question-subtitle {
        font-size: 12px;
        top: -40px;
    }

    .nextBtn {
        height: 20px;
        font-size: 15px;
        padding-top: 20px;
    }

    #prevBtn {
        top: 12px;
        left: 12px;
    }

    .number-input-container {
        margin-top: 62px;
        margin-bottom: 18px;
        width: 168px;
    }

    .number-input-container .power-size-nr-input {
        border-bottom: 2px solid var(--white);
        padding-left: 36px;
        font-size: 17px;
    }

    .number-input-container > .nr-input-wrap > span {
        font-size: 17px;
        bottom: 2px;
    }

    .number-input-container > .nr-input-info {
        font-size: 11px;
        margin-top: 4px;
    }

    .regions-map {
        width: 263px;
        height: 260px;
    }

    .last-step-container > .left-top > p {
        margin-top: 11px;
        font-size: 12px;
        line-height: 1.33;
        text-align: center;
        margin-bottom: 24px;
    }

    .last-step-container,
    .results-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 300px;
        max-width: 300px;
    }

    .last-step-container > .left-top,
    .last-step-container > .user-info-form-wrap,
    .results-container > .results-graphic,
    .results-container > .results-details-wrap {
        flex: 0 1 auto;
    }

    .last-step-container > .user-info-form-wrap,
    .results-container > .results-details-wrap {
        padding-left: 0;
    }

    .last-step-container .user-info-form {
        height: 100%;
        background-color: var(--white);
        padding: 36px 48px 0 45px;
    }

    .last-step-container > .left-top {
        align-items: center;
        padding-right: 0;
    }

    .last-step-container .user-info-form {
        height: auto;
        padding: 17px 15px 10px 19px;
    }

    .user-info-form .user-info-form-row {
        gap: 13px;
        margin-bottom: 14px;
    }

    .user-info-form-row > input[type="text"] {
        padding-bottom: 7px;
    }

    .user-info-form-row > input[type="text"],
    .user-info-form-row > input[type="text"]::placeholder {
        font-size: 13px;
    }

    .submit-form-row {
        margin-bottom: 34px;
    }

    .submit-form-row > input[type="submit"] {
        height: 50px;
    }

    .user-info-form .user-info-form-notification {
        padding-right: 48px;
    }

    .user-info-form .user-info-form-notification,
    .submit-form-row > .user-info-form-error {
        font-size: 11.2px !important;
        line-height: 1.29;
    }

    .submit-form-row > .user-info-form-error {
        left: 0;
        bottom: -30px;
    }

    .results-container {
        margin-bottom: 23px;
    }

    .results-container > .results-details-wrap {
        width: 100%;
    }

    .results-container .results-graphic {
        width: 100%;
        height: 190px;
        background-size: contain;
    }

    .results-container .results-details {
        /* height: 405px; */
        padding: 4px 17px 8px 14px;
    }

    .multi-steps-configure-form.received-results {
        height: auto;
        max-height: none;
        padding: 32px 8px 0 8px;
    }

    .multi-steps-tab > .loader-bg {
        background-size: contain;
        background-position: center 50px;
    }

    .multi-steps-tab h2.results-heading {
        max-width: none;
        margin-bottom: 34px;
    }

    .results-details .brochure-link,
    .results-details .pricelist-link {
        height: 52px;
        font-size: 13px;
    }

    .ty-notice {
        width: 300px;
        height: 595px;
        margin-bottom: 24px;
        padding: 60px 16px;
        justify-content: flex-start;
    }

    .ty-notice > h3 {
        font-size: 20px;
    }

    .ty-notice > h4 {
        font-size: 16px;
    }

    #close-ty-notice {
        width: 25px;
        height: 25px;
        position: absolute;
        top: 11px;
        right: 8px;
    }

    #power-question-1 > h3 {
        font-size: 12px;
        max-width: 250px;
    }

    #answer-dont-know,
    #answer-i-know {
        width: 188px;
        height: 35px;
        font-size: 11px;
    }

    #answer-dont-know {
        margin-bottom: 10px;
    }

    .guide-carousel-section {
        height: 514px;
        padding-top: 35px;
    }

    .guide-carousel-section > .carousel-wrapper {
        max-width: 300px;
    }

    .guide-carousel-section .carousel-slide {
        width: 300px;
        height: 420px;
        transform: none;
        flex-direction: column;
        border-radius: 2px;
    }

    .guide-carousel-section .owl-dots {
        margin-top: 10px !important;
    }

    .guide-carousel-section .owl-dot > span {
        width: 13px !important;
        height: 13px !important;
    }



    .guide-carousel-section .carousel-slide-text {
        padding: 20px 22px 0 11px;
        order: 1;
    }

    .guide-carousel-section .carousel-slide-img {
        background-image: url('./src/assets/slide-bg.webp');
        width: 100%;
        flex-basis: 150px;
        order: -1;
    }

    .carousel-slide-text .carousel-slide-heading {
        font-size: 19px;
        line-height: 1.48;
        margin-bottom: 6px;
        max-width: 200px;
    }

    .carousel-slide-text .carousel-slide-paragraph {
        font-size: 16px !important;
        line-height: 1.38;
        max-width: 236px;
        margin-bottom: 19px;
    }

    .carousel-slide-text .carousel-slide-download-link {
        width: 100%;
        height: 56px;
        border-radius: 4px;
        font-size: 19px;
    }

    .cookie-consent {
        flex-direction: column;
    }

    .cookie-consent p {
        text-align: center;
        padding-right: 0;
    }

    .cookie-consent button {
        white-space: nowrap;
    }

    .cookie-consent-agree {
        margin-left: 0px;
        margin-top: 0px;
    }

    .question.loader-heading {
        position: static;
    }
}
