.container {
    width: 100%;
    max-width: 950px;
    margin: 0px auto 100px auto;
}

.head {
    font-size: 20px;
    font-weight: 500;
}

.grid {
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.course_item {
    background: none;
    outline: none;
    border: none;
    display: flex;
    color: #fff;
    display: flex;
    align-items: center;
    background: rgb(30, 30, 30);
    height: 40px;
    padding: 0px 20px;
    justify-content: flex-start;
    border-radius: 10px;
    height: 70px;
    cursor: pointer;
}

.course_name {
    font-weight: 600;
    text-align: left;
    font-size: 16px;
    line-height: 1.5rem;
}

.not_purchased {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    text-align: center;
    width: 90%;
}

.not_purchased h1 {
    font-size: 20px;
}
.not_purchased p {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.5rem;
}
.buy_career_test {
    background: var(--gradient);
    outline: none;
    border: none;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 7px;
    width: 100%;
    max-width: 450px;
    cursor: pointer;
}

.confirm_popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}
.confirm_container {
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary-color);
    width: 350px;
}
.confirm_container h2 {
    font-size: 18px;
    line-height: 1.5rem;
}
.avail_now_button {
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--gradient);
    outline: none;
    border: none;
    color: #fff;
    border-radius: 7px;
    cursor: pointer;
}

.confirm_popup.display {
    display: block;
}

.error {
    font-size: 14px;
    margin-top: 10px;
    color: var(--error);
}

@media screen and (min-width: 650px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
