@import '../../scss/variables.scss';

.cover_picture {
  height: 300px;
  background-color: #aaaaaa;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.profile-content-wrapper {

  .profile-picture {
    img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 100%;
      padding: 4px;
      background: #ffffff;
      box-shadow: 0 0 5px #aaa;
    }
  }

  .profile-info p {
    font-size: 14px;
  }

  .socials {
    i {
      font-size: 30px;
    }

    .icon-facebook {
      color: #375D93;
    }

    .icon-twitter {
      color: #43AFE9;
    }

    .icon-linkedin {
      color: #007EB3;
    }

    .icon-instagram {
      color: #f06292;
    }
  }

  .follow span {
    color: inherit;
  }

  .about-candidate-wrapper {
    .about-candidate {
      line-height: 20px;

      i {
        font-size: 28px;
      }
    }
  }

  .resume-section-list {
    ul {
      list-style: none;
      margin: 0;
      padding-right: 16px;

      li {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding-left: 16px;
        padding-bottom: 30px;
        position: relative;

        &:not(:last-child):before {
          content: '';
          position: absolute;
          left: 0px;
          top: 8px;
          width: 1px;
          height: 100%;
          background-color: $color-secondary;
        }

        &:after {
          content: '';
          position: absolute;
          left: -5px;
          top: 8px;
          width: 12px;
          height: 12px;
          border: 1px solid $color-secondary;
          border-radius: 100%;
          background-color: #ffffff;
        }

        a {
          margin-left: 10px;
        }

        .portfolio-info {
          img {
            height: 100px;
            object-fit: cover;
            width: 100px;
          }
        }
      }
    }
  }

  .candidate-portfolio {
    .portfolio-info {
      img {
        border: 1px solid #aaa;
        height: 200px;
        object-fit: cover;
        padding: 2px;
        width: 100%;
      }

      i {
        font-size: 20px;
      }
    }
  }
}

.employer-email-web-tel a {
	font-size: 25px;
}
.employer-email-web-tel > div {
	gap: 20px;
}

@media screen and (min-width: 768px) {
  .profile-content-wrapper {
    margin-top: -100px;
  }
}