.jrk_profileCard_container h1,
.jrk_profileCard_container h2,
.jrk_profileCard_container h3,
.jrk_profileCard_container span,
.jrk_profile_text ul li {
    line-height: 120%;
}
.jrk_profileCard_container ul {
    align-self: flex-end;
}
.mg_10 {
    margin-top: 10px;
}
.mgb_20 {
    margin-bottom: 20px;
}
.gap_20 {
    gap: 20px;
}
.gap_10 {
    gap: 10px;
}
.jrk_profile_text {
    padding: 3rem;
    position: absolute;
    top: 0;
    width: 100%;
}
.jrk_profile_text ul {
    background: #FFFFFF;
    border-radius: 3rem;
    height: 5.2rem;
    margin-top: 3rem;
}
.jrk_profile_text ul li {
    width: calc(100% / 3);
    gap: 7px;
    height: 100%;
    position: relative;
    cursor: pointer;
}
.jrk_refresh_btn {
    width: 2.4rem;
    height: 2.4rem;
    background: #313131;
    border-radius: 2rem;
    cursor: pointer;
}
.rotate {
    transition: all 0.2s ease;
    animation: rotateAnimation 0.2s;
 }
 @keyframes rotateAnimation {
    100%{
       transform: rotate(360deg);
    }
 }
.jrk_profile_text ul li::after {
    content: '';
    position: absolute;
    background: url("https://d2lmbxd2xofmf5.cloudfront.net/theme/wegofin/gradientstroke.svg");
    background-size: contain;
    background-position: center;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    display: block;
}
.jrk_profile_text ul li:last-child::after {
    content: unset;
}
.jrk_refresh_btn img {
    margin-top: -2px;
    margin-left: -2px;
}
/* *********HIGHLIGHTS*********** */
.jrk_profile_highlights_container {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}
.jrk_profileCard_container {
    position: relative;
}
.jrk_prof_bg_wrap {
    height: 360px;
}
.jrk_prof_bg_wrap img {
    height: 100%;
}
.jrk_highlights_head {
    margin-top: 1rem;
}
.jrk_highlights_sec {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    flex: 1;
}
.jrk_highlights_body ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    height: 100%;
}
.jrk_highlights_body li {
    background: var(--default_white);
    box-shadow: var(--common_boxshadow);
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.jrk_highlights_body li img {
    min-height: 2rem;
}
.jrk_money_flow_text {
    grid-row: 1/2;
}
.jrk_chart_sec {
    grid-row: 2/4;
}
.jrk_chart_sec img {
    width: 100%;
}
.jrk_chart_sec .jrk_mobile{
    display: none;
}
.jrk_ref_light {
    background: #D4D4D4;
}
/** Custom Select **/
select#sources {
    border: none;
}
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
}
.custom-select-wrapper select {
    display: none;
}
.custom-select {
    position: relative;
    display: inline-block;
}
.custom-select-trigger {
    position: relative;
    display: block;
    width: 11rem;
    font-size: var(--font16);
    font-weight: 500;
    color: var(--font_variant_dark);
    background: transparent;
    cursor: pointer;
}
.custom-select-trigger:after {
    position: absolute;
    display: block;
    content: '';
    background-image: url("https://d2lmbxd2xofmf5.cloudfront.net/theme/wegofin/arrdown.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 10px;
    height: 10px;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
    transform: rotate(180deg) translateY(-50%);
}
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    right: 0;
    min-width: 15rem;
    text-align: center;
    margin: 5px 0;
    box-sizing: border-box;
    box-shadow: var(--common_boxshadow);
    border-radius: 1.6rem;
    background: var(--default_white);
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-1.5rem);
    z-index: 30;
}
.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.custom-option {
    position: relative;
    display: block;
    padding: 2.2rem;
    border-bottom: 1px solid #e9e6e6;
    font-size: var(--font14);
    font-weight: 400;
    color: var(--font_variant_medium);
    cursor: pointer;
    transition: all .4s ease-in-out;
}
.custom-option:first-of-type {
    border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 4px 4px;
}
.custom-option.selection {
    color: var(--default_orange);
}
.jrk_profile_text ul li a {
    gap: 7px;
}
@media screen and (min-width:1025px) {
    .jrk_profile_text ul li:hover {
        background: #000000;
        color: var(--default_white);
    }
    .jrk_profile_text ul li:first-child:hover {
        border-top-left-radius: 3rem;
        border-bottom-left-radius: 3rem;
    }
    .jrk_profile_text ul li:last-child:hover {
        border-bottom-right-radius: 3rem;
        border-top-right-radius: 3rem;
    }
    .jrk_profile_text ul li:hover svg path {
        stroke: #FFFFFF;
    }
    .custom-option:hover,
    .custom-option.selection {
        color: var(--default_orange);
    }
}
