/******************************************
Course-pg
/* ******************************************/
:root {
    --primary-bg-color: #000c3f;
    --secondary-darker-bg: #010124;
    --primary-text-color: #ffffff;
    --secondary-text-color: #dcdcdc;
    --highlight-color: #ffb400;
    --highlight-hover-color: #e6a500;
    --border-color: hsla(0, 0%, 100%, 0.16);
    --background-overlay-light: hsla(0, 0%, 100%, 0.05);
    --background-overlay-hover: hsla(0, 0%, 100%, 0.08);
    --background-overlay-active: hsla(0, 0%, 100%, 0.15);
    --dropdown-bg-color: hsla(0, 0%, 100%, 0.08);
    --icon-primary-color: #01bacf;
    --primary-font: Arial, sans-serif;
    --heading-font-size: 32px;
    --subheading-font-size: 20px;
    --text-font-size: 16px;
    --small-font-size: 14px;
    --btn-padding: 8px 16px;
    --btn-radius: 4px;
    --section-padding: 100px 0 80px;
    --container-padding: 0 20px;
    --card-border-radius:8px;
    --offer-price-color: #5cb85c; 
}

/* -----------rating stars----------- */
.card-sub-hd{
    color: var(--border-color);
}

.rating {
    margin-top: 0px;
    margin-bottom: 0px;
}
.checked {
    color: var(--highlight-color)!important;

}
.rating-number {
    /* font-weight: bold; */
    margin-left: 5px;
}
/* .rating small {
    color: #777;
    margin-left: 5px;
} */

/* -----------price----------- */
.old-price {
    text-decoration-thickness: 2px; /* Optional: Makes the line bolder */
    text-decoration-color: #e74c3c; /* Optional: Sets the line color */
    color: #e74c3c; /* Grey color for de-emphasis */
    margin-right: 5px;
    font-size: 1.5em;
}

.new-price {
    font-weight: bold;
  /* color: var(--offer-price-color); */
  color: var(--primary-text-color);
  /* font-size: xxx-large; */
  font-size: xx-large;
}

.crs-btn{
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
}

.crs-btn ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px; /* Adjust space between buttons */
    list-style: none; /* Remove bullet points */
}

.crs-btn ul li{
    padding: 0;
}

/* .shop-wrapper {
    border: 1px solid var(--border-color) !important;
} */


/* ------top-category-selector------ */
.catg-para {
    margin-top: 8px;
}
.catg-select {
    padding: 10px;
    color: #ffffff;
    background: var(--primary-bg-color);
    border: 1px solid var(--border-color);
}

/* Target the default disabled option */
.drop-ara {
    /* background: #000080;
    color: #fff; */
    border: 1px solid var(--border-color);
    padding: 5px 10px;
}

select {
    color: #ffffff;
    background: var(--primary-bg-color);
    border: none;
    padding: 0 8px;
    font-size: 16px;
    /* border-radius: 5px; */
    cursor: pointer;
}

.select:hover {
    background: #51b300;
}

/* Style dropdown arrow */
select::-ms-expand {
    display: none; /* Hide default arrow in IE */
}

/* select:hover {
    background: #0000b3;
} */

select:focus {
    outline: none;
}
