.coop_intro_box {
    gap: 20px;
}

.coop_intro_box p {
    margin-bottom: 48px;

    @media only screen and (min-width: 700px) {
        margin-bottom: 56px;
    }
}

.coop_packages_container .coop_section_title {
    color: #fff;
}

.coop_packages_container {
    padding: 98px 0;
    background: linear-gradient(45deg, rgba(74, 43, 135, 0.80) 10%, rgba(127, 86, 217, 0.80) 100%), #F1EDEA;

    @media only screen and (min-width: 700px) {
        padding: 114px 0;
    }
}

.coop_packages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;

    @media only screen and (min-width: 700px) {
        flex-direction: row;
    }
}

.coop_package {
    display: flex;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 15px;
    background-color: #f8f5f4;
    gap: 16px;
    width: 100%;
    padding: 24px 16px;
    max-width: fit-content;

    box-sizing: border-box;
    cursor: pointer;

    @media only screen and (min-width: 700px) {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 300px;
    }
}

.coop_package_image {
    width: 48px;
    height: 48px;

    @media only screen and (min-width: 700px) {
        width: 80px;
        height: 80px;
    }
}

.coop_package_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    align-self: flex-start;
}

.coop_package_content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #474a73;
    font-size: 16px;
    width: 176px;

    @media only screen and (min-width: 700px) {
        width: auto;
    }
}

.coop_package_title {
    color: #2d1a5b;
    font-weight: 600;
    font-size: 20px;
}

.coop_package_radio_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;

    @media only screen and (min-width: 700px) {
        gap: 16px;
        justify-content: center;
    }
}

.coop_package_radio {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 1.5px solid #6A3DC4;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coop_package_radio svg {
    display: none;
}

.coop_packages input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.coop_packages input[type="radio"]:checked+label.coop_package {
    background-color: #DEDBF9;
}


.coop_packages input[type="radio"]:checked+label .coop_package_radio {
    background-color: #6A3DC4;
}

.coop_packages input[type="radio"]:checked+label .coop_package_radio svg {
    display: block;

}

.coop_packages_hint {
    text-align: center;
    font-size: 12px;
    color: #fff;
    width: 100%;
    max-width: 300px;

    @media only screen and (min-width: 700px) {
        font-size: 14px;
        max-width: none;
    }
}

.coop_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;

    @media only screen and (min-width: 700px) {
        gap: 32px;
    }
}

.coop_form_container {
    background: #f8f5f4;
    border: 1px solid #fff;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 16px 12px;
    width: 100%;
    color: #474A73;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 24px;

    @media only screen and (min-width: 700px) {
        padding: 24px 16px;
        gap: 32px;
    }
}

fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend {
    color: #2d1a5b;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;

    @media only screen and (min-width: 700px) {
        font-size: 18px;
    }
}

.coop_form_groups_wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;

    @media only screen and (min-width: 700px) {
        gap: 20px;
    }
}

.coop_form_group {
    display: flex;
    gap: 8px;
}

.coop_form_group input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.coop_form_radio_icon {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 1.5px solid #6A3DC4;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    @media only screen and (min-width: 700px) {
        width: 24px;
        height: 24px;
    }
}

.coop_form_radio_icon_inner {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #fff;
}

.coop_form_group input[type="radio"]+label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.coop_form_group input[type="radio"]:checked+label .coop_form_radio_icon {
    background-color: #6A3DC4;
}

.coop_form_group_label {
    margin-bottom: 8px;
}

.coop_form_input_label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #474a73;
    transition: all 0.2s ease;
    pointer-events: none;
    margin-right: 30px;
}

.coop_form_input {
    flex: 1;
    border: 1px solid #c5c9dc;
    background: #fff;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 12px;
    width: 100%;
    color: #474a73;
    height: 45px;
    font-size: 16px;
}

.coop_form_input:focus+.coop_form_input_label,
.coop_form_input:not(:placeholder-shown)+.coop_form_input_label {
    top: 0%;
    font-size: 12px;
    background-color: #fff;
    padding: 0 4px;
}

.coop_form_input_wrapper {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.coop_form_input_wrapper.coop_form_input_wrapper--narrow {
    width: 40%;

    @media only screen and (min-width: 700px) {
        width: 100%;
    }
}

.coop_form_input_wrapper.coop_form_input_wrapper--halfwidth {
    @media only screen and (min-width: 700px) {
        width: calc(50% - 4px);
    }
}

.coop_form_input:focus {
    padding: 11px;
}

.coop_form_group--responsive {
    flex-direction: column;
    gap: 16px;

    @media only screen and (min-width: 700px) {
        flex-direction: row;
        gap: 8px;
    }
}

.coop_form_input_label_text--mobile {
    @media only screen and (min-width: 700px) {
        display: none;
    }
}

.coop_form_input_label_text--desktop {
    display: none;

    @media only screen and (min-width: 700px) {
        display: inline;
    }
}

.coop_form_signature_canvas {
    background-color: #fff;
    border: 1px dashed #d5d7da;
    border-radius: 8px;
    padding: 12px 14px;
    box-sizing: border-box;
    width: 100%;
    height: 125px;
}

.coop_form_signature_clear_button {
    color: #6A3DC4;
    font-size: 16px;
    text-decoration: underline;
    border: none;
    background-color: #F8F5F4;
    margin-top: 8px;
    cursor: pointer;

    @media only screen and (min-width: 700px) {
        font-size: 14px;
        margin-top: 12px;
    }
}

.coop_form_checkbox_description {
    color: #2D1A5B;
    font-size: 14px;
    margin-bottom: 12px;

    @media only screen and (min-width: 700px) {
        margin-bottom: 16px;
    }
}

.coop_form_checkbox_description--small {
    font-size: 12px;
}

.coop_form_checkbox_icon {
    display: flex;
}

.coop_form_checkbox_input {
    display: none;
}

.coop_form_checkbox_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #d5d7da;
    background-color: #fff;
    flex-shrink: 0;
}

.coop_form_checkbox_input:checked+.coop_form_checkbox_label .coop_form_checkbox_icon {
    background-color: #6A3DC4;
}

.coop_form_checkbox_label {
    display: flex;
    gap: 8px;
    color: #535862;

    @media only screen and (min-width: 700px) {
        gap: 12px;
    }
}

.coop_form_checkbox_label a {
    color: #6A3DC4;
    text-decoration: underline;
}

.coop_form_button_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coop_form_group_radio {
    gap: 40px;
    margin-bottom: 8px;

    @media only screen and (min-width: 700px) {
        margin-bottom: 16px;
    }
}

.coop_form_signature {
    margin-top: 8px;

    @media only screen and (min-width: 700px) {
        margin-top: 12px;
    }
}

.coop_form_section {
    padding: 32px 0;

    @media only screen and (min-width: 700px) {
        padding: 40px 0;
    }
}

.coop_form_checkbox_wrapper {
    position: relative;
}

.coop_tooltip_overlay {
    z-index: 200;
}

.coop_tooltip_container {
    z-index: 210;
}

.coop_form_checkbox_content {
    display: flex;
    gap: 16px;
}

.coop_tooltip_icon {
    width: 16px;
    height: 16px;
    cursor: help;
    flex: 1;
}

.coop_form_error_message {
    color: #B91740;
    font-size: 16px;
    display: none;
}

.coop_form_error {
    border-color: #B91740;
}

.coop_form_confirmation {
    display: none;
}

.coop_form_confirmation.coop_form_confirmation--visible {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.coop_decopicture_top {
    position: absolute;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}