.circle-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-progress {
    width: 180px;
    height: 180px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(var(--circle-color1) var(--circle-percent), var(--circle-color2) var(--circle-percent) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid transparent;
    background-clip: padding-box;
	
	
	

    animation: fillCircle 5s ease-in-out forwards; /* 5s to slowly fill the circle */
	
	
	
}

.inner-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 50px;
    font-weight: bold;
    color: black;
}

.circle-percent {
    font-size: 50px;
    font-weight: bold;
    color: #163669;
}

.circle-progress-text {
  margin-top: -50px;
    font-size: 16px;
    font-weight: normal;
    color: #333;
    text-align: center;
    padding: 50px 25px 25px 25px;
    background: #ffffff;
	min-height:123px;
}

.my-color-field {
    width: 200px;
}
