@import '../variables.css';

.course-price-table p {
    font-size: 0.8rem;
    margin-bottom: 17px;
}

.course-price-table .h2 {
    font-weight: 600;
    margin-bottom: 36px;
    width: 80%;
    font-size: calc(1.375rem + 1.5vw);
}

.course-price-table h2 {
    font-weight: 600;
    margin-bottom: 36px;
    width: 80%;
    font-size: calc(1.375rem + 1.5vw);
}

.course-price-table {
    background: var(--gradient-1-180deg);
    border-radius: 20px;
    padding: 42px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 40px;
    position: relative;
    max-width: 950px;
    margin-inline: auto;
}

.course-price-profit {
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(90deg, #38C4BD 0%, #2CAAA4 100%);
    font-size: 0.9rem;
    border-radius: 40px;
    padding: 16px 38px 16px 28px;
    color: #fff;
    width: fit-content;
}

.course-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 60%;
    margin-bottom: 76px;
    margin-top: 36px;
}

.old-price {
    text-decoration: line-through;
    font-size: 1.3rem;
}

.currency {
    font-size: 0.8rem;
    display: inline-block;
    margin-block: auto;
}

.course-price-discount {
    position: absolute;
    content: "";
    width: 102px;
    height: 112px;
    filter: drop-shadow(0px 4px 31px rgba(135, 146, 247, 0.55));
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-image: url("../../images/coursePriceBg/discountFlag.svg");
    right: 70px;
    top: -10px;
}

.course-price-discount p {
    font-size: 1.7rem;
    font-weight: 600;
}



.big-star-bg {
    position: absolute;
    right: 0;
    top: 30%;
    width: 200px;
}

.small-star-bg {
    position: absolute;
    bottom: 0;
    left: 350px;
    width: 200px
}

@media (max-width: 991px) {
    .course-price-discount {
        right: 30px;
    }

    .big-star-bg {
        top: 40%;
        width: 170px;
    }

    .small-star-bg {
        width: 150px
    }

    .course-price-profit {
        font-size: 0.7rem;
        padding: 9px 23px 9px 23px;
    }
}

@media (max-width: 767px) {
    .course-prices {
        width: 100%;
    }

    .big-star-bg,
    .small-star-bg {
        display: none;
    }
}

@media (max-width: 575px) {
    .course-price-discount {
        right: 0;
        top: -40px;
        align-items: baseline;
        padding-top: 50px;
        border-top-left-radius: 0;
    }

    .course-price-discount p {
        font-size: 1.4rem;
    }

    .course-price-table {
        padding: 44px 20px;
        overflow: hidden;
    }


}

@media (max-width: 415px) {
    .course-prices {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 10px;
    }
}