@use "../../assets/scss/customVariables.scss" as *;

.profilePart {
  width: 319px;
  min-height: 492px;
  display: flex;
  flex-direction: row;
  align-items: center;

  .socials {
    width: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;

    .socialButton {
      width: 50px;
      height: 50px;
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
      box-shadow: 0 0 10px #00000012;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      .content {
        width: 22px;
        height: 22px;
      }
    }
  }


  .container {
    width: 100%;
    min-height: 492px;
    box-shadow: 0 0 10px #00000012;
    border-radius: 13.42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;

    .image {
      width: 100%;
      height: 193px;
      background-color: #e7e7e7;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .info {
      width: 100%;
      flex: 1;
      box-sizing: border-box;
      padding: 17px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;

      .texts {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        border-bottom: 1px solid #DDDDDD;

        & > p {
          font-size: 17.27px;
          line-height: 29.6px;
          font-weight: 700;
          color: $primary-color;
          display: flex;
          gap: 5px;
        }
      }

      .name {
        font-size: 19.86px;
        line-height: 45.55px;
        font-weight: 700;
        color: $primary-color;
      }
      
      .label {
        font-size: 19.86px;
        line-height: 45.55px;
        font-weight: 500;
        color: #5E5E5E;
      }
      .phone {
        font-size: 16.66px;
        line-height: 45.55px;
        font-weight: 400;
        color: #5E5E5E;
      }

      .button {
        width: 160px;
        height: 40px;
        border-radius: 100px;
        background-color: #4271D6;
        color: #fff;
      }

    }
  }
}