
.no-data-form {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    padding-left: 353px;
    height: 360px;
    background-image: url('/local/templates/inno-2022/images/no-dates-desktop.png');
    background-repeat: no-repeat; 
    background-position: left center;
    background-size: contain;
    position: relative;
}

.no-data-form > div:first-child {
    color: #2A2A30;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.706px;
}

    .no-data-form > div:first-child h3 {
        color: #5AC9C9;
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        padding-bottom: 10px;
        padding-top: 17px;
    }

    .no-data-form .form {
        flex: 0 0 330px;
    }

        .no-data-form .form .white-wide-input-header {
            color: #D2D2D2;
        }

        .no-data-form .form .white-wide-input {
            background: #F1F1F1;
        }

        .no-data-form .form .white-wide-input.error {
            background: #ffd9cf;
        }

        .no-data-form .form .send-button {
            width: 100%;
            height: 60px;
            margin-top: 20px;
            margin-bottom: 14px;
        }

    .no-data-form .success {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        display: none;
        height: 100%;
        width: 100%;
        z-index: 2;
        background-color: #FFF;
        padding: 40px 20px;
        transition-duration: 500ms;
        z-index: 5;
    }

    .no-data-form .success.active {
        opacity: 1;
    }

    .no-data-form .success > div:first-child {
        flex: 0 0 300px;
        min-width: 300px;
        height: 100%;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url('/local/templates/inno-2022/images/no-dates-small.png');
    }

    .no-data-form .success > div:last-child {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        flex-grow: 1;
    }

        .no-data-form .success > div:last-child .green-ok {
            height: 70px;
            width: 70px;
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
            background-image: url('/local/templates/inno-2022/images/icons/green-ok.svg');
        }

        .no-data-form .success > div:last-child .title {
            padding: 20px 0 10px 0;
        }

        
@media (max-width: 1200px) {
    .no-data-form {
        padding-left: 0;
        background-image: url('/local/templates/inno-2022/images/no-dates-middle.png');
        background-position: left bottom;
        background-size: calc(100% - 300px) auto;
        height: 330px;
    }

    .no-data-form .success > div:first-child {
        display: none;
    }
}

        
@media (max-width: 1032px) {

    .no-data-form {
        background-size: calc(100% - 300px) 30%;
        height: 320px;
        background-position: left bottom 20px;
    }
}

        
@media (max-width: 818px) {

    .no-data-form {
        background-image: url('/local/templates/inno-2022/images/no-dates-small.png');
        background-size: auto 230px;
        background-position: calc(100% - 20px) calc(100% - 70px);
        flex-direction: column;
        height: auto;
        padding: 10px 10px 0 10px;
    }

        .no-data-form > div:first-child h3 {
            font-size: 23px;
        }

        .no-data-form .form {
            padding-right: 220px;
        }
}

        
@media (max-width: 622px) {

    .no-data-form {
        background-image: none;
    }

        .no-data-form > div:first-child {
            font-size: 13px;
            line-height: normal;
        }

        .no-data-form .form {
            padding: 0;
        }
}

        
@media (max-width: 390px) {

        .no-data-form > div:first-child {
            font-size: 15px;
            padding-right: 20px;
            line-height: normal;
        }

        .no-data-form .white-wide-input-notice {
            font-size: 13px;
        }
}