:root {
  /* Font colors */
  --tm-kr-color-primary-100: #1da1f2;
  --tm-kr-color-neutrals-grey-100: #212427;
  --tm-kr-color-neutrals-grey-80: #5b5b5d;
  --tm-kr-color-neutrals-grey-70: #76787a;
  --tm-kr-color-neutrals-grey-60: #949494;
  --tm-kr-color-neutrals-grey-20: #f4f4f4;
  --tm-kr-color-semantic-error-100: #ff6666;

  /* Backgrounds */
  --tm-kr-color-semantic-success-100: #65b66d;
  --tm-kr-color-base-light-100: #ffffff;
  --tm-kr-color-pastels-seaPink-110: #eb7160;
  --tm-kr-color-semantic-error-10: #ffebeb;

  /* Font weights */
  --tm-kr-font-weight-regular: 400;
  --tm-kr-font-weight-medium: 500;
  --tm-kr-font-weight-semi-bold: 600;
  --tm-kr-font-weight-bold: 700;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
.border-blue {
  border: 1px solid #1da1f2 !important;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

html,
body {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5em;
  background-color: #f7f9fc;
}
input:focus {
  outline: none !important;
}
.bold {
  font-weight: 600;
  color: var(--tm-kr-color-neutrals-grey-100);
}
/* .zipy-block {
  height: 100%;
} */
.w100 {
  width: 100%;
}
.flex {
  display: flex;
}
.column {
  flex-direction: column;
}
.flexEnd {
  justify-content: flex-end;
}
.spaceBetween {
  justify-content: space-between;
}
.spaceAround {
  justify-content: space-around;
}
.justifyCenter {
  justify-content: center;
}
.widthMaxContent {
  width: max-content;
}
.alignCenter {
  align-items: center;
}
.primary-color {
  color: #1f3965;
}
.font-wt-600 {
  font-weight: 600;
}
.blue-color {
  color: #1da1f2;
}
.mt-24 {
  margin-top: 1.5rem;
}
.mb-24 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 0.5rem !important;
}
.mb-20 {
  margin-bottom: 1.25rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-12 {
  margin-bottom: 0.75rem;
}
.mt-8 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 0.25rem;
}
.mt-0 {
  margin-top: 0 !important;
}
.noLeftRightPadding {
  padding-left: 0;
  padding-right: 0;
}
.modal-title {
  font-size: 14px;
  line-height: 24px;
}
.password-container {
  position: relative;
}
.password-container .password-input {
  padding-right: 42px;
}
.page-footer {
  padding-bottom: 1.25rem;
}
.password-toggle {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 100%;
  cursor: pointer;
}
#password-strength-label {
  color: #eb7160;
  font-size: 12px;
  line-height: 16px;
}
.success {
  color: #4a9c52 !important;
}
.danger {
  color: #eb7160;
}
.password-strength-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px 0;
  column-gap: 4px;
}
.password-strength-bar {
  height: 6px;
  background: var(--tm-kr-color-neutrals-grey-20);
  border-radius: 4px;
}
.password-checks {
  color: var(--tm-kr-color-neutrals-grey-60);
  font-size: 12px;
}
.password-checks > div {
  column-gap: 10px;
}
.successBackground {
  background: var(--tm-kr-color-semantic-success-100);
}
.errorBackground {
  background: var(--tm-kr-color-pastels-seaPink-110);
}
.alert-container {
  background-color: var(--tm-kr-color-semantic-error-10);
  border-radius: 0.75rem;
  padding: 1.25rem;
  align-items: flex-start;
  color: var(--tm-kr-color-neutrals-grey-80);
  margin-bottom: 50px;
}
.alert-container .alert-icon {
  margin-top: 0.25rem;
  margin-right: 1.25rem;
}
.error-indication {
  color: var(--tm-kr-color-pastels-seaPink-110);
  font-size: 14px;
  line-height: 16px;
}
.width1004 {
  width: 1004px !important;
  padding: 2.68rem 3.43rem !important;
}
.accounts-width1004 {
  width: 880px !important;
}
.extra-width-block {
  width: 2rem;
}
.cross-btn {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  cursor: pointer;
}
.error-text {
  color: #ff5e5e;
  font-size: 12px;
  line-height: 1.125rem;
  font-weight: 400;
  display: none;
}
.error-text-2 {
  color: var(--tm-kr-color-semantic-error-100);
  font-size: 14px;
}
.p-action-user {
  color: var(--tm-kr-color-neutrals-grey-60);
  font-size: 14px;
  line-height: 20px;
  margin-top: 0.5rem;
}
.p-info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
  display: flex;
  justify-content: center;
}
#email-input-icon {
  padding: 0 0 0 14px;
  background-color: var(--tm-kr-color-neutrals-grey-20);
  display: flex;
  align-items: center;
  border: 1px solid #dbe2ea;
  border-radius: 8px 0 0 8px;
  border-right-width: 0;
}
.noLeftBorder {
  border-left-width: 0 !important;
  border-radius: 0 8px 8px 0 !important;
}
.toast-body {
  display: flex;
  column-gap: 12px;
}
.success-text {
  color: #36b37e;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  display: none;
}
.displayElement {
  display: block;
}
.hidden {
  display: none !important;
}
.orange-bg-box {
  background-color: #ea8804;
  color: #ffffff;
  padding: 0.25rem;
  border-radius: 4px;
  font-size: 0.75rem;
  line-height: 0.75rem;
}

