.profile-image {
  text-align: center;
}

.profile-image a {
  border-radius: 50%;
  border: 2px solid #959595;
}

.profile-image a img {
width: 92px;
    height: 92px;
  border-radius: 50%;
  border: 3px solid var(--white);
}

.profile-card {
  position: relative;
}

.profile-card .user-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 50%;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.profile-card .user-action li {
  margin: 5px 0px;
}

.payment-card {
  position: relative;
}

.payment-card .user-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.modal-form {
  width: 400px;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 575px) {
  .modal-form {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .profile-image {
    margin-bottom: 20px;
  }
}
