.ap-sep {
    width: 100%;
    height: 1px;
    background-color: var(--primary-clr);
    opacity: 0.5;
    margin-block: 20px;
}

.ap-form-field {
    margin: 4px 14px;
    margin-bottom: 32px;
    min-width: 42%;
}

    .ap-form-field.wide-field {
        width: 100%;
        margin-inline: 77px;
    }

    .ap-form-field.captcha-area {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

        .ap-form-field.captcha-area > div {
            width: 266px;
            margin-inline: 14px;
            margin-bottom: 32px;
        }

.ap-input-field,
.ap-select-field,
.ap-file-field,
.ap-captcha-field {
    background-color: transparent;
    border: none;
    position: relative;
    border-radius: 5px;
    border: 1px solid var(--light-clr-3);
    display: flex;
    position: relative;
    background-color: var(--white-clr);
    padding: 18px 13px;
    transition: var(--transition-dur) all;
}
    .ap-input-field.x2,
    .ap-select-field.x2,
    .ap-file-field.x2,
    .ap-captcha-field.x2 {
        padding: 0.625rem 0.875rem 0.875rem;
    }

    .ap-input-field:active,
    .ap-input-field:focus-within,
    .ap-select-field:active,
    .ap-select-field:focus-within {
        border-color: var(--prpl-sbush-clr);
    }

.ap-captcha-field {
    align-items: center;
    justify-content: space-between;
}

    .ap-captcha-field img {
        width: fit-content;
        object-fit: contain;
        object-position: center;
        height: 50px;
    }

    .ap-captcha-field > a {
        background-image: var(--sync);
        margin-inline-end: 10px;
    }

.ap-file-field {
    padding-block: 8px;
}

.ap-select-field select {
    width: 100%;
    cursor: pointer;
}

.ap-select-field option[value="0"] {
    color: var(--light-clr-5);
}

.ap-file-field input[type="file"] {
    display: none;
}

.ap-file-field .ap-file-label {
    color: var(--light-clr-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    cursor: pointer;
    font-size: 13.33px;
}

    .ap-file-field .ap-file-label span {
        border-radius: 6px;
        background-color: var(--light-clr-7);
        color: var(--dark-clr-3);
        padding: 8px 14px;
        cursor: inherit;
        font-size: inherit;
    }

.ap-input-field input {
    width: calc(100% - 28px);
}

.ap-input-field textarea {
    width: 100%;
}

.captcha-area .ap-input-field, .captcha-area .ap-captcha-field {
    padding: 10px 13px;
}

.ap-form-field label {
    color: var(--black-clr);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}

.ap-form-field .help-text {
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-clr);
    display: block;
    margin-top: 8px;
    position: absolute;
}

.ap-form-field input,
.ap-form-field textarea {
    color: var(--light-clr-4);
    line-height: 20px;
}

.ap-form-field .ap-input-action {
    position: absolute;
    width: 24px;
    height: 24px;
    left: 19px;
    z-index: 1;
    bottom: calc(50% - 12px);
}

.ap-check-field label {
    color: var(--bluewood-clr);
    font-weight: 500;
    font-size: 16px;
    display: flex;
    position: relative;
    cursor: pointer;
}

    .ap-check-field label span {
        border: 1px solid var(--light-clr-3);
        border-radius: 6px;
        width: 20px;
        height: 20px;
        display: block;
        margin-inline-end: 12px;
        position: relative;
        transition: var(--transition-dur) all;
    }

        .ap-check-field label span:after {
            left: 3px;
            top: 4px;
            width: 14px;
            height: 14px;
            background-image: var(--check-14);
            content: "";
            position: absolute;
            opacity: 0;
            transition: var(--transition-dur) opacity;
        }

    .ap-check-field label input:checked ~ span:after {
        opacity: 1;
    }

    .ap-check-field label input:checked ~ span {
        border: 1px solid var(--prpl-sbush-clr);
        background-color: var(--light-clr-6);
    }

.ap-check-field input[type="checkbox"] {
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: none;
}

.ap-button,
.ap-badge {
    gap: 8px;
    color: var(--white-clr);
    /* line-height: 22.1px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-dur) filter;
}

.ap-button {
    background-color: var(--primary-clr);
    border-radius: 12px;
    padding: 12px 20px;
    /* font-weight: 500;
  font-size: 1.0625rem; */
    border: 3px solid transparent;
}

    .ap-button:hover {
        filter: brightness(1.22);
    }

    .ap-button:active,
    .ap-button:focus-within {
        border-color: var(--prpl-pastel-clr);
    }

.ap-badge {
    background-color: var(--warning-clr);
    border-radius: 3px;
    padding: 6px 8px;
    /* font-weight: 400;
  line-height: 28px; */
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    margin-inline: 4px;
}

    .ap-badge > span {
        font-size: inherit;
    }

    .ap-badge:hover {
        filter: brightness(1.1);
    }

.ap-button i {
    transition: var(--transition-dur) transform;
}

.ap-button > span,
.ap-badge > span {
    color: inherit;
    font-size: inherit;
    display: block;
}

.ap-submit-action {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .ap-submit-action > button {
        width: 280px;
        justify-content: center;
    }

.ap-container {
    margin-inline: auto;
    display: block;
}

.hover:hover {
    box-shadow: var(--shadow-hover);
}

.ap-card {
    border-radius: 20px;
    padding: 30px;
    background-color: var(--white-clr);
    transition: var(--transition-dur) all;
    /* static */
    box-shadow: var(--shadow-hover);
}

    .ap-card:hover {
        box-shadow: var(--shadow-hover);
    }

.ap-card-head {
    margin-bottom: 24px;
}

    .ap-card-head .ap-card-thumb {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }

        .ap-card-head .ap-card-thumb > * {
            width: 50%;
            height: 50%;
        }

.ap-accordion {
    margin-inline: 8px;
}

.ap-accordion-header,
.ap-accordion-collapse {
    position: relative;
    transition: var(--transition-dur) all;
}

.ap-accordion .ap-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.ap-accordion .ap-accordion-item {
    margin-bottom: 24px;
    overflow: hidden;
}

.ap-accordion-item .ap-accordion-header span {
    font-weight: bold;
    color: var(--primary-clr);
    font-size: .9rem;
    margin-inline-end: 20px;
}

.ap-accordion .ap-accordion-collapse {
    overflow: hidden;
    height: auto;
}

.ap-accordion-collapse.collapse {
    padding: 0;
    height: 0;
}

.ap-accordion-item.ap-card {
    padding: 0;
}

.ap-accordion-collapse,
.ap-accordion-header {
    padding: 20px;
}

.ap-accordion-item.active .ap-accordion-header {
    background-color: var(--primary-clr);
}

    .ap-accordion-item.active .ap-accordion-header span {
        color: var(--white-clr);
    }

.ap-accordion-item.active .ap-accordion-collapse {
    background-color: var(--bg-clr-2);
}

.ap-link-img {
    background-image: var(--ap-logo-1);
    width: 113px;
    height: 44px;
}

.ap-link-img2 {
    background-image: var(--ap-logo-2);
    width: 180px;
    height: 45px;
}

.profile-circle-img {
    background-image: var(--profile-circle-img);
    display: flex;
    width: 2rem;
    height: 2rem;
}

.field-validation-error {
    position: absolute;
    bottom: -24px;
    right: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--danger-clr);
}

@media screen and (max-width: 767px) {
    .card-auto-flex {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

        .card-auto-flex .ap-card-head {
            margin-bottom: 0px;
            margin-inline-end: 24px;
        }
}

@media screen and (max-width: 575px) {
    .ap-form-field {
        margin-inline: unset;
    }

    .ap-card {
        padding: 20px;
    }

    .card-auto-flex .ap-card-head {
        margin-inline-end: 16px;
    }

    .ap-button {
        padding: 8px 16px;
    }

    .ap-link-img2 {
        width: 140px;
        height: 35px;
    }

}

@media screen and (max-width: 420px) {
    .ap-card-head .ap-card-thumb {
        width: 40px;
        height: 40px;
    }
        .ap-card-head .ap-card-thumb > i {
            font-size: 1.5rem !important;
        }

        .ap-accordion-item .ap-accordion-header span {
            font-size: .625rem;
        }
}


.flat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    justify-content: space-evenly;
}

.flat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .flat-item h3 {
        margin-bottom: 0px;
        font-size: 1rem;
        font-style: normal;
        line-height: normal;
    }

    .flat-item p {
        color: var(--text-gray-3);
        margin: 0px;
    }

.flat-icon {
    border-radius: 2rem;
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
}

    .flat-icon img {
        width: 1.5rem;
        height: 1.5rem;
    }

@media screen and (max-width: 990px) {

    .feature-report .tubmail {
        display: none;
    }

    .services-report .ap-card-body {
    }
}

.bg-mod {
    background-color: var(--bg-clr-2);
    padding-block: 40px;
}