.item-block {
    border: 1px solid #C0C0C0;
    border-radius: 10px;

    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;

    overflow: hidden;
}

.item-block .course-rating {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding: 0px 6px;
    border-radius: 10px;
    z-index: 5;
    color: #CC546C;
    background: #FFFFFF;
}

.item-block .school-logo {
    position: absolute;
    top: 10px;
    left: 75%;
    border-radius: 50%;
    z-index: 5;
	width: 45px;
	height: 45px;
}

.item-block .course-rating .star {
    width: 12px;
    height: 12px;
}

.item-block .course-rating .rating-value {
    font-size: 12px;
    margin-top: 3px;
}

.item-block .image-block {
    position: relative;
}

.item-block img {
    height: 167px;
    width: 100%;
    object-fit: cover;
}

.item-block .more {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.76);
    width: 100%;
    height: 167px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 10;
    transition: opacity .24s ease-out;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.item-block .item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 19px 20.94px;
}

.item-block .item-info .item-name {
    font-weight: 500;
    font-size: 15px;
    line-height: 145%;
    color: #000000;
}

.item-block .item-info .item-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #787878;
}

.item-block .item-info .item-price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.item-block .item-info .item-price .item-current-price{
    font-weight: 500;
    font-size: 23px;
    line-height: 21px;
    color: #000000;
}

.item-block .item-info .item-price .item-default-price{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-decoration-line: line-through;
    color: #000000;
}

.item-block .item-info .btn {
    background-color: #CC546C;
    color: #FFFFFF;
    border-radius: 9.48px;
    margin-top: 19px;
    width: 100%;
    font-size: 15.17px;
    font-weight: 300;
    font-family: Manrope, serif;
}

.item-desc-promocode {
	font-weight: 400;
    font-size: 14px;
	color: #CC546C;
    margin-top: 10px;
	background-color: #CC546C1A;
	border-radius: 5px;
    padding: 3px 6px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	cursor: pointer;
}

.item-block .item-info .item-desc-promocode .promocode-desc {
	width: 100%;
}

.item-desc-promocode .question-img{
	width: 10%;
    height: auto;
}

.custom-list-view .custom-list-view-item {
    background-color: #fff;
}

@media (min-width: 576px) {
    .col-sm-3 {
        width: 25%;
        float: left;
    }
}

@media (max-width: 576px) {
    .custom-list-view .custom-list-view-item {
        width: 100%;
        max-width: inherit;
    }

    .item-block img {
        height: auto !important;
    }

    .item-block .more {
        height: 100% !important;
    }
}