.account-type-box {
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.current-account-type-box {
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  display: block;
  width: 3rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.switch-modal-box {
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.green-bg-box {
  background-color: #36b37e;
}

.tpay-bg-box {
  background-color: #1da1f1;
}

.primary-bg-box {
  background-color: #1f3965;
}

.yellow-bg-box {
  background-color: #d7c419;
}

.group-owner-bg-box {
  background-color: #6ec2d4;
}

.deactivated-btn {
  cursor: default;
  background-color: #dbe2ea !important;
  color: #6b82ab !important;
}

.activated-btn {
  cursor: pointer;
  background-color: #1ad1f2 !important;
  color: #ffffff;
}

.full-page {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-header {
  background: #ffffff;
  box-shadow: 0px 1px 1px rgba(157, 182, 217, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  margin: 1em 4em;
}

.page-header-webview {
  background-color: transparent;
  box-shadow: none;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
  display: block;
}

.logo-container-webview {
  margin: 0;
}

.help-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 4em;
  cursor: pointer;
}

.help-button img {
  margin-right: 10px;
  height: 1.2rem;
}

.mobile-help-button {
  color: #1da1f2;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}

.content-container {
  background: #ffffff;
  box-shadow: 0px 8px 12px rgba(157, 182, 217, 0.15);
  border-radius: 8px;
  flex-grow: 1;
  margin: 4rem 2rem;
  width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.content-heading {
  margin-top: 24px;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 100%;
  text-align: center;
  color: var(--tm-kr-color-neutrals-grey-100);
  position: relative;
}

.heading-subtitle {
  font-style: normal;
  font-weight: normal;
  font-size: 1em;
  line-height: 130%;
  color: var(--tm-kr-color-neutrals-grey-60);
  text-align: center;
  margin-top: 0.9rem;
}

.input-label {
  color: var(--tm-kr-color-neutrals-grey-70);
  font-weight: var(--tm-kr-font-weight-medium);
  line-height: 16px;
  font-size: 12px;
}

.account-cont {
  position: relative;
  padding: 1.9rem;
  padding-bottom: 1.25rem;
}
.account-create-new {
  position: absolute;
  right: 1.9rem;
  top: 1.9rem;
  color: #1da1f2;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5rem;
  cursor: pointer;
}
.account-cont-h {
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 100%;
  color: #212427;
  position: relative;
}

.account-cont-sub {
  text-align: left !important;
  margin-top: 6px;
  font-size: 14px;
  line-height: 20px;
  color: var(--tm-kr-color-neutrals-grey-70);
}

.sub-heading {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #1f3965;
  font-weight: 600;
  text-align: center;
  margin-top: 3rem;
}
.sub-subtitle {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #1f3965;
  font-weight: 400;
  text-align: center;
}

.avatar-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.user-avatar {
  /* background-image: url(/img/default-profile-pic.webp); */
  width: 84px;
  height: 84px;
  background-size: cover;
  border-radius: 100px;
  position: relative;
  object-fit: cover;
}

#user-edit-avatar {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
#send-otp-btn-id {
  margin-top: 8px;
}
.avatar-edit-icon {
  position: absolute;
  top: 5px;
  right: 20px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  object-fit: cover;
}

.input-container {
  margin-top: 24px;
}

.input-field {
  margin-bottom: 1.5rem;
  position: relative;
}

.input-field label {
  display: block;
  font-style: normal;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #1f3965;
  margin-bottom: 0.5rem;
  margin-left: 0.2rem;
}
.input-img {
  position: absolute;
  right: 1rem;
  top: 26%;
  height: 1.5rem;
  width: 1.5rem;
}

.input-name-img {
  position: absolute;
  right: 1rem;
  top: 40%;
  height: 1.5rem;
  width: 1.5rem;
}

.input-field label sup {
  color: red;
}

.input-field input {
  width: 100%;
  border: 1px solid #dbe2ea;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.25rem;
  color: #1f3965;
  background-color: var(--tm-kr-color-neutrals-grey-20);
}

.input-field input:disabled,
.cursor-not-allowed {
  cursor: not-allowed !important;
}

.input-field input::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #c6cddb;
}
.input-field-user-name-desc {
  margin-top: 4px;
  color: #a6b4cd;
  font-size: 0.85rem;
  line-height: 1rem;
  font-size: 400;
  margin-left: 5px;
}

.submit-button.enabled {
  /* position: absolute;
    bottom: 1rem; */
  background: #1da1f2;
  border-radius: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #ffffff;
  border: none;
  padding: 12px;
  margin-top: 1.5rem;
  cursor: pointer;
  width: 100%;
  /* margin: 0 auto; */
}

.otp-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.otp-receiver-info {
  display: flex;
  justify-content: center;
}

#otp-receiver {
  color: var(--tm-kr-color-neutrals-grey-80);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  width: 90%;
}

#user-input {
  padding-right: 12px;
}

input#user-input::placeholder,
.input-field input::placeholder {
  font-size: 14px;
}

.cta-btn {
  color: var(--tm-kr-color-primary-100);
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.otp-digit-input {
  background: #ffffff;
  border: 1px solid #dbe2ea;
  box-sizing: border-box;
  border-radius: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  color: #1f3965;
  width: 3rem;
  padding: 0.75rem;
  text-align: center;
}

.otp-digit-input::-webkit-inner-spin-button,
.otp-digit-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.resend-timer-container {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b82ab;
  padding: 8px 14px;
}

#resend-timer-container {
  font-size: 14px;
}

.resend-container {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: right;
  color: #1da1f2;
  cursor: pointer;
  padding-right: 0;
}

.resend-button {
  cursor: pointer;
}

.get-started {
  text-align: center;
  margin-top: 62px;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
}

.language-change-container {
  float: right;
  margin-top: 0px;
  margin-right: 131px;
  display: flex;
}

.dropdown {
  top: 0;
  margin-top: 29px;
  margin-right: 166.8px;
  width: 157px;
}

.continue-with-google {
  margin: auto;
  margin-top: 48px;
  /* width: 360px; */
  display: flex;
  justify-content: center;
}

.google-logo {
  /* padding-left: 87.19px; */
}

.google-font {
  font-size: 14px;
  color: #1da1f2;
  /* left: calc(50% - 155px / 2 + 16.5px); */
  text-align: center;
  bottom: 13px;
  /* padding-left: 8.29px; */
  /* padding-right: 86px; */
  /* width: 155px; */
}

.continue-with-truecaller {
  margin: auto;
  margin-top: 20px;
  background-color: white;
  border-radius: 6px;
  border: 1px solid #1da1f2;
  width: 90%;
  max-width: 360px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.continue-with-apple {
  margin: auto;
  margin-top: 20px;
  border-radius: 6px;
  width: 90%;
  max-width: 360px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  color: #ffffff !important;
}

.truecaller-logo {
  /* padding-left: 199.5px - 93.5px; */
  /* padding-right: 93.53px; */
}

.truecaller-font {
  font-size: 14px;
  color: #1da1f2;
  /* left: calc(50% - 155px / 2 + 16.5px); */
  text-align: center;
  bottom: 13px;
  /* padding-left: 93.5px; */
  /* width: 155px; */
}

.apple-font {
  font-size: 14px;
  color: #ffffff;
  /* left: calc(50% - 155px / 2 + 16.5px); */
  text-align: center;
  bottom: 13px;
}

.or-line-1 {
  display: inline-block;
  position: relative;
  margin-top: 54px;
  margin-left: 106px;
  width: 155px;
  height: 1px;
  background-color: #dbe2ea;
}

.mid-hr {
  display: flex;
}

.or-hr {
  display: inline-block;
  padding: 6px;
  background-color: #f2f4f8;
  border-radius: 24px;
  margin-top: 40px;
  text-align: center;
}

.or {
  align-items: center;
  font-size: 18px;
  color: #6b82ab;
  bottom: 4px;
}

.or-line-2 {
  display: inline-block;
  position: relative;
  margin-top: 53px;
  width: 155px;
  height: 1px;
  background-color: #dbe2ea;
  margin-right: 106px;
}

#main-block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#mobile-number-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.social-login-container {
  padding-bottom: 1.25rem;
}

.mobile-login {
  align-items: center;
  width: 360px;
  margin: 40px auto 0;
}

.enter-mobile-text {
  color: var(--tm-kr-color-neutrals-grey-70);
  font-size: 12px;
  line-height: 18px;
  margin-top: 1.5rem;
}

.input-box {
  display: flex;
  width: 100%;
  margin-top: 4px;
  color: #a6b4cd;
}

.flag {
  display: inline-block;
}

.isd-code {
  display: inline-block;
  margin-left: 49px;
  color: black;
  font-size: 14px;
  vertical-align: middle;
}

.down-arrow-logo {
  display: inline-block;
  margin-left: 8px;
}

.tnc-pp {
  font-weight: 400;
  font-size: 12px;
  color: #6b82ab;
}

a:link {
  color: #1da1f2;
  text-decoration: underline;
  margin-left: 2px;
  margin-right: 2px;
}

a:visited {
  color: #1da1f2;
  text-decoration: underline;
}

.get-otp-btn {
  width: 100%;
  height: 44px;
  margin-top: 32px;
  background-color: #1da1f2;
  border-radius: 8px;
  border: 0px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.link-your-account-txt {
  margin-left: 0.5rem;
  font-size: 12px;
  line-height: 16px;
  color: #1da1f2;
  cursor: pointer;
  margin-top: 0.2rem;
}

.details-form {
  padding: 0 2rem;
}

.isd-code-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #1f3965;
  border: 1px solid #dbe2ea;
  border-radius: 8px 0 0 8px;
  appearance: none;
  padding-left: 12px;
  padding-top: 1px;
  padding-bottom: 1px;
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/select-dropdown.png');
  background-position: right 12px center;
  background-size: 8px;
  background-repeat: no-repeat;
  background-color: var(--tm-kr-color-neutrals-grey-20);
  padding-right: 25px;
  position: relative;
  cursor: pointer;
}
.isd-code-dropdown-cont {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  max-height: 18rem;
  background: var(--tm-kr-color-neutrals-grey-20);
  border-radius: 8px;
  box-shadow: 0px 8px 12px rgba(157, 182, 217, 0.15);
  z-index: 10;
  overflow: auto;
  border: 1px solid #dbe2ea;
}

.isd-code-dropdown-tab {
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 5px;
  border-bottom: 1px solid #dbe2ea;
}

.flag-img {
  width: 20px;
  height: 15px;
}

#selected-isd {
  font-size: 14px;
}

.input-box .phone-number {
  flex-grow: 1;
  border: 1px solid #dbe2ea;
  background-color: var(--tm-kr-color-neutrals-grey-20);
  border-radius: 8px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  min-height: 46px;
  height: 46px;
  max-height: 46px;
  line-height: 130%;
  color: #1f3965;
  padding-left: 12px;
  width: inherit;
}
.phone-number::-webkit-inner-spin-button,
.phone-number::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.phone-number::placeholder {
  color: #a6b4cd;
  font-size: 1.125rem;
}
.phone:focus {
  border: 1px solid #dbe2ea !important;
}
.try-our-web-login {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1da1f2;
  cursor: pointer;
}
.try-our-web-login span {
  border-bottom: 1px solid #1da1f2;
}
.heading-text {
  margin-top: 62px;
  margin-left: 187px;
}

.heading-text-1 {
  display: contents;
  font-size: 24px;
  font-weight: bold;
}

.heading-text-2 {
  font-weight: normal;
  margin-top: 7px;
  font-size: 14px;
  font-weight: bold;
  color: #6b82ab;
}

.back-btn-otp-screen {
  left: 5rem;
  position: absolute;
  top: 10%;
}

.profiles {
  display: block;
  justify-content: center;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  padding-left: 30px;
  /* margin-left: 30px; */
  overflow: visible;
}

.profile-box {
  width: calc(50% - 2.35rem);
  float: left;
  border-radius: 12px;
  float: left;
  margin-right: 1.25rem;
  margin-bottom: 1.5rem;
}
/* .profile-box:nth-child(even) {
  margin-left: 0%;
  margin-right: 0%;
} */
.add-new-profile-box {
  float: left;
  height: 4.5rem;
  background-color: #ffffff;
  color: #1da1f2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 7px;
  font-size: 1rem;
  line-height: 1rem;
  border: 1px solid #f2f4f8;
}
.profile-school-name {
  margin-top: 7px;
  margin-bottom: 7px;
  color: #6b82ab;
  font-size: 0.75rem;
  line-height: 0.75rem;
  text-align: center;
}

.profile-cont {
  position: relative;
  border-radius: 12px;
  padding: 7px;
  padding: 1rem 0rem 0.5rem 0rem;
  background-color: var(--tm-kr-color-neutrals-grey-20);
}

.profile-data-cont {
  display: flex;
  padding: 0rem 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
}

.profile-institute-names {
  border-top: 1px solid #cccccc;
  color: #212427;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.125rem;
  padding: 0.5rem 1.25rem 0rem 1.25rem;
}
.profile-institute-empty {
  color: #949494;
}

.profile-label {
  position: absolute;
  right: 26px;
  top: 20px;
  width: 40px;
  display: flex;
  justify-content: right;
  align-items: center;
  width: 95px;
}
.profile-label img {
  height: 0.75rem;
  margin-left: 1rem;
  transform: rotate(270deg);
}

.profile-label span {
}

.profile-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-avatar {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  padding: 2px;
  background-color: #ffffff;
  /* background-image: url(/img/default-profile-pic.webp); */
  background-size: cover;
}

.default-profile-dp {
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-name {
  width: calc(12rem);
  margin-top: 5px;
  font-size: 0.85rem;
  line-height: 1.25rem;
  font-weight: 600;
  padding-left: 10px;
  color: #212427;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.profile-user-name {
  width: calc(9.25rem);
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: 400;
  padding-left: 10px;
  color: #6b82ab;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.mobile-only {
  display: none;
}

.mid-seperate-line {
  width: 360px;
  text-align: center;
  border-bottom: 1px solid #dbe2ea;
  line-height: 0.1em;
  margin: 10px 0 20px;
  margin: auto;
  margin-top: 40px;
}

.mid-seperate-line span {
  background: var(--tm-kr-color-neutrals-grey-20);
  border: 1px solid #e8e8e8;
  border-radius: 40px;
  padding: 6px 14px;
  color: #6b82ab;
  font-size: 0.75rem;
}
.persona-subtitle {
  margin-bottom: 0rem;
}
.delete-button-container {
  position: absolute;
  bottom: 1rem;
  width: calc(100% - 2rem);
  display: flex;
  justify-content: center;
}
.delete-button-container button {
  color: #ff5e5e;
  background-color: #ffffff;
  border: 1px solid #ff5e5e;
  font-size: 1rem;
  line-height: 1.25rem;
  min-width: 328px;
  padding: 0.875rem 0rem;
  border-radius: 12px;
  cursor: pointer;
}

.benefits-container {
  background-color: #f7f9fc;
  max-width: 396px;
  width: calc(100% - 4.5rem);
  padding: 1.25rem;
  margin: auto;
  margin-top: 2rem;
  border-radius: 12px;
}
.benefits-heading {
  color: #1f3965;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}
.benefits-para {
  height: 3.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #6b82ab;
  font-size: 0.9rem;
  line-height: 1rem;
}
.benefits-email-merge-btn {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.divider {
  width: 100%;
  border-top: 1px solid #e8e8e8;
}

.flex-column-full {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media only screen and (max-width: 1024px) {
  .width1004 {
    width: calc(100% - 2rem) !important;
    padding: 1rem !important;
    background-color: #f7f9fc !important;
  }
  .accounts-width1004 {
    width: calc(100% - 2rem) !important;
    padding: 1rem !important;
    background-color: #ffffff !important;
  }
}

@media only screen and (max-width: 360px) {
  .profile-name {
    width: 5rem;
  }
}
@media only screen and (max-width: 700px) {
  .full-width {
    width: 100% !important;
  }
  .account-cont {
    padding: 0px;
    padding-left: 10px;
    padding-bottom: 10px;
  }
  .benefits-container {
    background-color: #ffffff;
  }
  .persona-subtitle {
    margin-bottom: 2rem;
  }
  .sub-subtitle {
    width: 80%;
    margin: auto;
    margin-top: 0.875rem;
    margin-bottom: 0;
  }
  .mid-seperate-line {
    width: 92%;
  }

  .separatorLine {
    width: 92%;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .page-header {
    background-color: transparent;
    box-shadow: none;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
    padding: 10px;
  }

  .logo-container {
    margin: 5px;
  }

  .account-create-new-mob {
    background-color: var(--tm-kr-color-neutrals-grey-20);
    height: 2.25rem;
    width: 2.25rem;
    position: absolute;
    top: 0rem;
    right: 0.5rem;
    color: #1da1f2;
    border-radius: 8px;
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: none;
  }

  .mobile-only.page-header .heading-subtitle {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2rem;
    text-align: center;
    color: var(--tm-kr-color-neutrals-grey-60);
    margin: 0;
  }

  .content-container {
    position: inherit;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--tm-kr-color-base-light-100);
  }

  .content-heading {
    font-size: 20px;
    margin-top: 0;
    line-height: 100%;
    text-align: left;
    font-weight: 600;
    margin-left: 1rem;
  }

  .account-cont-h {
    font-size: 1.125rem;
    margin-top: 0;
    line-height: 100%;
    text-align: left;
    font-weight: 600;
  }

  .heading-subtitle {
    font-weight: 400;
    text-align: left;
    margin-left: 1rem;
  }

  .heading-subtitle-webview {
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.2rem;
    text-align: center;
    color: #5d7199;
    margin: 0;
  }

  .account-cont-sub {
    margin-left: 0px;
  }

  .mobile-login {
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
  }

  .mobile-login .content-heading {
    margin: 0;
  }
  .mobile-login .account-cont-h {
    margin: 0;
  }
  .mobile-bottom-blue-button {
    display: flex !important;
    justify-content: center;
    background-color: #1da1f2;
    color: #ffffff;
    width: 20.5rem;
    text-align: center;
    padding: 0.6rem 0rem;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 8px;
    position: absolute;
    bottom: 0;
  }
  .button-blue {
    display: none;
  }
  .profiles {
    display: flex;
    flex-direction: column;
    width: calc(100%);
    max-width: 360px;
    margin: auto;
    margin-top: 1rem;
    padding-left: 0px;
    height: auto;
    overflow: hidden;
  }
  .profile-box {
    width: calc(100%);
    background-color: #ffffff;
  }

  .otp-receiver-info {
    justify-content: space-between;
  }
}

.pf-sl-body {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }

  .pf-sl-body {
    justify-content: center;
  }
}
.mobile-bottom-blue-button {
  display: none;
}

.profile-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.whatsapp-opt-text {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 400;
  color: #6b82ab;
}
.whatsapp-tick {
  height: 1rem;
  width: 1rem;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #dbdbdb;
}
.whatsapp-tick img {
  height: 100%;
  border-radius: 6px;
}
.tnc-tick {
  height: 1rem;
  width: 1rem;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid #dbdbdb;
}
.profile-card {
  position: relative;
  height: 8.25rem;
  width: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #6b82ab;
  font-size: 0.875rem;
  line-height: 0.875rem;
  border: 1px solid #f2f4f8;
  box-shadow: 0px 18px 28px rgba(157, 182, 217, 0.15);
  border-radius: 12px;
  cursor: pointer;
  background-color: #ffffff;
}

.institute-cta-link {
  display: inline;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #1da1f2;
  text-decoration: underline;
}

.institute-cta-text {
  display: initial;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #76787a;
}

.not-associated {
  margin-top: 40px;
}

.profile-img {
  height: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-banner {
  position: absolute;
  top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  background: -webkit-linear-gradient(#ea8804, #a65f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 5px;
}

.button-blue {
  /* position: absolute;
      bottom: 1rem; */
  background-color: #1da1f2;
  color: #ffffff;
  width: 20.5rem;
  text-align: center;
  padding: 0.6rem 0rem;
  margin: 0 auto;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 40px;
}

.top-bar-side-items {
  display: flex;
}

.help-container {
  display: flex;
}

.language-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  color: #1f3965;
  appearance: none;
  padding-left: 12px;
  padding-top: 1px;
  padding-bottom: 1px;
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/select-dropdown.png');
  background-position: right 12px center;
  background-size: 8px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  width: 80px;
  padding-right: 25px;
  position: relative;
  cursor: pointer;
  margin-right: 15px;
  width: 100px;
}
.language-dropdown-cont {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  max-height: 18rem;
  background: #fff;
  border-radius: 8px;
  z-index: 10;
  overflow: auto;
  border: 1px solid #dbe2ea;
}

.language-dropdown-tab {
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 5px;
  border-bottom: 1px solid #dbe2ea;
  margin-right: 12px;
}

.language-dropdown-tab:hover {
  background: #f2fafe; /* make this whatever you want */
}

.selected-language-div {
  display: flex;
}

.selected-language-div .langauge-icon {
  display: flex;
  flex-direction: column-reverse;
  margin-right: 4px;
}
.loginHelpText {
  display: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #1f1f1f;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* New app info styles */

.twirly-arrow-container {
  display: flex;
  justify-content: flex-end;
  padding-right: 80px;
  margin-top: 20px;
}

.flexCenter {
  display: flex;
  justify-content: center;
}

.tutorAppHeading {
  text-align: center;
  color: var(--tm-kr-color-neutrals-grey-100);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  padding-top: 12px;
}

.tutorAppDesc {
  color: var(--tm-kr-color-neutrals-grey-80);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.tutorAppDownloadBtn {
  display: flex;
  margin-top: 32px;
  border-radius: 12px;
  border: 1px solid var(--tm-kr-color-primary-100);
  padding: 12px;
  color: var(--tm-kr-color-primary-100);
  justify-content: center;
  align-items: center;
}

.storeButtons {
  margin-right: 16px;
  display: flex;
  align-items: baseline;
  column-gap: 8px;
}

.appleStoreImg {
  border-left: 1px solid var(--tm-kr-color-primary-100);
  padding-left: 8px;
}

.badge {
  padding: 3px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 5px;
  width: fit-content;
  height: fit-content;
}

.warning {
  background-color: #eaa624;
}

.tryTutionAppLabel {
  font-size: 12px;
  color: #5b5b5d;
  margin-top: 5px;
}

.downloadTutionAppBtn {
  color: #1da1f2;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}

.tutorAppFooter {
  display: flex;
  column-gap: 8px;
  align-items: center;
}

.tutorAppFooterText {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #76787a;
}

.toggle-container {
  transition: height 0.35s ease-in-out;
  overflow: hidden;
  background-color: white;
  width: 100%;
  border-radius: 15px;
  position: fixed;
  bottom: 0px;
  z-index: 1;
}

.toggle-container:not(.active) {
  display: none;
}

.language-selection-container {
  padding: 20px;
  text-align: left;
}

.language-selection-container h1 {
  text-align: left;
}

.grid {
  display: grid;
  grid-gap: 10px;
  margin: 10px;
}
.grid > div {
  font-size: 14px;
  padding: 0.5em;
  text-align: center;
  border-radius: 10px;
}

.auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.en-section {
  background: #e4f2ff;
}

.fr-section {
  background: #eefafe;
}

.ru-section {
  background: #f7eaf4;
}

.radio-label {
  display: flex;
  margin-left: 10px;
  color: #1f3965;
}

.sub-label-text {
  text-align: left;
  margin-left: 38px;
  color: #1f3965;
}

.centerText {
  text-align: center;
}

.e-text {
  text-align: right;
  font-size: 45px;
  color: #90c4f7;
}

.f-text {
  text-align: right;
  font-size: 45px;
  color: #d3f3ff;
}

.r-text {
  text-align: right;
  font-size: 45px;
  color: #f8d4e9;
}

.content-heading-language {
  font-size: 1.125rem;
  margin-top: 0;
  line-height: 100%;
  text-align: left;
  font-weight: 600;
}

.g-recaptcha {
  width: 304px;
  margin-left: auto;
  transform: scale(0.77);
  -webkit-transform: scale(0.77);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  margin-top: 20px;
}

.parentText {
  width: 329px;
  height: 37px;
  justify-content: center;
  display: block;
  text-align: center;
}

.infoIcon {
  display: flex;
  justify-content: center;
  margin: auto;
  margin-bottom: 21px;
}

.addChild {
  width: 90%;
  max-width: 360px;
  margin: auto;
  justify-content: space-evenly;
}
.closeIcon {
  width: 100%;
  display: flex;
}

.separatorLine {
  width: 360px;
  text-align: center;
  border-bottom: 1px solid #dbe2ea;
  line-height: 0.1em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.separatorLine span {
  background: #ffffff;
  padding: 6px 14px;
  color: #6b82ab;
  font-size: 0.75rem;
}

.updateApp {
  width: 100%;
  height: 44px;
  margin-top: 32px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #1ad1f2;
  color: #1da1f2;
  font-size: 14px;
  cursor: pointer;
}
.updateAppLogout {
  width: 100%;
  height: 44px;
  margin-top: 32px;
  background-color: #ffffff;
  color: #ff6666;
  font-size: 14px;
  cursor: pointer;
  border: 0px;
  margin-bottom: 100px;
}
