.course-age-group-badge-container {
    display: flex;
    gap: 4px;
}

.course-age-group-badge {
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    padding: 2px 10px;
    background: #252525;
    color: #fff;
}

/* All Ages */
.course-age-group-badge.course-age-group-1 {
    background: rgba(23, 184, 193, .15);
    color: #17b8c1;
}

/* Kids */
.course-age-group-badge.course-age-group-2 {
    background: rgba(0, 123, 255, .15);
    color: #0064ca;
}

/* Teens */
.course-age-group-badge.course-age-group-4 {
    background: rgba(108, 189, 126, .15);
    color: #6cbd7e;
}

/* Adults */
.course-age-group-badge.course-age-group-8 {
    background: hsla(6, 67%, 62%, .15);
    color: #df6a5e;
}

.animated-underline::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #696969;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-out;
}

.animated-underline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.custom-studio-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #f3f3f3;
    border: 2px solid #f3f3f3;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    margin-top: -3px;
}

.custom-studio-checkbox:checked {
    background-color: var(--edumall-color-primary, #0071dc);
    border-color: var(--edumall-color-primary, #0071dc);
}

.custom-studio-checkbox:focus {
    outline: none;
    border: 2px solid #f3f3f3;
  }

.custom-studio-checkbox:checked::after {
    content: '✓';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.most-popular-heading {
    font-size: 30px;
    font-weight: 500;
    color: #252525;
}

.most-popular-underline {
    position: relative;
}

.most-popular-underline::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -19px;
    width: 91px;
    height: 21px;
    background: transparent;
    border-radius: 50%;
    border-bottom: 4px solid var(--edumall-color-secondary, #ffc221);
    transform: translateX(-50%) rotate(175deg);
}

.catalog-search-filter {
    color: #696969 !important;
    border-color: #f8f8f8 !important; 
    background-color: #f8f8f8 !important; 
    min-height: 52px;
    border-radius: 5px;
    padding: 3px 20px;
    outline: none;
}

.sort-by-dropdown {
    color: #252525 !important;
    border-color: #f8f8f8 !important; 
    background-color: #f8f8f8 !important; 
    min-height: 52px;
    border-radius: 5px;
    padding-left: 75px;
    padding-right: 40px;
    outline: none;
}

.sort-by-wrapper {
    position: relative;
}

.sort-by-wrapper::before {
    content: "Sort by:";
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #ababab;
    font-size: 15px;
}

.course-catalog-icon-list ul {
    font-size: 16px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.course-age-group-list {
    color: #7e7e7e;
    list-style: none;
    padding: 0px;
}

.course-age-group-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.course-age-group-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg aria-hidden="true" class="e-font-icon-svg e-fas-angle-double-right" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path fill="%237e7e7e" d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}