/* CSS Document */
* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}
body {
  background-color: var(--main-color-darker, #223654);
  margin: 0;
}
.content {
  max-width: 400px;
  width: 100%;
  margin: 50px auto 15px auto;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 25px;
}

.content h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 15px 0;
  color: #3b4252;
}
.content h1 .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #9196a5;
  margin-left: 5px;
  font-size: 14px;
}
.content h1 .icon svg {
  fill: #fff;
}
.content .login-txt {
  margin: 0;
  padding: 15px 0 25px 0;
  color: #3b4252;
}
.content .facebook-login-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #3b5998;
  cursor: pointer;
}
.content .facebook-login-btn .icon {
  display: inline-flex;
  height: 100%;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  background-color: #344e86;
  margin-right: 15px;
}
.content .facebook-login-btn .icon svg {
  fill: #fff;
}
.content .facebook-login-btn:hover {
  background-color: #385591;
}
.content .facebook-login-btn:hover .icon {
  background-color: #314a7e;
}
.content .profile-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0 25px 0;
}
.content .profile-picture img {
  width: 50px;
  max-width: 100px;
  border-radius: 50%;
}
.content .profile-details {
  display: flex;
  flex-flow: column;
  padding: 10px 0;
}
.content .profile-details > div {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f2f5;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.content .profile-details > div .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #4A98D9;/*#9196a5*/;
  margin-right: 15px;
  font-size: 14px;
}
.content .profile-details > div .icon svg {
  fill: #fff;
}
.content .profile-details > div .icon img {
  display: block;
  width: 20px;
  height: 20px;
}
.content .profile-details > div .icon.icon-plain {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.content .profile-details > div strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.content .profile-details > div:last-child {
  border-bottom: none;
}
.content .logout-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #db5d36;
  cursor: pointer;
}
.content .logout-btn .icon {
  display: inline-flex;
  height: 100%;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  background-color: #d24e26;
  margin-right: 15px;
}
.content .logout-btn .icon svg {
  fill: #fff;
}
.content .logout-btn:hover {
  background-color: #d9562d;
}
.content .logout-btn:hover .icon {
  background-color: #c94b24;
}


.content .home-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  background-color: #04AA6D;
  cursor: pointer;
}
.content .home-btn .icon {
  display: inline-flex;
  height: 100%;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  background-color: #028E5A;
  margin-right: 15px;
}
.content .home-btn .icon svg {
  fill: #fff;
}
.content .home-btn:hover {
  background-color: #059460;
}
.content .home-btn:hover .icon {
  background-color: #00764A;
}

.profile-help-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.45;
  color: #5a6673;
}

.profile-help-tip-trigger {
  color: #fff;
  background-color: var(--highlight-color, #d9822b);
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
  box-shadow: inset -1px -1px 1px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  user-select: none;
  flex: 0 0 14px;
}

.profile-help-tip-label {
  font-size: 12px;
  color: var(--main-color-darker, #223654);
  text-decoration: underline dotted;
  cursor: pointer;
}

.profile-help-tip-popup {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 50;
  width: min(270px, calc(100vw - 80px));
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff8ef;
  border: 1px solid #efc38f;
  box-shadow: 0 8px 22px rgba(34, 54, 84, 0.16);
  color: #4b3a23;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.12s ease, transform 0.12s ease, visibility 0.12s ease;
}

.profile-help-tip-popup::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 14px;
  width: 12px;
  height: 12px;
  background: #fff8ef;
  border-left: 1px solid #efc38f;
  border-top: 1px solid #efc38f;
  transform: rotate(45deg);
}

.profile-help-tip:hover .profile-help-tip-popup,
.profile-help-tip:focus-within .profile-help-tip-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-inline-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.profile-inline-form input[type="text"] {
  width: 50%;
  min-width: 0;
}

.profile-inline-form button {
  width: 50%;
  min-width: 0;
  margin-top: 0;
}
