.block-getinfo form {

    display: flex;

}
.block-getinfo.checkpoweroutage,
.block-getinfo.smartmeterinfo,
.block-getinfo.whoisyoursupplier{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.block-getinfo .informations {
    display: flex;
}

.block-getinfo .informations .image {

    width: 160px;
    height: 160px;
    background-clip: padding-box;
}

.block-getinfo .pod:hover .tooltip {
    visibility: visible;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.block-getinfo .smartmeter .global-button.hidden{
    display: none;
}
.block-getinfo .tooltip {
    visibility: hidden;
    width: 720px;
    border-radius: 24px;
    background-color: var(--wp--preset--color--background);
    color: var(--wp--preset--color--dark-blue);
    border: 2px solid var(--wp--preset--color--grey);
    padding: 16px;
    left: 20px;
    margin-left: 100%;
    position: absolute;
    z-index: 1;
}
.block-getinfo .tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%; 
    transform: translate(-100%, -50%); 
    border-width: 22px;
    border-style: solid;
    border-color: transparent var(--wp--preset--color--grey) transparent transparent; 
}
.block-getinfo.checkpoweroutage .informations .image,
.block-getinfo.smartmeterinfo .informations .image,
.block-getinfo.whoisyoursupplier .informations .image {
    background-repeat: no-repeat;
    background-size: contain;


}


.block-getinfo.checkpoweroutage .informations .image {
    background-image: url(../../assets/images/checkpoweroutage.svg);


}

.block-getinfo.whoisyoursupplier .informations .image {
    background-image: url(../../assets/images/whoisyoursupplier.svg);
    width: 80px;
    margin: 0 40px;

}

.block-getinfo.smartmeterinfo .informations .image {
    background-image: url(../../assets/images/smartmeterinfo.svg);


}

.block-getinfo .informations .text-area {
    display: block;
    color: #232936;
    font-size: 48px;
    font-style: normal;
    font-weight: 550;
    line-height: normal;
    margin-left: 32px;
}

.block-getinfo .input-box {
    width: 100%;
    padding-right: 64px;
}
.block-getinfo .response-popup .input-box {
    padding: 0;
    margin-top: 32px;
}
.block-getinfo .pod {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    width: max-content;
}

.block-getinfo .informations .text-area p {
    color: #232936;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.block-getinfo .global-button {
    height: 96px;
}
.block-getinfo .global-button:hover{
    background:var(--wp--preset--color--primary);
    cursor: pointer;
}
.block-getinfo .pod::after {
    content: "";
    -webkit-mask-image: url(../../assets/images/info.svg);
    mask-image: url(../../assets/images/info.svg);
    width: 32px;
    height: 32px;
    margin-left: 12px;
    display: inline-block;
    background: #FF4B00;

    background-repeat: no-repeat;
    background-size: cover;

    mask-size: cover;
    mask-repeat: no-repeat;
}
.block-getinfo #getinfo_pod-error,
.block-getinfo #fname-error,
.block-getinfo #phone-error{
    color:#FF4B00;
}
.block-getinfo input.getinfo-pod + label.error,
input[name="fullname"] + label.error,
input[name="telefon"] + label.error  {
    margin-top: 10px;
}


.block-getinfo .response-popup .close{
    position: absolute;
    right: 48px;
    top: 32px;
    cursor: pointer;
    z-index: 999;
    width: 128px;
    height: 128px;
    width: 80px;
    height: 80px;
    color: #FF4B00;
    border-radius: var(--Card-Border-Radius-Secondary, 24px);
    border: 2px solid var(--Button-border-color-orange, #FF4B00);
    border-radius: 20px;
    cursor: pointer;
    z-index: 999;
}
.block-getinfo .response-popup .close:after,
.block-getinfo .response-popup .close:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background-color:#FF4B00;
    border-radius: 4px;
    top: 38px
}

.block-getinfo .response-popup .close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 42px
}

.block-getinfo .response-popup .close:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 44px
}

.block-getinfo .response-popup{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .7);
    z-index: 999999;
}
.block-getinfo .response-popup.active{
    display: flex;
}
.block-getinfo .response-popup .container{
    padding: 48px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    background: #fff;
    max-width: 1500px;
    border: 2px solid #FF4B00;
    display: flex;
    flex-direction: column;
    position: relative; 
    min-width: 1000px;
}
.block-getinfo .response-popup h3{
    font-size: 48px;
    font-style: normal;
font-weight: 550;
line-height: normal;
margin-bottom: 32px;
}
.block-getinfo .response-popup p{
    
}
.block-getinfo .input-box input.error {
    border: 2px solid #FF4B00;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-getinfo .input-box input {

    border-radius: 40px;

    border: 2px solid var(--wp--preset--color--light-grey);

    background: var(--wp--preset--color--background);

    padding: 28px 40px;
   
    box-sizing: border-box;

    width: 100%;

    color: var(--wp--preset--color--dark-blue);

    font-size: 32px;

}
.block-getinfo .response-popup .smartmeter.hidden,
.block-getinfo .response-popup .smartmeter-response.hidden,
#CustomInstallSmartMeterForm.hidden
{
    display: none;
}

