/*---------------------------------------
    ## Edit Profile
---------------------------------------*/
.edit-profile-inner {
    border: 2px solid var(--form-bg-color);
    padding: 40px 40px 41px;
    border-radius: 4px;

    .content-top {
        display: flex;

        .img-box {
            position: relative;

            img {
                max-width: 120px;
                max-height: 120px;
                border-radius: 50%;
            }

            .img-choose {
                position: absolute;
                right: 0;
                bottom: 2px;
                z-index: 3;

                &:hover {
                    cursor: pointer;
                }

                .icon {
                    position: relative;
                    font-size: 16px;
                    color: $white;
                    width: 35px;
                    height: 35px;
                    text-align: center;
                    line-height: 35px;
                    border-radius: 50%;
                    background-color: var(--main-color-one);
                }

                .profile-pic-selection {
                    border: none;
                    border-radius: 50%;
                    position: absolute;
                    bottom: -3px;
                    right: 0;
                    width: 34px;
                    height: 36px;
                    opacity: 0;
                    overflow: hidden;
                }
            }
        }

        .content {
            align-self: center;
            margin-left: 20px;

            .sub-title {
                text-transform: capitalize;
                color: var(--heading-color);
            }

            .title {
                font-family: var(--heading-font);
                font-size: 20px;
                font-weight: 700;
                line-height: 30px;
                text-transform: capitalize;
                color: var(--heading-color);
            }
        }
    }

    .content-bottom {
        margin-top: 35px;

        .sec-title {
            font-size: 20px;
            font-weight: 600;
            line-height: 26px;
            text-transform: capitalize;
            color: var(--heading-color);
            margin-bottom: 30px;
        }

        .user-account-form {
            .form-group {
                input {
                    width: 100%;
                    height: 50px;
                    padding: 5px 10px;
                    border: 1px solid var(--form-bg-color);
                    border-radius: 4px;

                    &::placeholder {
                        text-transform: capitalize;
                        color: var(--heading-color);
                    }
                }

                select {
                    height: 50px;
                    width: 100%;
                    border: 1px solid var(--form-bg-color);
                    padding: 5px 10px;
                    border-radius: 4px;
                }
            }

            .btn-wrapper {
                margin-top: 17px;

                .btn-default {
                    &:last-child {
                        margin-left: 20px;
                    }

                    &.disable {
                        background-color: var(--form-bg-color);
                        border-color: var(--form-bg-color);
                        color: #999999;
                        cursor: no-drop;
                    }
                }
            }
        }
    }
}

/*---------------------------------------
    ## Profile
---------------------------------------*/
.profile-inner {
    padding-bottom: 35px;

    .content-top {
        justify-content: space-between;

        .top-left {
            display: flex;
        }

        .top-right {
            align-self: center;
        }
    }

    .content-bottom {
        display: flex;
        justify-content: space-between;

        .sec-title {
            margin-bottom: 23px;
        }

        .profile-info-list {
            .info-item {
                text-transform: capitalize;
                line-height: 26px;
                margin-bottom: 10px;
                color: #333333;

                &:last-child {
                    margin-bottom: 0;
                }

                &.email {
                    text-transform: initial;
                }

                &.address {
                    width: 185px;
                }
            }
        }
    }
}