.enpd_form_container {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    width: 100%;
    max-width: 800px;
    min-width: 800px;
}

@media screen and (max-width: 900px) {
    .enpd_form_container {
        max-width: 100%;
        min-width: 100%;
    }
}

.enpd_form_title {
    color: var(---Gold, #D2AB67);
    text-align: center;
    width: 100%;
    /* H1 */
    font-family: Europe;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    /* 137.5% */
}

.enpd_form_subtitle {
    color: var(---Black, #171717);
    width: 100%;
    /* Lebel_22_Europe */
    font-family: Europe;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 136.364% */
}

.enpd_form {
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;

    * {
        border: none;
    }

    #global_error {
        font-size: 25px;
    }

    .error-border {
        border: 1px solid var(---Red, #F00);
    }
}

.error {
    color: var(---Red, #F00);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    min-height: 24px;
    display: block;
    /* 120% */
    
    opacity: 0;
}

.error.show {
    opacity: 1;
}

.enpd_form_fields {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.enpd_form-select-container {
    width: 100%;
}

.enpd_form-select {
    position: relative;
    user-select: none;

    width: 100%;
}

.enpd_form-select select {
    display: none;
}

.enpd_form-select-trigger {
    display: flex;
    padding: 12px 20px;
    align-items: center;
    gap: 12px;
    align-self: stretch;

    width: 100%;
    justify-content: space-between;
    background: #fff;
    cursor: pointer;
    border-radius: 10px;
    background: var(---White, #FFF);
    position: relative;

    color: var(---Grey_50, #A7A9AC);

    /* Text_20 */
    font-family: Europe;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    /* 135% */
}

.enpd_form-select-trigger.active {

    color: var(---Black, #171717);
}

.enpd_form-options-container {
    display: none;
    z-index: 99;
    top: auto;
    left: 0;
    right: 0;
    position: absolute;
    margin-top: 5px;
}

.enpd_form-options {
    max-height: 50vh;
    overflow: auto;
    padding: 8px 0px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;

    border-radius: 10px;
    background: var(---White, #FFF);

    /* Shadow */
    box-shadow: 0px 1px 15px 0px rgba(23, 23, 23, 0.20);



    display: flex;

}

.enpd_form-option {
    display: flex;
    padding: 14px 20px;
    align-items: flex-start;
    align-self: stretch;

    color: var(---Black, #171717);

    /* Text_20 */
    font-family: Europe;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    /* 135% */
    cursor: pointer;
}

.enpd_form-option:hover {
    background: #f1f1f1;
}

.enpd_form-input::placeholder,
.enpd_form-textarea::placeholder {
    /* Text_20 */
    font-family: Europe;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    opacity: 0.7;
    padding-top: -25px;
}

.enpd_form-input,
.enpd_form-textarea {
    resize: none;
    border-radius: 10px;
    background: var(---White, #FFF);
    display: flex;

    padding: 12px 20px;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    color: var(---Black, #171717);
    width: 100%;
    /* Text_20 */
    font-family: Europe;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    /* 135% */
}

.enpd_form-textarea {
    height: 218px;
}

.enpd_form-input.active,
.enpd_form-textarea.active {
    padding-top: 35px;
}

.enpd_form-textarea-container {
    position: relative;
    width: 100%;
}

.enpd_form-textarea-counter {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 20px;
    color: var(---Grey_50, #A7A9AC);

    /* Text_20_Myriad */
    font-family: "Myriad Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 120% */
}

.enpd_form-captcha {
    display: flex;
    /* width: 536px; */
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 10px;
    border: 1px solid var(---Grey_50, #A7A9AC);

    color: var(---Grey_50, #A7A9AC);

    .captha-text {
        /* Text_20 */
        font-family: Europe;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 27px;
        /* 135% */
    }


    .captha-field {
        display: flex;
        padding: 12px 20px;
        align-items: center;
        align-self: stretch;
        border-radius: 10px;
        background: var(---White, #FFF);

        color: var(---Black, #171717);

        /* Text_20 */
        font-family: Europe;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 27px;
        /* 135% */
    }

    .captha-field::placeholder {
        opacity: 0.7;
    }
}

.enpd_form-captcha-img {
    display: flex;
    align-items: center;
    gap: 16px;

    #reloadCaptcha {
        cursor: pointer;
    }
}

.enpd_form-btn {
    display: flex;
    height: 70px;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    border: 2px solid var(---Gold, #D2AB67);

    color: var(---Black, #171717);
    text-align: center;

    cursor: pointer;

    /* Lebel_22_Europe */
    font-family: Europe;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 136.364% */
}

.enpd_form-btn:hover {
    opacity: 0.8;
}

.enpd_form_modal {
    z-index: 99;
    position: fixed;
    bottom: 0px;
    top: 0px;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #17171785;
    /* mix-blend-mode: multiply; */

    display: none;
    align-items: center;
    justify-content: center;

    .modal-content {
        padding: 0px 40px 40px 40px;
        gap: 24px;
        height: fit-content;
        display: flex;
        min-width: 536px;
        flex-direction: column;
        align-items: center;
        border-radius: 10px;
        background: var(---White, #FFF);
        box-shadow: 0px 4px 20px 0px rgba(43, 45, 51, 0.12);
        color: var(---Black, #171717);
        text-align: center;

        /* Lebel_22_Europe */
        font-family: Europe;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
        /* 136.364% */
    }

    .modal-button {
        cursor: pointer;
        display: flex;
        height: 70px;
        padding: 20px 40px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 10px;
        border: 2px solid var(---Gold, #D2AB67);
        color: var(---Black, #171717);
        text-align: center;
        background: var(---White, #FFF);
        /* Lebel_22_Europe */
        font-family: Europe;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
        /* 136.364% */
    }

    .modal-close {
        width: 100%;
        text-align: end;
        padding-top: 16px;
        margin-right: -50px;
        .modal-close-icon{
            cursor: pointer;
        }
    }
}

.step__step-field {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid transparent;
    resize: none;
    font-family: "Europe";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    display: flex;
    /* align-items: center; */
    color: #171717;

    width: 100%;
}

.step__file-picker-wrapper {
    position: relative;
    cursor: pointer;
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.step__file-picker-placeholder {
    font-family: "Europe";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;

    user-select: none;

    color: var(--appBlue);
}

.step__file-picker {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}
  