/* Colors */
/* Font-size */
/* Border Radius */
/* Shadow */
.profile-container {
  width: 66vw;
  max-width: 990px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: row nowrap;
  padding-bottom: 50px;
}
.profile-container .form-container {
  width: calc(66vw - 50px - 310px);
  margin-left: 50px;
}
@media (max-width: 767px) {
  .profile-container .form-container {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1140px) {
  .profile-container {
    width: 90vw;
  }
  .profile-container .form-container {
    width: calc(90vw - 50px - 220px);
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .profile-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column nowrap;
    width: 90vw;
  }
}

.profile-card {
  width: 310px;
  height: 370px;
  background-color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: column nowrap;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 4% 0;
  flex-shrink: 0;
}
.profile-card .profile-card-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column wrap;
}
@media (min-width: 768px) and (max-width: 1140px) {
  .profile-card {
    width: 220px;
    height: 262.5806451613px;
    padding: 4% 0;
  }
}
@media (max-width: 767px) {
  .profile-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    width: 295px;
    height: 100px;
    padding: 13px 0;
    margin: 20px auto;
  }
}
.profile-card .profile-msg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .profile-card .profile-msg {
    width: 100px;
    margin-right: 15px;
  }
}
.profile-card .avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1140px) {
  .profile-card .avatar {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767px) {
  .profile-card .avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }
}
.profile-card .member-name {
  color: #111111;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .profile-card .member-name {
    font-size: 14px;
    margin-top: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
  }
}
.profile-card .type-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: column nowrap;
  padding: 40px 0 0;
}
@media (min-width: 768px) and (max-width: 1140px) {
  .profile-card .type-list {
    padding: 20px 0 0;
  }
}
@media (max-width: 767px) {
  .profile-card .type-list {
    padding: 0;
  }
}
.profile-card .type-list .type-item {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row nowrap;
}
.profile-card .type-list .type-item:not(:last-child) {
  margin-bottom: 15px;
}
.profile-card .type-list .type-item > div {
  color: #888888;
  font-size: 19px;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 1140px) {
  .profile-card .type-list .type-item > div {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .profile-card .type-list .type-item > div {
    font-size: 16px;
  }
}
.profile-card .type-list .type-item .icon {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .profile-card .type-list .type-item .icon {
    margin-right: 10px;
  }
}
.profile-card .type-list .type-item.type-personal .icon {
  background-image: url("../../assets/images/icon/icon_my_account_grey.svg");
}
.profile-card .type-list .type-item.type-baby .icon {
  background-image: url("../../assets/images/icon/icon_my_account_baby.svg");
}
.profile-card .type-list .type-item.active > div {
  color: #001489;
}
.profile-card .type-list .type-item.active.type-personal .icon {
  background-image: url("../../assets/images/icon/icon_my_account_blue.svg");
}
.profile-card .type-list .type-item.active.type-baby .icon {
  background-image: url("../../assets/images/icon/icon_my_acount_baby_blue.svg");
}

.profile-form .mobile-prefix, .profile-form .mobile-phone {
  font-size: 16px;
}
@media (max-width: 767px) {
  .profile-form .mobile-prefix, .profile-form .mobile-phone {
    font-size: 14px;
  }
}