* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    background-color: #f5f5f5 !important;
    width: 100%;
}

.container-wrapper {
    margin-top: 10rem;
    padding-bottom: 2rem;
}

/* Profile Card */
.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    background-color: #253837;
    border-radius: 50%;
}

.profile-pic h1 {
    color: #a3eb64;
}

.circle {
    width: 35px;
    height: 35px;
    background-color: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 1.5rem;
}

.btn-lime {
    background-color: #a3eb64;
}

.width-140 {
    width: 140px;
    height: 45px;
}

.grey {
    background-color: #f4f4f4;
}

.bg-purple {
    background-color: #a392ef;
}

.text-purple {
    color: #a392ef;
}

.text-orange {
    color: #ef7833;
}

/* SkorCard */
.border-lime {
    border: 1px solid #a3eb64;
}

.skor-img{
    height: 174px;
}

/* Skor Details  */
.progress {
    height: 13px !important;
}

.progress-bar-custom {
    height: 13px;
    border-radius: 5px;
}

.progress-bar-gradient {
    background: linear-gradient(to right, #f2423d, #ffed48, #c5dc59);
}

.progress-bar-purple {
    background-color: #9370DB;
}

.progress-value {
    font-weight: bold;
    color: #666;
    text-align: right;
    background-color: #f4f4f4;
    padding: .7rem 3rem;
    border-radius: 6px;
    font-size: 1.5rem;
}

/* Rent Detail Card */
.card-custom {
    background-color: #253837;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.card-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #364847;
    clip-path: polygon(100% 100%, 0% 100%, 0.00% 198.13%, 4.00% 197.27%, 8.00% 194.71%, 12.00% 190.52%, 16.00% 184.78%, 20.00% 177.63%, 24.00% 169.23%, 28.00% 159.76%, 32.00% 149.45%, 36.00% 138.53%, 40.00% 127.25%, 44.00% 115.86%, 48.00% 104.61%, 52.00% 93.78%, 56.00% 83.60%, 60.00% 74.29%, 64.00% 66.09%, 68.00% 59.16%, 72.00% 53.67%, 76.00% 49.75%, 80.00% 47.47%, 84.00% 46.90%, 88.00% 48.04%, 92.00% 50.88%, 96.00% 55.33%, 100.00% 61.32%);
    z-index: 0;
}

.card-custom::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #465756;
    clip-path: polygon(100% 100%, 0% 100%, 0.00% 211.33%, 4.00% 210.42%, 8.00% 207.69%, 12.00% 203.22%, 16.00% 197.10%, 20.00% 189.47%, 24.00% 180.51%, 28.00% 170.41%, 32.00% 159.42%, 36.00% 147.77%, 40.00% 135.73%, 44.00% 123.58%, 48.00% 111.59%, 52.00% 100.03%, 56.00% 89.17%, 60.00% 79.25%, 64.00% 70.49%, 68.00% 63.11%, 72.00% 57.25%, 76.00% 53.06%, 80.00% 50.64%, 84.00% 50.03%, 88.00% 51.25%, 92.00% 54.27%, 96.00% 59.02%, 100.00% 65.41%);
    z-index: 1;
}

.icon-circle {
    background-color: #a3eb64;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.icon-circle img {
    height: 16px;
}

.card-content {
    position: relative;
    z-index: 1;
}

/* Milestone Card */
.milestones-card {
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.step-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.step-bar .step {
    width: 25%;
    position: relative;
    text-align: center;
}

.step-bar .step::before {
    content: '🗸';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #a392ef;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.step-bar .step:last-child::before{
    content: '';
    background-color: #fff;
    border: 1px solid #a392ef;
    top: -8px;
}

.step-bar .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 60%;
    width: calc(100% - 20px);
    height: 2px;
    background-color: #a392ef;
    z-index: 1;
    transform: translateY(-50%);
}


.points {
    font-size: 1.2rem;
    color: #9b59b6;
    margin-top: 5px;
    display: block;
}

.month-block {
    background-color: #fff;
    color: #333;
    flex: 1;
    border-radius: 6px;
}

.month-block:last-child {
    background-color: #fff;
    color: #999;
    margin-right: 0;
}

.month-block h6 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding: 4px 0px;
    background-color: #a3eb64;
    border-radius: 6px 6px 0px 0px;
}

.month-block:last-child h6{
    background-color: #f1f1f1;
}

.month-block .date {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 4px;
}

.month-block .year {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Divider */
.divider{
    height: 2px;
    width: 100%;
    background-color: #00000011;
}