﻿.profile-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
}


.profile-main-menu-wrapper {
    margin-top: 50px;
    position: relative;
    display: grid;
    width: 100%;
    gap: 15px;
    height: 55px;
    /* overflow: hidden; */
    color: #fff;
    padding: 10px 25px;
}

    .profile-main-menu-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../images/wallpaper01.jpg);
        background-color: rgba(0, 0, 0, 0.2);
        background-blend-mode: overlay;
        z-index: 1;
        background-size: cover;
        background-position: center;
    }

.profile-title-page {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 3%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.profile-main-content {
    width: 100%;
    height: calc(100vh - 105px);
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: center;
    margin-top: 105px;
}

.profile-main-top-content {
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: #F5F5F5;
}

.profile-main-botom-content {
    width: 100%;
    height: 100%;
}

.profile-agent-projectlist-wrapper {
    width: 100%;
    max-width: 960px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    gap: 15px;
}

.agent-projectlist-item {
    width: 100%;
    display: grid;
    grid-template-rows: 50px auto;
    align-items: center;
    position: relative;
}

.agent-seemore-wrapper {
    padding-bottom: 45px !important;
}

.agent-projectlist-item h3 {
    width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #DCDCDC;
    font-weight: 500;
    font-size: 16px;
}

.agent-projectlist-wrapper {
    width: 100%;
    display: grid;
    gap: 15px;
}

.agent-projectlist-seemore {
    width: 135px;
    height: 30px;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFB606;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
}

.agent-total-listing {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .agent-total-listing h4 {
        font-size: 13px;
        font-weight: 600;
        color: #000;
    }

    .agent-total-listing small {
        font-size: 10px;
        color: #000;
        font-weight: 500;
    }

.agent-project-image-container {
    width: 100%;
    height: 155px;
    overflow: hidden;
    border-radius: 15px;
}

    .agent-project-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.profile-agent-info-wrapper {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    align-items: center;
}

.agent-image-container {
    width: 125px;
    height: 125px;
    position: relative;
}

    .agent-image-container img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.change-profile-image {
    position: absolute;
    bottom: 5px;
    right: -5%;
    width: 35px;
    height: 35px;
    background-color: #FFB606;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.remove-profile-image {
    position: absolute;
    bottom: 5px;
    right: -5%;
    width: 35px;
    height: 35px;
    background-color: red;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.change-profile-image svg, .remove-profile-image svg {
    height: 18px;
    fill: #fff;
}

.agent-profile-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.agent-profile-name {
    width: 100%;
  /*  height: 45px;*/
    display: flex;
    justify-content: space-between;
}

    .agent-profile-name h1 {
        font-size: 26px;
        font-weight: 500;
        color: #000;
        text-transform: capitalize;
    }

.edit-agent-profile {
    width: 135px;
    height: 30px;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFB606;
    border-radius: 5px;
    cursor: pointer;
}

.agent-position-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.agent-profile-container h2 {
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.agent-profile-container h3 {
    font-size: 12px;
    color: #696969;
    opacity: .8;
    font-weight: 500;
}

.agent-social-media-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 2px solid #DCDCDC;
}

.prc-number-cont {
    display: flex;
    gap: 5px;
    font-size: 13px;
}

    .prc-number-cont span {
        color: #696969;
        opacity: .8;
        font-weight: 600;
    }

    .prc-number-cont small {
        color: #000;
        font-weight: 500;
        font-size: 13px;
    }

.profile-socialmedia-icon {
    display: flex;
    gap: 25px;
    align-items: center;
}

    .profile-socialmedia-icon a {
        text-decoration: none;
    }

        .profile-socialmedia-icon a svg {
            height: 15px;
            fill: #696969;
        }

.agent-contant-info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
}

.agent-contact-item {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

    .agent-contact-item span {
        color: #696969 !important;
    }

    .agent-contact-item svg {
        height: 15px;
        fill: #696969;
    }

.edit-profile-container{
    width:100%;
    height:100%;
}

.edit-profile-wrapper {
    width: 100%;
    height:100%;
    max-width: 960px;
    background-color: #F5F5F5;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-rows: 125px 1fr;
    gap: 15px;
    padding: 10px 15px;
}

.edit-profile-header{
    width:100%;
    height:100%;
    display: grid;
    grid-template-columns: 155px 1fr;
    align-items: center;
}

.user-name-wrapper{
    width:100%;
    height:100%;
    display:flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    justify-content: center;
}

.user-name-wrapper h1{
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.edit-user-form {
    background-color: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
}

.edit-user-item{
    width:100%;
    display: grid;
    grid-template-rows: 45px auto;
    gap: 25px;
}

.edit-user-header{
    width:100%;
    height:100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    background-color: #808080;
    padding: 0 10px;
}

.edit-user-icon{
    display:flex;
    gap: 10px;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
}

.edit-user-icon svg{
    height: 20px;
    fill: #fff;
}

.slide-up-container{
    display:flex;
    align-items: center;
    justify-content: center;
}

.slide-up-container svg{
    height: 22px;
    fill: #fff;
}

.edit-user-input-wrapper{
    width:100%;
    display:flex;
    flex-direction: column;
}

.edit-user-input-cont{
    width:100%;
    height: 85px;
    display:grid;
    grid-template-rows: auto 1fr;
    gap: 8px;
}

.edit-user-input-cont label{
    font-size: 12px;
    font-weight: 500;
    color: #808080;
    font-weight: 600;
}

.edit-user-input-cont input{
    width:100%;
    height:38px;
    border: 2px solid #DCDCDC;
    border-radius: 5px;
    padding: 10px;
}

.edit-user-input-cont input::placeholder{
    color: #696969;
    opacity: .5;
}

.edit-user-grid-column-cont{
    width:100%;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.edit-user-save-btn {
    width: 135px;
    height: 30px;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFB606;
    border-radius: 5px;
    cursor: pointer;
    align-self: end;
    justify-self:end;
}


@media only screen and (min-width: 1025px){
    .profile-agent-info-wrapper {
        grid-template-columns: 155px 1fr;
    }
    .agent-projectlist-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 767px) {
    .profile-agent-info-wrapper {
        grid-template-rows: 155px 1fr;
    }

    .agent-image-container {
        align-self: center;
        justify-self: center;
    }

    .profile-agent-projectlist-wrapper{
        padding: 10px 15px;
    }

    .top-header {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .agent-projectlist-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}