.costs {
    padding: 0 140px;
    margin-bottom: 40px;
}

.costs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.costs-content.center-content{
    justify-content: center;
}

.costs-content .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 10px;
    width: 290px;
    height: auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 22px;
}

.costs-content .card-2 {
    width: 310px;
}

.costs-content .card .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px;
    gap: 9px;

    width: 100%;
    height: 73px;

    background: linear-gradient(270deg, rgba(87, 13, 221, 0.13) -24.6%, rgba(73, 104, 237, 0.13) 38.4%, rgba(65, 153, 245, 0.13) 100.14%, rgba(55, 214, 255, 0.13) 160.88%);
    border-radius: 5px;
    margin-bottom: 8px;
}

.costs-content .card .header .row-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.costs-content .card .header .month {
    font-size: 24px;
    color: #111827;
}

.costs-content .card .header .limited-quotas {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    gap: 10px;

    width: 116px;
    height: 21px;

    border-radius: 5px;
    border: 1px solid #570DDD;
}

.card .header .limited-quotas span {
    font-weight: 500;
    font-size: 12px;

    background: linear-gradient(270deg, #570DDD -24.6%, #4968ED 38.4%, #4199F5 100.14%, #37D6FF 160.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card .time {
    width: 100%;
    margin-bottom: 8px;
}

.card .time span {
    font-weight: 400;
    color: #111827;
}

.card .time .stroke {
    font-weight: 500;
}

.card .topics span {
    font-weight: 400;
    font-size: 14px;
}

.card .topics li {
    font-weight: 400;
    font-size: 14px;
}

.card .requirements span {
    font-weight: 400;
    font-size: 11px;
    color: #111827;
}

.card .sign-up {
    width: 100%;
}

.costs-content .disabled .header {
    background: rgba(200, 200, 200, 0.2);
}

.costs-content .disabled span, .costs-content .disabled li{
    color: #C8C8C8;
}


.card .sign-up span{
	color:#fff;
}

.costs-content .disabled .limited-quotas, .costs-content .disabled .hour{
    visibility: hidden;
    opacity:0;
}

@media screen and (min-width: 1498px) {
    .card{
        margin-left:32px;
        margin-right: 32px;
    }
}


@media screen  and (min-width: 641px) and (max-width: 1200px){
    .costs{
        padding: 0 0px;
    }

    .costs-content{
        width: 100%;
        overflow-y: auto;
    }

    .costs-content .card{
        margin-left:16px;
        margin-right: 16px;
        margin-bottom: 16px;
        min-width: 290px;
    }
}



@media screen and (max-width: 640px){
    .costs{
        padding:0;
    }

    .costs-content{
        flex-direction: column;
    }

    .costs-content .card{
        margin-bottom: 16px;
    }
}


@media screen and (prefers-color-scheme: dark) {

	.costs-content .disabled .header {
		background:#e7e7e773;
	}

    /*.costs-content .card .header .limited-quotas {
        border: 1px solid #ccc;
    }

    .card .header .limited-quotas span {
        color: #ccc;
        background:none;
        -webkit-text-fill-color:#ccc;
    }*/
}

