.content {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.webcard_item {
    height: 580px;
    width: 320px;
    background-color: #fff;
    margin: 0 auto;
    border-radius: 40px;
    padding: 30px 20px 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: relative;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;

    .avatar_content {
        img {
            height: 120px;
            width: 110px;
            object-fit: cover;
            border-radius: 12px;
        }
    }

    .profile_content {
        width: 100%;
    }

    .personal_content {
        width: 100%;
    }

    .social_content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

        i {
            height: 38px;
            width: 38px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #eeeeee;
            border-radius: 10px;
            margin: 0 5px;
            color: #4f4e4e;
            font-size: 19px;
            cursor: pointer;
        }
        .fa-facebook-f{
            background-color: #3b5998;
            color: #fff;
        }
        .fa-twitter{
            background-color: #00acee;
            color: #fff;
        }
        .fa-instagram{
            background-color: #d66829;
            color: #fff;
        }
        .fa-linkedin-in{
            background-color: #0077b5;
            color: #fff;
        }
    }
    .bottom_content{
        position: absolute;
        bottom: 7px;
        left: 0;
        width: 100%;
        z-index: 2;
        text-align: center;
        span{
           font-size: 13px;
           color: #888888;
        }
    }
}

// Content Button
.profile_content_button {
    height: 45px;
    width: 200px;
    background-color: #f3f3f3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border: 1px solid #c3c3c331;
    overflow: hidden;
    margin: 10px auto;
    cursor: pointer;
    &:hover{
        background-color:rgb(231, 232, 236);
    }
    .button_icon {
        i {
            height: 45px;
            width: 50px;
            background-color: rgb(204, 209, 222);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333;
            position: relative;
            &::after{
                position: absolute;
                content: '';
                height: 16px;
                width: 16px;
                background-color: rgb(204, 207, 215);
                right: -5px;
                top: 50%;
                transform: translateY(-50%) rotate(45deg);
            }
        }
    }

    .button_text {
        text-align: center;
        width: 100%;
        font-size: 14px;
        color: #333;
        font-weight: 500;
    }
}

// Persona Info 
.personal_info{
    text-align: center;
    li{
        font-size: 14px;
        color: #4f4e4e;
        font-weight: 400;
        padding-bottom: 5px;
        word-wrap: break-word;
        i{
            margin-right: 4px;
            font-size: 14px;
            color: #6c6a6a;
        }
    }
}


.input_item {
    position: relative;
    // height: 50px;
    // margin-bottom: 15px;
    margin-bottom: 8px;

    .form-control {
        width: 100%;
        border: none;
        border-radius: 0px;
        height: 48px;
        // height: 50px;
        // border-bottom: 1px solid red;
        background-color: #f3f3f3;
        border-radius: 12px;
        padding: 15px 50px 10px 10px;
        font-size: 14px;

        &:focus {
            outline: 0;
            box-shadow: none;
        }

        &::placeholder {
            font-size: 15px;
        }
    }

    label {
        font-size: 14px;
        padding: 12px 10px;
    }

    .form-control:not(:placeholder-shown)~label {
        // opacity: .65;
        transform: scale(.75) translateY(-.5rem) translateX(.15rem);
    }

    .range_button {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
    }

    .check-range[type="checkbox"] {
        position: relative;
        width: 28px;
        -webkit-appearance: none;
        height: 13px;
        background: rgb(226, 228, 228);
        outline: none;
        border-radius: 30px;
        box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
        transition: 0.5s;
    }

    .check-range[type="checkbox"]:checked {
        background: #00ceff;
    }

    .check-range[type="checkbox"]:before {
        content: '';
        position: absolute;
        width: 13px;
        height: 13px;
        left: -2px;
        background: #fff;
        box-shadow: 0px 1px 6px 1px gainsboro;
        border-radius: 50%;
        top: 0px;
        transform: scale(1.1);
        transition: 0.5s;
        cursor: pointer;

    }

    .check-range[type="checkbox"]:checked:before {
        left: 18px;
    }
}