@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Gilroy-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Gilroy-Regular.woff') format('woff');
}

:root {
    --font-family-progress: 'Gilroy', sans-serif;
}

#cart-sidebar .contain-progress + .cart-body {
    top: 170px;
}

#cart-progress-bar {
    margin-top: 24px;
    width: 100%;
}

.progress-goals {
    display: flex;
    justify-content: space-around;
}

.goal-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    opacity: 0.5;
    transition: all .2s ease-out;
}

.goal-wrap .goal-img {
    width: 40px;
    height: 40px;
}

.goal-wrap > a:hover {
    opacity: 0.7;
    transition: all .2s ease-out;
}

.goal-text {
    margin-top: 5px;
    font-family: var(--font-family-progress), sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    text-transform: none;
    color: #444;
}

.progress-wrap {
    margin: 11px 0;
    width: 100%;
    height: 5px;
    overflow: hidden;
    border-radius: 20px;
    background: #d9d9d9;
}

.progress {
    width: 0;
    height: 5px;
    border-radius: 20px;
    background: #fbb24f;
    transition: all .5s ease-out;
}

.progress-text {
    margin: 0;
    font-family: var(--font-family-progress), sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 2vw, 14px);
    text-align: center;
    text-transform: none;
    color: #444;
}

@media (max-width: 421px) {
    #cart-sidebar .contain-progress {
        padding: 14px 10px 10px;
    }

    #cart-sidebar .contain-progress + .cart-body {
        top: 150px;
    }

    #cart-progress-bar {
        margin-top: 15px;
    }

    .goal-wrap .goal-img {
        width: 35px;
        height: 35px;
    }

    .progress-wrap {
        margin-top: 8px;
    }
}