#CustomInstallSmartMeterForm{
    display: block;
}
#CustomInstallSmartMeterForm .custom-message{
    font-weight: 500px;
    font-size: 42px;
}
.block-getinfo .pod p{
    margin-bottom: 0px;
}
.block-getinfo .response-popup .global-button{
    margin-top: 32px;
}
@media only screen and (max-width: 3000px) {

    .block-getinfo .tooltip .tooltip-text::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0%; 
        transform: translate(-100%, -50%); 
        border-width: 11px;
        border-style: solid;
        border-color: transparent var(--wp--preset--color--grey) transparent transparent; 
    }

    .block-getinfo .input-box input {

        border-radius: 20px;

        border: 1px solid var(--wp--preset--color--light-grey);

        padding: 14px 20px;

        font-size: 16px;
       
    }
    .block-getinfo .response-popup .close{
        right: 24px;
        top: 16px;
        width: 40px;
        height: 40px;
        border-radius: var(--Card-Border-Radius-Secondary, 12px);
         border: 1px solid var(--Button-border-color-orange, #FF4B00);

    }
    .block-getinfo .response-popup h3{
        font-size: 24px;
        margin-bottom: 16px;
    }
    .block-getinfo .tooltip {
        visibility: hidden;
        width: 360px;
        border-radius: var(--Input-FIeld-Border-Radius-Secondary, 12px);
        border: 1px solid var(--Menu-Font-Gray, #D3D5D6);
        background: var(--Input-FIeld-Bg-Color-White, #FFF);
        border-radius: 6px;
        padding: 8px;
        left: 10px;
        margin-left: 100%;
        position: absolute;
        z-index: 1;
    }
    #CustomInstallSmartMeterForm .custom-message{
        font-size: 21px;
    }
    .block-getinfo .informations .image {
        padding-right: 16px;
        padding-bottom: 16px;
        width: 80px;
        height: 80px;
    }

    .block-getinfo .global-button {
        height: 48px;
    }

    .block-getinfo .input-box {
        width: 100%;
        padding-right: 32px;
    }
    .block-getinfo .response-popup .input-box {
        padding: 0;
        margin-top: 16px;
    }
    .block-getinfo .response-popup .close:after,
    .block-getinfo .response-popup .close:before {
        width: 20px;
        height: 2px;
        border-radius: 2px;
        top: 19px
    }
    .block-getinfo .response-popup .global-button{
        margin-top: 16px;
    }
    .block-getinfo .response-popup .close:before {
        left: 10px
    }

    .block-getinfo .response-popup .close:after {
        right: 10px
    }
    .block-getinfo .pod::after {

        width: 16px;
        height: 16px;
        margin-left: 6px;



    }

    .block-getinfo .input-box input.error {
        border: 1px solid #FF4B00;
    }

    .block-getinfo .pod {
        margin-bottom: 8px;
    }
    .block-getinfo.whoisyoursupplier .informations .image {
        background-image: url(../../assets/images/whoisyoursupplier.svg);
        width: 40px;
        margin: 0 20px;
    
    }
    
    .block-getinfo .informations .text-area p {
        color: #232936;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .block-getinfo .informations .text-area {
        margin-left: 16px;
        font-size: 24px;

    }
    .block-getinfo .response-popup .container{
        padding: 24px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        max-width: 740px;
        min-width: 500px;
        border: 1px solid #FF4B00;
    }
    
}


@media only screen and (max-width: 1200px) {
    .block-getinfo .pod p{
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 700px) {
    .block-getinfo .informations .image{
        height: 48px;
        width: 48px;
    }
    .block-getinfo .response-popup .container{
        min-width: initial;
    }

}
@media only screen and (max-width: 600px) {
    .block-getinfo .response-popup h3{
        margin-right: 10px;
    }
    .block-getinfo .input-box{
        padding: 0px;
    }
    .block-getinfo form{
        flex-direction: column;
        gap: 16px;
    }
    .block-getinfo .response-popup .container{
        margin: 0 20px;
    }
    .block-getinfo .tooltip{
        width: 250px;
        z-index: 10;
    }
}
@media only screen and (max-width: 400px) {
    .block-getinfo .tooltip{
        width: 60vw;
    }
}