.card-course--main {
	border: 1px solid #d1d2e0;
	border-radius: 8px;
}
.course--image-container {
	border-radius: 8px;
}
.course--image-container img {
	border-radius: 8px 8px 0 0;
}
.course--info-container {
	padding: 10px 15px;
}
.course--title {
    color: #303141;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}
.course--price {
    color: #303141;
    overflow: hidden;
    white-space: normal;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}
.course--badge-premium {
    padding: 3px 5px;
    background-color: #5022c3;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 4px;
    font-size: 10px;
}
.course--badge-bestseller {
    padding: 3px 5px;
    background-color: #c2e9eb;
    color: #0d5261;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 4px;
    font-size: 10px;
}

.card-course-list-main {
    border: none;
    border-bottom: 1px solid #d1d2e0;
    border-radius: 0px;
    padding-bottom: 10px;
}
.card-course-list-main .course--image-container img {
    border-radius: 0px 0px 0 0;
}

.rating .course-btn {
    display: flex;
    gap: 10px;
    font-size: 16px;
    align-items: center;
}

.rating .course-btn span:first-child {
    text-decoration: line-through;
    color: black;
    font-weight: 500;
}

.rating .course-btn span:last-child {
/*    font-weight: bold;*/
    color: black;
}

.text-ellipsis {
    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.product-content .test{
    display: flex ;
    border-top: 1px solid var(--bs-gray-500);
    margin-top: 10px;
    justify-content: space-between;
}   
.laravel-pagination-container .pagination  {
    justify-content: flex-end;
}

.global-loader-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
/*    background-color: rgba(0, 0, 0, 0.5);*/
    background-color: white;
    z-index: 9999;
}

#global_loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

#global_loader.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.whatsapp-btn.show {
    opacity: 1;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    text-align: center;
    background: #25D366;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 1;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.whatsapp-btn:hover {
    color: #fff;
    background: #1D2C5B;
}


.video-js-responsive-container.vjs-hd {
    padding-top: 56.25%;
}
.video-js-responsive-container.vjs-sd {
    padding-top: 75%;
}
.video-js-responsive-container {
    width: 100%;
    position: relative;
}
.video-js-responsive-container .video-js {
    height: 100% !important; 
    width: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

.result-container {
    position: relative;
}

.result-circle {
    width: 170px;
    height: 170px;
    background-color: transparent;
    /* Center vertically and horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 15px solid gray;
    border-radius: 100%;
}

.result-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}


/*-----------------  
    Responsive
-----------------------*/

@media (max-width:768px) {
    
    .result-circle {
        width: 100px;
        height: 100px;
        background-color: transparent;
        /* Center vertically and horizontally */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 10px solid gray;
        border-radius: 100%;
    }

    .result-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .result-circle {
        width: 100px;
        height: 100px;
        background-color: transparent;
        /* Center vertically and horizontally */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border: 10px solid gray;
        border-radius: 100%;
    }

    .result-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 20px;
    }
}

.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.rounded-10 {
    border-radius: 20px;
}