/* Add Company Start */
.fp-add-company {
    padding: 50px 0;
    background: url('../images/fp-dark-bg.svg') no-repeat center bottom / cover;
    min-height: 100vh;

    .progress {
        margin: 0;
        background: $bgGreyLight;
        border-radius: 0;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 0;

        .progress-bar {
            background: $bgPurple;
            border-radius: 0px 25px 25px 0;
        }
    }

    .fp-step-form {
        background: $bgWhite;
        padding: 32px 40px;
        width: 100%;
        position: relative;

        @media only screen and (max-width: $md_991) {
            padding: 20px;
        }

        h3 {
            &.fp-head-18 {
                font-weight: $fontRegular;
                color: $textGrey;
                margin: 20px 0 0 0;
            }
        }

        form {
            margin: 20px 0 0 0;

            .fp-form-step {
                display: none;
                opacity: 0;
                transform: translateX(30px);
                transition: opacity 0.4s ease, transform 0.4s ease;

                hr {
                    border-color: $bgLightPink;
                    opacity: 1;
                }

                h3 {
                    font-weight: $fontBold;
                }

                .fp-profile-edit-section {
                    position: relative;
                    display: inline-block;

                    > {
                        img {
                            width: 125px;
                            height: 125px;
                            border-radius: 125px;
                            object-fit: cover;
                        }
                    }

                    .fp-small-btn {
                        width: 38px;
                        height: 38px;
                        border-radius: 38px;
                        border: none;
                        background: $bgPurple;
                        position: absolute;
                        bottom: 0;
                        right: 0;

                        img {
                            height: 18px;
                        }
                    }
                }

                .fp-cmn-brdr-btn {
                    margin-right: 15px;
                }

                &.fp-active {
                    display: block;
                    opacity: 1;
                    transform: translateX(0);
                }

                /* Check box tree start */
                .fp-tree-main {
                    border: solid 1px $bgLightPink;
                    border-radius: 8px;
                    margin-top: 20px;

                    ul {
                        padding-left: 0;
                        list-style: none;
                        margin: 0;

                        &.fp-main-ul {
                            li {
                                border-top: solid 1px $bgLightPink;
                            }

                            > {
                                li {
                                    &:first-child {
                                        border-top: none;
                                    }
                                }
                            }
                        }

                        li {
                            position: relative;
                            padding: 12px 16px;

                            .fp-plus {
                                width: 20px;
                                height: 20px;
                                text-align: center;
                                line-height: normal;
                                cursor: pointer;
                                margin-right: 10px;
                                background: $bgDarkPink;
                                color: $textWhite;
                                float: left;
                                margin-top: 2px;
                                font-size: $font18;
                                font-weight: $fontMedium;
                                @include fpDflexAlignItemsJustifyContentCenter;

                                &:after {
                                    content: "+";
                                    position: relative;
                                    top: 0px;
                                    left: 0px;
                                }

                                &.fp-minus {
                                    &:after {
                                        content: "−";
                                    }
                                }
                            }

                            .form-check {
                                margin: 0;
                                padding: 0;
                                display: flex;

                                .form-check-input {
                                    background-color: transparent;
                                    border-color: $bgPurple;
                                    border-radius: 4px;
                                    width: 20px;
                                    height: 20px;
                                    margin: 2px 0 0 0;

                                    &:focus,
                                    &:active {
                                        border-color: $bgPurple;
                                        box-shadow: none;
                                    }

                                    &:checked {
                                        background-color: $bgPurple;
                                        border-color: $bgPurple;
                                        box-shadow: none;
                                    }
                                }

                                label {
                                    &.form-check-label {
                                        padding-left: 8px;
                                        padding-top: 1px;
                                    }
                                }
                            }

                            ul {
                                margin-top: 10px;
                                padding-left: 10px;

                                @media only screen and (min-width: $xs_576) {
                                    padding-left: 30px;
                                }

                                > {
                                    li {
                                        padding: 12px 0 8px;
                                        font-size: $font14;
                                        margin: 4px 0;

                                        &:last-child {
                                            padding-bottom: 0;
                                            margin-bottom: 0;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                /* Check box tree end */
            }
        }
    }
}

/* Add Company End */