/* .gfy-page-loader {
    overflow: hidden;
    width: 30px;
    height: 30px;
    margin: auto;
    margin-top: 10px;
}

.gfy-page-loader #loader {
    border: 3px solid #44C3D0;
    border-radius: 100px;
    border-top: 3px solid transparent;
    width: 30px;
    height: 30px;
    -webkit-animation: gfy-loader-spin 1.5s linear infinite;
    animation: gfy-loader-spin 1.5s linear infinite;
}

@-webkit-keyframes gfy-loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gfy-loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.goal-list-block .progress {
    height: 5px;
    background-color: #EBF8F9;
}

.goal-list-block .progress .progress-bar {
    background-color: #44C3D0;
}

.gfy-goal-main-title-text {
    font-family: 'AvenirLTStd';
    font-size: 14px;
    color: rgb(0 0 0 / 40%);
    margin-bottom: 0px;
    font-weight: normal;
    margin-bottom: 12px;
}

.goals-progressbar-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: space-between;
}

.goals-progressbar-wrapper .gfy-subtitle-main {
    margin: 0;
    font-weight: 500;
    max-width: 48%;
    width: 100%;
    margin-right: 2%;
    margin-bottom: 6px;
}

@media only screen and (max-width: 767px) {
    .goals-progressbar-wrapper .gfy-subtitle-main {
        max-width: 100%;
        margin-right: 0;
    }
}

.goals-progressbar-detail {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.goals-progressbar-detail .progress {
    width: 47%;
    margin-right: 4%;
    margin-bottom: 5px;
}

@media only screen and (max-width: 575px) {
    .goals-progressbar-detail .progress {
        width: 100%;
        margin-right: 0%;
    }
}

.goals-progressbar-detail h6 {
    font-family: "AvenirLTStd";
    font-size: 15px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    line-height: normal;
    width: 49%;
}

@media only screen and (max-width: 575px) {
    .goals-progressbar-detail h6 {
        width: 100%;
    }
} */