.user {
  	width: 100%;
  	position: relative;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	padding: 0px 0px 20px;
  	box-sizing: border-box;
  	isolation: isolate;
  	text-align: left;
  	font-size: 16px;
  	color: var(--neutral-grey-250);
  	font-family: var(--font-secondary);
    
}
.cover-image {
  	align-self: stretch;
  	height: 200px;
  	position: relative;
  	max-width: 100%;
  	overflow: hidden;
  	flex-shrink: 0;
  	object-fit: cover;
  	z-index: 1;
}
.container {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: center;
  	z-index: 3;
  	flex-shrink: 0;
  	font-family: var(--font-primary);
}
.menuitems {
  	width: 100%;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
}
.user .menuitems .msisdn {
    display: flex;
    align-self: stretch;
    padding: 16px 20px 24px 20px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--Colors-Semantics-Border-Default, #E0E0E0); 
}
.user .menuitems .msisdn .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}
.user .menuitems .msisdn .content .label {
    color: var(--Colors-Semantics-Text-Secondary, #666);
    font-family: var(--font-tertiary);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
}
.user .menuitems .msisdn .content .number-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.user .menuitems .msisdn .content .number-row .icon-wrapper {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--Colors-Semantics-Background-Promo_Soft, #F0E3ED);
}
.user .menuitems .msisdn .content .number-row .icon-wrapper .icon {
    font-size: 12px;
    height: 12px;
    color: var(--Colors-Semantics-Action-Primary, #AE3F97);
}
.user .menuitems .msisdn .content .number-row .phone-number {
    color: var(--Colors-Semantics-Text-Primary, #101015);
    /* tertiary/body/md-bold */
    font-family: var(--font-tertiary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}
.user .menuitems .msisdn .badge {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-sm, 2px);
    background: var(--Colors-Primitives-Brand-Purple_Magenta, #AE3F97);
    color: var(--Colors-Semantics-Text-On_Brand, #FFF);
    /* logo/label */
    font-family: var(--type-font-family-primary-bold, "TradeGothic LT Bold");
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 8px; /* 80% */
}
.cta {
  	align-self: stretch;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: center;
  	padding: 0px 0px 20px;
  	gap: 10px;
  	flex-shrink: 0;
  	font-size: 14px;
  	color: var(--neutral-white);
  	font-family: var(--font-secondary);
}
.state-layer {
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	padding: 10px 16px;
  	gap: 8px;
}
.faq {
  	align-self: stretch;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	gap: 10px;
  	flex-shrink: 0;
    padding: 24px 20px;
}
.faq:hover {
    background-color: var(--neutral-grey-50);
}
.faq .icon {
  	font-size: 24px;
  	height: 24px;
}
.faq .title {
  	flex: 1;
  	position: relative;
  	line-height: 24px;
    font-family: var(--font-tertiary);
}
.divider {
  	width: 100%;
  	height: 1px;
  	position: relative;
  	border-top: 1px solid var(--neutral-grey-100);
  	box-sizing: border-box;
  	flex-shrink: 0;
}
.blocktitle {
  	align-items: center;
  	justify-content: center;
  	text-align: center;
    margin-bottom: 12px;
}
.blocktitle .title {
  	justify-content: center;
}
.blocktitle .paragraph {
  	align-items: center;
  	justify-content: center;
}
@media (min-width: 600px) {
    .cover-image {
      	height: 350px;
    }
}
@media (min-width: 1100px) {
    .cover-image {
      	height: 450px;
    }
    .user .menuitems .msisdn {
        margin-bottom: 24px;  
    }
}