.dynamic-form-survey {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    font-family: Roboto, sans-serif;
    padding: 38px;
    color: #fff;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 9.4px rgba(0, 0, 0, 0.1);
}

.dynamic-form-survey.survey-blue-style {
    color: #fff;
    background-color: #003366;
}

.survey-blue-style .df-survey-progress-bar .df-survey-progress {
    background-color: #185592;
}

.survey-blue-style .df-survey-step-indicator {
    background-color: #7F99B2;
    color: #ffffff;
}

.survey-blue-style .df-survey-navigation button {
    background-color: #fff;
    color: #003366 !important;
}

.survey-blue-style .df-survey-final-content .ok-button:hover {
    background-color: #7f99b2 !important;
}

.survey-blue-style .df-survey-final-content .ok-button {
    color: #003366;
    background-color: #ffffff;
}

.survey-blue-style .df-survey-success-message {
    color: #ffffff;
    border: 2px solid #ffffff;
}

.dynamic-form-survey.survey-blue-style p,
html body .survey-blue-style .df-survey-final-content label,
.survey-blue-style .df-survey-field .radio label,
.survey-blue-style .df-survey-field label,
.survey-blue-style .df-survey-form-title h2,
body .dynamic-form-survey.survey-blue-style .successful_send_message {
    color: #FFFFFF;
}


.dynamic-form-survey p {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    font-family: Inter;
    color: #000000;
}

.df-survey-form-title {
    max-width: 400px;
}

.df-survey-form-title h2 {
    font-size: 30px;
    font-family: Roboto, sans-serif;
    margin: 0;
    font-weight: bold;
    color: #003366;
}

.df-survey-field-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

html body .df-survey-final-content label {
    color: #171D20;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}

.df-survey-final-content .df-survey-navigation {
    margin-top: 40px;
}

.df-survey-step-indicator {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: #E1E8F0;
    background-color: #003366;
    padding: 16px 18px;
}

.df-survey-progress-bar {
    width: 100%;
    background-color: #7F99B2;
    margin: 40px 0;
    height: 10px;
    overflow: hidden;
}

.df-survey-progress {
    height: 100%;
    background-color: #2F4964;
    width: 0%;
    transition: width 0.3s ease-in-out;
}

.df-survey-steps {
    position: relative;
}

.df-survey-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.df-survey-step.active {
    display: block;
    opacity: 1;
}

.df-survey-field {
    margin-bottom: 15px;
}

.df-survey-field > label {
    margin-bottom: 25px;

}

.df-survey-field label {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #263441;
}

.df-survey-field select,
.df-survey-field input {
    background-color: #FFFFFF;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #003366;
    padding: 17px 20px;
    cursor: pointer;
    outline: none !important;
    border: 1px solid #D0D5DD !important;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.df-survey-field .radio label {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 190%;
    color: #000000;
}

.df-survey-field input,
.df-survey-field textarea,
.df-survey-field select {
    box-sizing: border-box;
}

.df-survey-field .checkbox,
.df-survey-field .radio {
    display: flex;
    align-items: center;
}

.df-survey-field .checkbox input,
.df-survey-field .radio input {
    margin-right: 25px;
    width: 32px;
    height: 32px;
    min-width: 20px;
    max-width: 20px;
    color: #7F99B2;
    background-color: #7F99B2;
    cursor: pointer;
}

.df-survey-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.df-survey-navigation button {
    padding: 15px 35px;
    border: none;
    cursor: pointer;
    background-color: #003366;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #ffffff !important;

}

.df-survey-navigation .df-survey-prev-step img {
    margin-right: 10px;
}

.df-survey-navigation .df-survey-next-step img {
    margin-left: 10px;
}


.df-survey-navigation button:hover,
.df-survey-navigation button:focus {
    color: #ffffff !important;
    background-color: #7F99B2 !important;
}

.df-survey-navigation button:hover {
    background-color: #005bb5;
}

.df-survey-submit {
    padding: 10px 20px;
    background-color: #28a745;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.df-survey-submit:hover {
    background-color: #218838;
}

.df-survey-errors p {
    margin: 25px 0 5px 0;
    color: red !important;
}

.df-survey-success-message {
    text-align: center;
    font-size: 1.2em;
    margin-top: 20px;
    color: #185592;
    border: 2px solid #185592;
    padding: 10px;
}

.df-survey-wrapper-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.df-survey-divider {
    width: 100%;
    height: 2px;
    background-color: #185592;
    margin: 25px 0 35px 0;
}

div[data-step="0"] .df-survey-navigation {
    justify-content: end;
}

.last-step-info {
    text-align: center;
    font-size: 1.2em;
    color: #003366;
}

.df-survey-final-content .ok-button {
    background-color: #003366;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 60px;
    margin: 20px auto 0 auto;
    display: block;
    transition: all 0.3s ease-in-out;
}

.df-survey-final-content .ok-button:hover {
    background-color: #003366ad !important;
}

.last-step-info .ok-button:hover {
    background-color: #005bb5;
}

body .dynamic-form-survey .successful_send_message {
    text-align: center;
    font-size: 32px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    color: #3C3835;
    margin: 50px 0;
}

.df-survey-field-paired {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}

.df-survey-field-paired > div{
    width: 100%;
}

.df-half-third {
    width: 30% !important;
}