.ilchwa-user-menu {
    display: flex;
    gap: 21px;
}

.ilchwa-user-menu > a.login {
    height: 39px;
    width: 39px;
    border: 2px solid #62D188;
    display: flex;
    border-radius: 50px;
    text-align: center;
    align-items: center;
    justify-content: center
}

.ilchwa-user-menu > a.login:hover {
    background: #62D188;
}

.ilchwa-user-menu > .my-account {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    color: #0F0F0F;
    position: relative;
    padding: 10px 0px;
    text-transform: capitalize;
}

.ilchwa-user-menu-personal .ilchwa-profile-photo,
.ilchwa-user-menu > .my-account .ilchwa-profile-photo {
    display: flex;
    min-width: 42px;
    min-height: 42px;
    height: 42px;
    width: 42px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
}

.ilchwa-user-menu-personal .ilchwa-profile-photo {
    min-width: 88px !important;
    min-height: 88px !important;
    height: 88px !important;
    width: 88px !important;
    border-radius: 88px !important;
    margin: 0 auto;
}

.ilchwa-user-menu > .my-account ul {
    position: absolute;
    top: 100%;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid #EEEFFB;
    border-radius: 2px;
    background: #FFF;
    list-style: none;
    min-width: 200px;
    right: -20px;
    margin: 0 auto;
    padding: 0;
    transition: opacity .1s linear;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.ilchwa-user-menu > .my-account:hover ul {
    opacity: 1;
    visibility: visible;
}

.ilchwa-user-menu > .my-account ul:before {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    top: -10px;
    right: 15px;
    background: #FFF;
    transform: rotate(-45deg);
    box-shadow: 2px -2px 3px -1px rgba(0, 0, 0, 0.15);
}

.ilchwa-user-menu > .my-account ul li {
    display: block;
    border-bottom: 1px solid #EEEFFB;
    z-index: 1;
    position: relative;
    background: #FFF !important;
    background-color: #FFF !important;
}

.ilchwa-user-menu > .my-account ul li:last-child {
    border: none;
}

.ilchwa-user-menu > .my-account ul li a {
    display: block;
    line-height: 26px !important;
    padding: 10px 23px !important;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    /* text-align: center; */
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25.6px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.ilchwa-user-menu > .my-account ul li a:hover {
    background-color: #EEEFFB;
}

.ilchwa-user-menu-personal {
    min-width: 245px;
    padding: 22px 13px;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
}

.ilchwa-user-info {
    display: flex;
    flex-direction: column;
    color: #181818;

    text-align: center;
    font-family: var(--wp--preset--font-family--body) !important;
    font-size: 14.5px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 110.345% */
    letter-spacing: 0.4px;
    margin-top: 13px;
    margin-bottom: 17px;
    gap: 5px;
}

.ilchwa-user-info span {
    color: #676767;

    text-align: center;
    font-family: var(--wp--preset--font-family--body) !important;
    font-size: 10.141px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 157.781% */
    letter-spacing: 0.4px;
    text-transform: lowercase;
}

.switch-field {
	display: flex;
	overflow: hidden;
    border-radius: 160px;
    border: 2px solid #D9D9D9;
    flex: 1 1 auto;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-field label {
	color: #181818;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	padding: 11px 31.25px 10px 31.45px;
	margin-right: -1px;
	transition: all 0.1s ease-in-out;
    border-radius: 160px;
    width: 50%;
}

.switch-field label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: #62D188;
    color: #FFF;
	box-shadow: none;
}

.switch-field label:first-of-type {
	/* border-radius: 4px 0 0 4px; */
}

.switch-field label:last-of-type {
	/* border-radius: 0 4px 4px 0; */
}