body {
    font-family: var(--primary-font);

}

@font-face {
    font-family: 'Gilroy-Regular';
    src: url('fonts/Gilroy-Regular.otf') format(opentype);
}

@font-face {
    font-family: 'Gilroy-Medium';
    src: url('fonts/Gilroy-Medium.otf') format(opentype);
}

@font-face {
    font-family: 'Gilroy-SemiBold';
    src: url('fonts/Gilroy-SemiBold.otf') format(opentype);
}

@font-face {
    font-family: 'Gilroy-Bold';
    src: url('fonts/Gilroy-Bold.otf') format(opentype);
}

@font-face {
    font-family: 'Gilroy-UltraBold';
    src: url('fonts/Gilroy-UltraBold.otf') format(opentype);
}

@font-face {
    font-family: 'Gilroy-Black';
    src: url('fonts/Gilroy-Black.otf') format(opentype);
}

:root {
    --primary-font: 'Poppins';
    --secondary-font: 'Gilroy-Regular';
    --font-size: 1rem;
    --font-weight: 400;
    /* --primary-color: #1C0F4D; */

    --border-radius: 24px;


    --btn-font: 'Gilroy-Bold';
    --btn-padding: 1rem 1.25rem;
    --btn-radius: 28px;
}

.badge {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.125rem;
    padding: 5px 12px;
}





/* .bg-danger {
    background-color: #FDF2F2!important;
    color: #D90000;
} */
* {
    box-sizing: border-box;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.375rem;

    text-decoration: none;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
    border-radius: 4px;
}

/* Track */
/* ::-webkit-scrollbar-track {
    background: #f7f7fc;
    border-radius: 4px;
} */

/* Handle */
/* ::-webkit-scrollbar-thumb {
    background: #A07EFF;
} */

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {
    background: #A07EFF;
} */

/* width */
::-moz-scrollbar {
    width: 4px;
    border-radius: 4px;
}

/* Track */
::-moz-scrollbar-track {

    border-radius: 4px;
}


[data-scroller="true"] {
    overflow: hidden;
}

.scroller-scrollbar {
    display: none;
    position: absolute;
    z-index: 1000;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;

    opacity: 0.32;
}

.scroller-scrollbar.vertical {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    margin: 0 2px;
}

.scroller-scrollbar.vertical.scroller-inverse {
    left: 0;
    right: inherit;
}

.scroller-scrollbar.horizontal {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    margin: 2px 0;
}

.scroller-scrollbar.horizontal.scroller-inverse {
    top: 0;
    bottom: inherit;
}

.scroller-scrollbar.scroller-active {
    display: block;
}

/* 
.scroller-scrollbar {
    
} */

/* .position-sticky {
    overflow-y: hidden;
    direction: ltr;
}
.position-sticky:hover {
    overflow-y: scroll;
} */
.avatar {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    padding: 0;
    align-items: center;
}

.avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0;
    object-fit: cover;
}

.avatar .username {
    font-family: 'Gilroy-SemiBold';
    font-size: 1.25rem;

    line-height: 1.75rem;
    margin: 8px 0 0 0;
}

.avatar .username span {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 400;

    line-height: 1.5rem;
    display: block;
}

.feather {
    width: 16px;
    height: 16px;
}

.side-header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    text-align: center;
}

.sidebar {

    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 20px;
    /* box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); */
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

.sidebar-sticky {
    height: calc(100vh - 48px);
    /* overflow-x: hidden;
    overflow-y: auto; */
}

.sidebar li {
    margin: 0 0 10px 0;
}

.sidebar .nav-link {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    border-radius: 0.75rem;
    padding: .5rem .75rem;
}

.sidebar .nav-link svg {
    margin-right: 8px;
}

/* .sidebar .nav-link:hover svg {
    fill: #9794a5;
}
.sidebar .nav-link:hover svg, .sidebar .nav-link:focus svg {
    fill: var(--secondary-color);
} */
.sidebar .nav-link .feather {
    margin-right: 4px;

}

.sidebar .nav-link:hover,
.sidebar .nav-link:focus {

    border-radius: 0.75rem;

}

.sidebar .nav-link.active {

    border-radius: 0.75rem;

}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: .75rem;
}

.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    /* background-color: rgba(0, 0, 0, .25); */
    /* box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25); */
}

.navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
}


.navbar .form-control {
    padding: .75rem 1rem;
}





.top-header {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;
}

.fixed-header {
    justify-content: space-between;

    padding: 20px 0;
}

footer {

    padding: 2.5rem 0;
    margin: 0;

}

.flinks {
    display: flex;
    margin: 0 0 1.5rem 0;
    padding: 0;
    list-style: none;
}

.flinks li {
    margin: 0;
    padding: 0 1.25rem;
}

.flinks a {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 600;

    line-height: 1.5rem;
    text-decoration: none;
}

p.copyright {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;

    line-height: 1.125rem;
    text-align: center;
}

h2 {
    font-family: 'Gilroy-SemiBold', 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 2rem;

    line-height: 4rem;
    margin: 0;
    letter-spacing: -0.01rem;
    display: inline-block;
}

.dashboard-right {
    margin: 0;
    padding: 0 20px;
}

.course-grid {
    position: relative;
    padding: 0 1.25rem;
    margin: 0;
}

.search-area {
    width: 100%;
    position: relative;
    border-radius: 12px;

    border: 0;
    padding: 16px 16px 16px 60px;
    outline: none;
}

.search-bar {
    position: relative;
}

.search-bar:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 16px;
    width: 24px;
    height: 24px;

    z-index: 1;
}

.subtext {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    font-weight: 400;

    line-height: 2rem;
    margin: 0;
}

.profile-display {
    position: relative;
    display: flex;

    border-radius: var(--border-radius);
    padding: 40px;
    margin: 0 0 40px 0;
    align-items: center;
}

.circular-chart {
    display: block;
    margin: 0;
    /* max-width: 80%;
    max-height: 250px; */
}

.circle-bg {
    fill: none;

    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}



.percentage {

    font-family: var(--primary-font);
    font-size: 0.5rem;
    text-anchor: middle;
}

.content-area {
    margin: 0 0 0 40px;
    padding: 0;
}

.content-area h3 {
    font-family: var(--primary-font);
    font-size: 2.125rem;
    font-weight: 600;

    line-height: 3.25rem;
}

.content-area p.subtext {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    font-weight: 400;

    line-height: 2rem;
}

img.profileimg {
    max-width: 100%;
    height: 220px;
    margin: -12% 0 0 0;
}

h3.title {
    display: flex;
    font-family: 'Gilroy-SemiBold', 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 1.375rem;
    margin: 0 0 24px 0;
    justify-content: space-between;
    align-items: center;
}

.tab-area {
    display: flex;
    flex-flow: column;
    margin: 0 0 2rem;
    padding: 2rem 16px;

    border-radius: var(--border-radius);
}

.your-applications .nav-link {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
}

.your-applications .nav-link.active,
.your-applications .show>.nav-link {

    border-radius: 12px;

    font-weight: 500;
}

.your-applications-tab-content {
    margin: 0;
    padding: 24px 0;
}

.box-fafafa {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0 0 8px 0;
    padding: 12px;

    border-radius: 16px;
}

.box-fafafa .img-area {
    width: 64px;
    height: 64px;

    border-radius: 12px;
    text-align: center;
    padding: 9px 14px;
    margin: 0 12px 0 0;
}

.box-fafafa .img-area img {
    max-width: 100%;
    height: auto;
}

.box-fafafa .content-area {
    margin: 0;
    padding: 0;
    display: flow-root;
    width: -webkit-fill-available;
}

.box-fafafa .content-area h4 {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    margin: 0 0 8px;
}

.action-bar {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

.action-bar a {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5rem;

    text-decoration: none;
}

.box-fafafa .content-area p {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 400;

    line-height: 1.5rem;
    margin: 0 0 10px;
}

.box-fafafa .content-area .action-text {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 400;

    line-height: 1.125rem;
}

.box-e5eeff {
    display: flex;

    border-radius: 16px;
    padding: 12px;
    margin: 0 0 24px;
    align-items: center;
}

.box-e5eeff .imageholder {

    border-radius: 12px;
    padding: 7.5px;
    margin: 0 12px 0 0;
}

.box-e5eeff .imageholder img {
    max-width: 100%;
    height: auto;
}

.box-e5eeff .textholder {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    flex: auto;
}

.box-e5eeff .textholder p {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    margin: 0;
}

.box-e5eeff .textholder a {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;

    text-decoration: none;
}

.upcoming-text {
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;

    line-height: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.box-white {
    position: relative;

    border-radius: var(--border-radius);
    padding: 20px;
    height: 78vh;
    overflow-y: auto;
}

h4.title {
    display: flex;
    font-family: 'Gilroy-SemiBold';
    font-size: 1rem;

    line-height: 1.375rem;
    margin: 0 0 20px;
    align-items: center;
    justify-content: space-between;
}

.activity-box {
    display: flex;
    flex-flow: column wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.activity-box li {
    margin: 0;
    padding: 20px 0;

    display: flex;
}

.activity-box li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.activity-box li .text-area {
    margin: 0;
    padding: 0;
}

.activity-box li .text-area h5 {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    margin: 0 0 4px;
}

.activity-box li .text-area p {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
    margin: 0;
}

.box-fafafa {

    border-radius: 16px;
    padding: 16px 20px;
    margin: 0 0 16px 0;
    padding-left: 55px;
}

.box-fafafa h5 {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    margin: 0 0 4px;
}

.box-fafafa p {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.25rem;
    letter-spacing: 0.16px;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

header {
    /* display: flex; */
    margin: 0 0 30px;
    padding: 26px 20px 26px 0;
    background-color: transparent;
    transition: all ease-in 0.3s;
}

.toolbar {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    justify-content: end;
}

.toolbar li {
    padding: 0 15px;
    margin: 0;
}

/* .toolbar li:last-child {
    padding: 0 0 0 5px;
} */
.bell {
    position: relative;
}

.bell .badge {
    position: absolute;
    top: -5px;
    right: -10px;

    padding: 0 4px;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 700;

}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.mobileNav li {
    margin: 0 0 10px 0;
}

.mobileNav .nav-link {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    font-weight: 500;

    line-height: 2.75rem;
    border-radius: 16px;
}

/* .mobileNav .nav-link:hover svg {
    fill: #9794a5;
}
.mobileNav .nav-link:hover svg, .mobileNav .nav-link:focus svg {
    fill: var(--secondary-color);
} */
.mobileNav .nav-link .feather {
    margin-right: 4px;

}

.mobileNav .nav-link:hover,
.mobileNav .nav-link:focus {

    border-radius: 16px;

}

.mobileNav .nav-link.active {

    border-radius: 16px;

}

.mobileNav .nav-link:hover .feather,
.mobileNav .nav-link.active .feather {
    color: inherit;
}

.offcanvas.offcanvas-start {
    width: 100%;
}

.mobileNav {
    width: 75%;
}

.month {
    padding: 70px 25px;
    width: 100%;

    text-align: center;
}

.month ul {
    margin: 0;
    padding: 0;
}

.month ul li {

    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.month .prev {
    float: left;
    padding-top: 10px;
}

.month .next {
    float: right;
    padding-top: 10px;
}

.weekdays {
    margin: 0;
    padding: 10px 0;

}

.weekdays li {
    display: inline-block;
    width: 13.6%;

    text-align: center;
}

.days {
    padding: 10px 0;

    margin: 0;
}

.days li {
    list-style-type: none;
    display: inline-block;
    width: 13.6%;
    text-align: center;
    margin-bottom: 5px;
    font-size: 12px;

}

.days li .active {
    padding: 5px;

}

/* Add media queries for smaller screens */
@media screen and (max-width:720px) {

    .weekdays li,
    .days li {
        width: 13.1%;
    }
}

@media screen and (max-width: 420px) {

    .weekdays li,
    .days li {
        width: 12.5%;
    }

    .days li .active {
        padding: 2px;
    }
}

@media screen and (max-width: 290px) {

    .weekdays li,
    .days li {
        width: 12.2%;
    }
}

h5.course-title {
    display: flex;
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 600;

    line-height: 2.5rem;
    margin: 0;
    justify-content: space-between;
    align-items: center;
}

h5.course-title span a {
    font-size: 0.875rem;
    line-height: 21px;

    text-decoration: none;
    text-transform: uppercase;
}

h5.course-title-filter {
    display: flex;
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 600;

    line-height: 2.5rem;
    margin: 0;
    justify-content: space-between;
    align-items: center;
}

h5.course-title-filter span a {
    font-size: 0.875rem;
    line-height: 21px;

    text-decoration: none;
    text-transform: uppercase;
}

.f-title {
    display: flex;
    align-items: center;
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;

    line-height: 1.75rem;
    margin: 0 0 26px;
    justify-content: space-between;
}

.f-title .reset-button {
    float: right;
}

.f-title .reset-button input {
    background-color: transparent;
    border: 0;
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 1.5rem;
}

h6.filter-title {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 1.375rem;
    ;
    margin: 0 0 20px;
}

.filter-checkboxes {
    padding: 0 0 12px;
    margin: 0 0 20px;

}

.checkboxes .form-check-label {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;

    line-height: 1.37rem;
    margin-left: 6px;
}

.checkboxes .form-check {
    margin: 0 0 18px;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    border-radius: 0.25rem;

}

.form-check-input:focus,
.form-check-input:hover {
    box-shadow: none;
}



.filters {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    justify-content: space-around;
}

.filters li {
    width: fit-content;
    /* width: 40%; */
    margin: 0;
    padding: 0;
}

/* .filters li:first-child {
    width: 20%;
} */
.col-form-label {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
}

.filter-results {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;

    line-height: 2rem;
    margin: 0 0 26px;
}

.filter-results-filter {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;

    line-height: 2rem;
    margin: 0;
}

.filter-select {
    background-color: transparent;
    border-radius: 24px;

    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    padding: .5rem .75rem;
}

.filter-select:hover,
.filter-select:focus {
    outline: none;
    box-shadow: none;
}

.iscourse-grid {
    display: flex;
    flex-direction: column;

    border-radius: 24px;
    padding: 24px;
    margin: 0;
    list-style: none;
    /* height: calc(100% * 9 / 16); */
    height: 78vh;
    overflow-y: auto;
}

.iscourse-grid li {
    margin: 0;
    padding: 1.5rem 0;

}

.iscourse-grid li:first-child {
    padding-top: 0;
}

.iscourse-grid li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.course-box {

    border-radius: 20px;
    padding: 0;
    margin: 0 0 16px;
}

.course-imgholder {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 80px 0;
}

.course-imgholder img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.course-imgholder .university-logo {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;

    border: 0;
    text-align: center;
    padding: .75rem;
}

.course-imgholder .university-logo img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.course-details {
    display: flex;
    flex-flow: column wrap;
    margin: 0;
    padding: .5rem 0;
}

.course-details h2 {
    display: flex;
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 2rem;

    line-height: 2.5rem;
    margin: 0 0 8px;
    align-items: center;
    justify-content: space-between;
}

.title-area {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 0 8px;
    padding: 0;
}

.action-tools {
    display: flex;
    margin: 0 0 0 24px;
    padding: 0;
    text-align: right;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: .5rem 1.5rem;
    border-radius: 12px;
}

.btn-purple {
    /* background-color: #7342FF; */
    font-family: 'Gilroy-Bold', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    /* color: #fff; */
    line-height: 1.5rem;
}

/* .btn-purple:hover,
.btn-purple:focus {
    background-color: #9D7BFF;
    color: #fff;
} */



.btn-theme {
    min-width: 160px;

    padding: 12px 24px;
    border-radius: 16px;
    font-family: 'Gilroy-Bold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    text-decoration: none;
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
    border: 0;
    transition: all ease-in 0.3s;
}




.btn-secondary {

    padding: 12px 40px;
    border-radius: 40px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;

    text-decoration: none;
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
    border: 0;
    transition: all ease-in 0.3s;
}



.btn-transparent {

    padding: 12px 40px;
    border-radius: 40px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;

    text-decoration: none;
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
    border: 0;
    transition: all ease-in 0.3s;
}


.btn-light {

    padding: 12px 32px;
    border-radius: 16px;
    font-family: var(--btn-font);
    font-size: 1rem;

    line-height: 1.5rem;
    border: 0;
    transition: all ease-in 0.3s;
}





.share-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    text-align: center;
}

.favorite-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;

    text-align: center;
}

.info-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 1.5rem;
    padding: 0;
}

.info-area h3 {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;

    line-height: 1.875rem;
    ;
    margin: 0 0 8px;
}

.info-area h3 span {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
    display: block;
    margin: 8px 0 0 0;
}

.ielts-score {
    display: flex;
    text-align: right;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 12px;
}

.ielts-score p {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 1.375rem;
    margin: 0;
}

.score-box {
    display: flex;
    flex-direction: column;

    padding: 8px 16px;
    border-radius: 12px;
    text-align: center;
    list-style: none;
    margin: 8px 0 0 0;
}

.score-box li {
    margin: 0 0 8px 0;
    padding: 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
    border: 0;
}

.score-box li:last-child {
    margin-bottom: 0;
}

.score-box li span {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 1.375rem;
    margin-left: 8px;
}

p.course-text {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
}

p.course-text span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    ;
    display: block;
    margin: 24px 0 8px;

}

p.course-text span:first-child {
    margin-top: 0;
}

.iscourse-list {

    border-radius: 24px;
    padding: 40px;
    margin: 30px 0;
}

.course-data tbody,
.course-data thead {
    vertical-align: middle;
}

.course-data tr th {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    border-bottom: 0;
}

.course-data tr td {
    padding: 1em 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;

}

.course-data tr td span {
    display: block;
    font-size: 0.75rem;
    line-height: 1.125rem;

    margin: 4px 0 0 0;
}

.hidden {
    display: none;
}

.filter-mobile {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: start;
}

.filter-desktop {
    display: block;
}

.filter-top {
    display: flex;
}

.content-desktop {
    display: block;
}

.country-nav li {
    margin: 0 12px 0 0;
    padding: 0;
    border-radius: 24px;

}

.country-nav li:last-child {
    margin-right: 0;
}

.country-nav li a.nav-link {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 400;

    line-height: 1.5rem;
    padding: 8px 12px;


    border-radius: 24px;
}

.country-nav li a.nav-link img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}





.content-mobile {
    display: none;
}

.uni-tab {

    padding: 16px;
    border-radius: 24px;
}

.uni-tab li {

    border-radius: 20px;
    padding: 0;
    margin-bottom: 12px;

}

.uni-tab li:last-child {
    margin-bottom: 0;
}

.uni-tab li .nav-link {
    display: flex;
}

.uni-tab li .img-area {
    width: 64px;
    height: 64px;

    border-radius: 12px;
    padding: 8px 0;
    text-align: center;
    margin: 0 12px 0 0;
}



.uni-tab li .img-area img {
    max-width: 100%;
    height: auto;
}

.uni-tab li .txt-area {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
}

.uni-tab li .txt-area span {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 21px;
}


.uni-tab li .nav-link.active {

    border-radius: 20px;

}



.uni-tab-content {

    border-radius: 24px;
    padding: 24px;
}

.uni-container {

    border-radius: 20px;
    padding: 24px;
}

.uni-img-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 60px 0;
    padding: 0;
    border-radius: 20px;
}

.uni-img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.uni-logo {
    position: absolute;
    bottom: -80px;
    left: 8%;
    width: 160px;
    height: 160px;
    border-radius: 50%;

    padding: 25px 2rem;
}

.uni-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.uni-name {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 600;

    line-height: 2rem;
    margin: 10px 0;
}

.uni-country {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    font-weight: 500;

    line-height: 1.875rem;
    margin: .5rem 0;
}

.uni-text {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 400;

    line-height: 1.5rem;
}

.universities-grid {
    display: flex;
    flex-direction: column;

    border-radius: 24px;
    padding: 24px;
    margin: 0;
    list-style: none;
    height: 78vh;
    overflow-y: auto;
}

.universities-grid li {
    margin: 0;
    padding: 0;
}

.universities-grid li:first-child {
    padding-top: 0;
}

.uni-course {
    padding: 24px 0;
    margin: 0;

}

.uni-course-title {
    font-family: 'Gilroy-SemiBold';
    font-size: 1.25rem;

    line-height: 1.75rem;

    margin: 0;
}

.course-table tr th {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    letter-spacing: -2%;
}

.course-table tr td {
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    letter-spacing: -2%;
    margin: 15px 0;
    padding: 0;
    vertical-align: middle;
}

.course-table tr:last-child td {
    border-bottom: 0;
}

.course-table tr td span {
    display: block;
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 500;

    line-height: 1.125rem;
}

.course-table tr td:last-child {
    float: right;
}

.top-filter {
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.top-filter li {
    margin: 0;
    padding: 0;
}

#search-menu {
    position: fixed;
    width: 90%;
    height: auto;
    top: -20rem;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
    display: flex;
    flex-flow: row wrap;

    border-radius: var(--border-radius);
    margin: 1rem auto;
}

#search-menu.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

#search-menu .wrapper {
    position: relative;
    margin: 0 auto 0 auto;
    padding: 0.5rem 1rem;
    width: 100%;
}

.application-box {
    display: flex;

    border-radius: 16px;
    padding: 20px 16px 20px 16px;
    margin: 0 0 8px;
    align-items: center;
    justify-content: space-between;
}

.application-box .img-area {

    width: 50px;
    height: 40px;
    border-radius: 50%;
    margin: 0 12px 0 0;
    text-align: center;
}

.application-box .img-area img {
    max-width: 100%;
    height: auto;
}

.application-box .profile-circle {
    width: 50px;
    height: 40px;
    border-radius: 50%;

    margin: 0 12px 0 0;
    text-align: center;
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;

    line-height: 40px;
}

.application-box.disabled {
    opacity: 0.5;
}

.application-box .content-area {
    width: -webkit-fill-available;
    margin: 0;
    padding: 0;
    text-align: left;
}

.application-box .content-area h4 {
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
    margin: 0;
}

.application-box .content-area h4 span {
    display: block;
    margin: 8px 0 0 0;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
}

.application-box .actionbar {
    margin: 0;
    padding: 0;
}

.application-box .actionbar a {
    width: 32px;
    height: 32px;

    border-radius: 50%;
    text-align: center;
    display: block;
    line-height: 32px;
}

@media only screen and (max-width: 991px) {

    /* Force table to not be like tables anymore */
    .responsive-tables table,
    .responsive-tables thead,
    .responsive-tables tbody,
    .responsive-tables th,
    .responsive-tables td,
    .responsive-tables tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .responsive-tables thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }



    .responsive-tables td {
        /* Behave  like a "row" */
        border: none;

        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

    .responsive-tables td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: auto;
        left: 6px;
        width: 25%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 500;
    }

    /*
	Label the data
	*/
    .responsive-tables td:before {
        content: attr(data-title);
    }

    .course-table tr td {
        padding: 15px 0 15px 30%;
    }

    .course-table tr td:last-child {
        text-align: left;
        float: none;
    }
}

.progress-chart {
    display: block;
    margin: 0;
    max-width: 80%;
    max-height: 250px;
    height: 48px;
}

.progress-bg {
    fill: none;

    stroke-width: 3.8;
}

.progress {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}




.form-heading {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 500;

    line-height: 2.25rem;
    text-align: center;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 6px;
}





.profile-form {
    margin: 0;
    padding: 3.5rem;
}

.form-title {
    font-size: 2.125rem;
    font-weight: 600;

    line-height: 3.25rem;
    margin: 0;
    display: block;
}

.form-subtitle {
    font-size: 1.25rem;
    font-weight: 500;

    line-height: 1.875rem;
    margin: 0 0 1.5rem 0;
    display: block;
}

.form-control {
    position: relative;

    border-radius: 12px;

    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem;
}

.form-control:focus,
.form-control:hover {
    box-shadow: none;

}



.form-select {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem;
}

.form-select:focus,
.form-select:hover {
    box-shadow: none;

}



.field-icon {
    position: relative;
    margin: 0;
    padding: 0;
}

.field-icon span {
    position: absolute;
    right: 20px;
    top: 8px;
    font-family: 'bootstrap-icons';
    font-size: 1.5rem;

    z-index: 1;
}

.field-phone {
    position: relative;
    margin: 0;
    padding: 0;
}

.field-phone .country-code {
    position: absolute;
    left: 16px;
    top: 12px;
    font-size: 1rem;

    padding: 8px 12px;
    border-radius: 8px;

    z-index: 99;
}

.field-phone .country-code select {
    border: 0;
}

.field-phone .country-code select:focus,
.field-phone .country-code select:hover {
    border: 0;
    outline: none;
}

.form-control[type=tel] {
    padding-left: 124px;
}

.form-bottom {

    padding: 2.5rem 0;
    margin: 0;
}

.your-application-box {

    border-radius: var(--border-radius);
    padding: 25px 16px;
    margin: 0 0 2rem;

    text-align: center;
}

.your-application-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.mb-20 {
    margin-bottom: 20px;
}

.profile-box {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    margin: 0 0 2rem;

    text-align: center;
}

.profile-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.profile-header {
    display: flex;
    flex-flow: column wrap;
}

.profile-box .img-holder {
    position: relative;
    border-radius: 20px;
    text-align: center;
    margin: 0 0 4rem;
}

.profile-box .img-holder img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.profile-box .img-holder svg {
    width: 96px;
    height: 96px;
    position: absolute;
    left: 50%;
    bottom: -3rem;
    transform: translateX(-50%);

    border-radius: 50%;

}

.profile-box .img-holder svg .outline {

    fill: none;
    stroke-width: 4px;
}



.profile-box .img-holder svg .percentage {
    font-family: var(--primary-font);
    font-size: 0.5rem;
    font-weight: 500;

    line-height: 2.25rem;
    stroke: none;
}

.badge {
    border-radius: 12px;
}

.profile-title {
    font-family: 'Gilroy-SemiBold';
    font-size: 1.25rem;

    line-height: 1.375rem;
    text-align: center;
}

.profile-title span {
    font-size: 1rem;
}

.profile-price {
    font-family: 'Gilroy-SemiBold';
    font-size: 2rem;

    line-height: 2.5rem;
    text-align: center;
}

.profile-price span {
    font-size: 1rem;
}

.profile-text {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
    text-align: center;
    margin: .5rem 0 1.5rem 0;
}

.price-label {
    font-family: var(--primary-font);
    font-size: 0.875rem;
    font-weight: 600;

    line-height: 1.375rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.dummy-box {

    padding: 1.5rem;
    border-radius: 1.25rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;

    line-height: 1.5rem;
    text-align: center;
}

hr {
    opacity: 1;

    margin: 1.5rem 0;
}

.circle-link {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;

    text-decoration: none;
    text-align: center;
    transition: all ease-in 0.3s;
}

.circle-link a {
    line-height: 32px !important;
}



.card-img {
    width: 100%;
    height: auto;
    margin: 0 0 1.25rem;
}

.form-accordion {
    margin: 0;
    padding: 0;
}

.form-accordion .accordion-item:first-child {
    border-top: 0 !important;
}


.form-accordion .accordion-button {
    font-family: var(--primary-font);
    font-size: 1.25rem;
    font-weight: 600;

    line-height: 3.25rem;
}



.form-accordion .accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.form-accordion .accordion-button::after {
    width: 40px;
    height: 40px;

    border-radius: 50%;
    background-position: center;
}

.form-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    outline: 0;
}



.breadcrumb-item {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
}

.breadcrumb-item.active {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
}

.btn-circle {
    width: 32px;
    height: 32px;

    border-radius: 50%;
    text-align: center;
    line-height: 32px;
}



.toolbar {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    padding: 0;
    align-items: center;
}

.btn-more {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px;
    gap: 4px;

    border-radius: 8px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;

    line-height: 1.375rem;
}

.btn-nmore i {
    font-size: 1.125rem;
}

#filter-close {
    display: none;
}

.bottom-menu {
    display: none;
}

#sort {
    cursor: pointer;
}

#filter {
    cursor: pointer;
}

.filter-apply input {

    border: 0;
    font-family: 'Gilory-Bold', 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 24px;
}

.universities-box {

    border-radius: 24px;
    padding: 24px;
    margin: 24px 0;
}

.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 60%;
    height: 40px;
}

.select-styled {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    padding: 0 12px 0 12px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    border-radius: 24px;
    font-family: 'Poppins', Arial;
    font-size: 0.875rem;
    font-weight: 500;

    line-height: 2.5rem;
}

.select-styled:after {
    content: "\f282";
    width: 0;
    height: 0;
    position: absolute;
    font-family: "bootstrap-icons";
    font-size: 1.125rem;

    top: 0;
    right: 32px;
}





.select-styled:active:after,
.select-styled.active:after {
    content: '\f286';
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 8px 0 0 0;
    padding: 0;
    list-style: none;

    border-radius: 24px;

}

.select-options li {
    margin: 0;
    padding: 12px 0;
    text-indent: 15px;
    -moz-transition: all 0.15s ease-in;
    -o-transition: all 0.15s ease-in;
    -webkit-transition: all 0.15s ease-in;
    transition: all 0.15s ease-in;

}

.select-options li:first-child {
    border-radius: 24px 24px 0 0;
}

.select-options li:last-child {
    border-radius: 0 0 24px 24px;
    border-bottom: 0;
}



.select-options li[rel="hide"] {
    display: none;
}

.form-fields {
    display: block;
    margin: 0;
    padding: 0;
    /* height: calc(100% * 9 / 16); */
    height: 68vh;
    overflow-y: auto;
}

.mCSB_inside>.mCSB_container {
    margin-right: 15px;
}

.sort-filter-sm {
    display: none;
}

.courseScroll .mCSB_outside+.mCSB_scrollTools {
    right: -15px;
}

.uniScroll .mCSB_outside+.mCSB_scrollTools {
    right: -15px;
}

.form-box {
    position: relative;
    margin: 0;
    padding: 0;
    height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.bottom-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    margin: 0;

    border-radius: 0 0 24px 24px;
    padding: 24px;
    z-index: 1021;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

input[type="date"]::-moz-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.your-application-box img {
    height: 360px;
}

.profile-box .img-holder img {
    height: 378px;
}

.profile-box img {
    height: 70px;
}

.student-table thead>tr>th {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
    text-align: left;
}

.student-table tbody>tr {

    border-radius: 16px;
    margin: 8px 0;

}

.student-table thead>tr>th:nth-child(1) {
    width: 30%;
}

.student-table thead>tr>th:nth-child(2) {
    width: 32%;
}

.student-table thead>tr>th:nth-child(3) {
    width: 23%;
}

.student-table thead>tr>th:nth-child(4) {
    width: 15%;
}

.student-lists {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.student-lists li {
    width: 100%;

    border-radius: 16px;
    padding: 16px 12px;
    margin: 0 0 8px 0;
}

.student-details {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
    justify-content: start;
}

.student-details li {
    margin: 0;
    padding: 0;
    text-align: left;
    display: flex;
    align-items: center;
}

.student-details li:nth-child(1) {
    width: 30%;
}

.student-details li:nth-child(2) {
    width: 32%;
}

.student-details li:nth-child(3) {
    width: 23%;
}

.student-details li:nth-child(4) {
    width: 15%;
}

.student-details img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 12px 0 0;
}

.student-details .st-name {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
}

.student-details li img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 12px 0 0;
}

.student-details li .st-name {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
}

.courseDetails {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
    text-align: left;
}

.courseDetails span {
    display: block;
    font-size: 0.75rem;

    line-height: 1.125rem;
}

.student-table-box {

    border-radius: 2.5rem;
    padding: 0 0 2.5rem 0;
    margin: 0;
}

.student-data {
    margin: 0;
    padding: 0;
    border-radius: 2.5rem;
}

.student-data thead {

    border-radius: 2.5rem;
    padding: 1rem;
    margin: 0;
}

.student-data thead tr>th {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;

    line-height: 1.375rem;
    text-transform: uppercase;
    padding: 1rem;
}

.student-data tbody tr>td {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
    padding: 1rem;
    /* border-bottom: 1px solid #F7F7FC; */
}



.student-data tbody tr>td img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
}

.student-data tbody tr>td a {
    margin: 0 12px;
}

.student-data tbody tr>td a:first-child {
    margin-left: 0;
}

.student-data tbody tr>td a:last-child {
    margin-right: 0;
}

.pagination {
    --bs-pagination-border-width: 0;
    gap: 24px;
}

.pagination .page-link {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;

    line-height: 1.5rem;
}

.pagination li:first-child a {

    border-radius: 50% !important;
}

.pagination li:last-child a {

    border-radius: 50% !important;
}





.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    align-items: center;
    justify-content: space-around;

    text-align: center;
    z-index: 1049;
}

.bottom-menu li a {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;

}

.bottom-menu li a i {
    font-size: 1.5rem;
}

.filter-box-sm {
    position: fixed;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    display: none;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 8px 0;
    gap: 8px;

    border-radius: 12px;
    flex: none;
    order: 0;
    flex-grow: 0;
    list-style: none;
    z-index: 99999;
}

.filter-box-sm li {
    width: 50%;
    margin: 0;
    padding: 0;
    text-align: center;
    flex-direction: row;

}

.filter-box-sm li:last-child {
    border-right: 0;
}

.filter-box-sm li div {
    font-family: 'Gilroy-Bold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 1.5rem;
}

.filter-box-sm li div svg {
    margin-right: 12px;
}

.tablet {
    display: none;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}


.form-header {
    margin: 48px 0 32px 0;
    padding: 0;
}

.form-heading {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;

    line-height: 2rem;
    text-align: left;
}

.btn-theme-light {
    min-width: 160px;

    padding: 12px 24px;
    border-radius: 16px;
    font-family: 'Gilroy-Bold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    text-decoration: none;
    line-height: 1.5rem;
    letter-spacing: 0.01rem;
    border: 0;
    transition: all ease-in 0.3s;
}





.form-tab-container {

    border-radius: 24px;
    padding: 20px 0;
    margin: 0 0 64px 0;
}

.form-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: space-around;
}

.form-nav li {

    text-align: center;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.form-nav li a svg {

    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 8px;

    stroke-width: 1px;
}



.form-nav li a.active div {
    display: flex;
}

.form-nav li a {
    display: flex;
    align-items: center;
}

.form-nav li a div {
    display: none;
    flex-direction: column;
    margin: 0 0 0 16px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;

    line-height: 24px;
    text-align: left;
}

.form-nav li a div .steps {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;

    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.36px;
}

.form-container {

    border-radius: 24px;
    padding: 40px;
    margin: 0 0 40px 0;
}

.formTitle {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;

    line-height: 2rem;
    margin: 0 0 8px 0;
}

.formText {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;

    line-height: 24px;
    margin: 0 0 40px 0;
}

.formLabel label {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 22px;
    margin: 0 0 24px 0;
}

.formLabel select {

    border-radius: 12px;
    padding: 0 12px 0 20px;
    height: 64px;
}

.upload-fields {

    border-radius: 12px;
    padding: 0 16px 0 20px;
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 12px;
    height: 64px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    margin: 0 0 2rem 0;
}

.hidden-file-input {
    display: none;
}


.form-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.form-separator {
    position: relative;
    width: 100%;
    height: 2px;

    margin: 15px 0;
    padding: 0;
}

.form-separator:after {
    content: 'or fill application manually';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 16px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;

    line-height: 32px;

}

.form-area {
    margin: 40px 0 80px 0;
    padding: 0;
}

.form-head {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;

    line-height: 32px;
    position: relative;
}

.form-head span {
    display: block;
    margin: 8px 0 0 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;

    line-height: 1.5rem;
}

.form-subhead {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 22px;
    position: relative;
    margin: 3rem 0 1.5rem 0;
}

.form-subhead span {
    display: block;
    margin: 8px 0 0 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
}

.field-textarea textarea {
    margin: 0;
}

.field-textarea p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;

    line-height: 1.375rem;
    text-align: right;
    margin: 8px 0 0 0;
}

.course-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;

    margin: 0;
    padding: 24px 0;
}

.spacer {
    height: 120px;
}

.applied-course {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: start;
}

.applied-course img {
    max-width: 100%;
    height: 64px;
    object-fit: cover;
    margin-right: 16px;
}

.applied-course .acn h3 {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;

    line-height: 28px;
    margin: 0 0 8px 0;
}

.applied-course .acn h3 span {
    display: block;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;

    line-height: 18px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.applied-course .acn p span {
    display: block;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;

    line-height: 18px;
    margin: 0 0 4px 0;
}

.applied-course .acn p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;

    line-height: 18px;
}

.reviewForm {
    margin: 2rem 0;
    padding: 0;
}

.reviewForm .accordion-item {
    border: 0;

}

.reviewForm .accordion-header {
    border: 0;
}

.reviewForm .accordion-button {
    padding: 2rem 0;
}

.reviewForm .accordion-button h3 {
    margin: 0;
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1rem;

    line-height: 1.375rem;
}

.reviewForm .accordion-button h3 .reviewTag {
    display: none;
}

.reviewForm .accordion-button:not(.collapsed) {

    box-shadow: none;
    align-items: baseline;
}

.reviewForm .accordion-button:focus {
    box-shadow: none;
}

.reviewForm .accordion-button:not(.collapsed) h3 {

    font-size: 1.5rem;

    line-height: 2rem;
}

.reviewForm .accordion-button:not(.collapsed) h3 .reviewTag {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;

    line-height: 1.5rem;
    display: block;
}

.reviewForm .accordion-button::after {
    width: 24px;
    height: 24px;
    border-radius: 50%;

    background-size: 1rem;
    background-position: center center;
}

.document-type-container {
    width: 50%;
}

.start-box {

    border-radius: 24px;
    padding: 24px 16px;
    margin: 0 0 56px 0;
}

.start-box h3 {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;

    line-height: 1.75rem;
    margin: 0;
}

.favourite-course-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 0;
    margin: 24px 0;
    flex-wrap: wrap;
}

.favourite-course-grid li {
    width: 49%;

    border-radius: 12px;
    padding: 16px;
    display: flex;
}

.favourite-course-grid li img {
    max-width: 100%;
    height: 64px;
    margin: 0 16px 0 0;
}

.favourite-course-grid li h4 {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;

    line-height: 1.75rem;
    margin: 0 0 8px 0;
}

.favourite-course-grid li p {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;

    line-height: 1.125rem;
    margin: 0 0 4px 0;
}

.start-title {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.5rem;

    line-height: 2rem;
    margin: 1.5rem 0 2rem 0;
}

.start-breadcrumb {
    font-family: 'Gilroy-Bold', Arial, Helvetica, sans-serif;
    font-size: 0.875rem;

    line-height: 1.25rem;
    letter-spacing: 0.14px;
    margin: 0;
}

.relevant-courses {
    font-family: 'Gilroy-SemiBold', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;

    line-height: 1.75rem;
    margin: 0 0 24px 0;
}

.relevant-course-box {

    padding: 1.5rem;
    border-radius: 24px;
    margin: 0 0 12px 0;
}

.course-separator {
    width: 100%;
    height: 2px;

    margin: 20px 0;
    padding: 0;
}

@media only screen and (max-width: 1024px) {

    /* Force table to not be like tables anymore */
    #studentList table,
    #studentList thead,
    #studentList tbody,
    #studentList th,
    #studentList td,
    #studentList tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    #studentList thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    /* #studentList tr { border: 1px solid #ccc; } */

    #studentList td {
        /* Behave  like a "row" */
        border: none;

        position: relative;
        padding-left: 32%;
        white-space: normal;
        text-align: left;
    }

    #studentList td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 15px;
        left: 15px;
        width: 30%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /*
	Label the data
	*/
    #studentList td:before {
        content: attr(data-title);
    }

    .student-details {
        flex-wrap: wrap;
    }

    .student-details li:nth-child(1) {
        width: 50%;
    }

    .student-details li:nth-child(2) {
        width: 50%;
    }

    .student-details li:nth-child(3) {
        width: 50%;
    }

    .student-details li:nth-child(4) {
        width: 50%;
    }

    /* .courseDetails {
        margin-top: 15px;
    } */

    /* Force table to not be like tables anymore */
    .studentList table,
    .studentList thead,
    .studentList tbody,
    .studentList th,
    .studentList td,
    .studentList tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .studentList thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }



    .studentList td {
        /* Behave  like a "row" */
        border: none;

        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

    .studentList td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        left: 20px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    /*
	Label the data
	*/
    .studentList td:before {
        content: attr(data-title);
    }
}

@media (min-width: 575px) and (max-width: 1199px) {
    .search-area {
        min-width: auto;
    }

    .desktop {
        display: none;
    }

    .tablet {
        display: block;
    }

    .content-desktop {
        display: block;
    }

    .filter-desktop {
        display: none;
    }

    .bottom-menu {
        display: flex;
    }

    header {
        padding: 15px 20px;
        margin: 0 0 10px 0;
    }

    .fixed-header {
        padding: 0 0 20px 0;
    }

    h2 {
        font-size: 1.25rem;
    }

    .subtext {
        font-size: 1rem;
    }

    .profile-title {
        font-size: 1rem;
    }

    .filter-box-sm {
        display: flex;
    }

    .customize-mobile {
        width: 100%;
        position: fixed;

        top: 0;
        left: 0;
        padding: 30px;
        z-index: 9999;
        height: 100%;
        overflow: scroll;
        display: none;
    }

    #filter-close {
        display: flex;
    }

    .form-header {
        margin: 24px 0 16px 0;
    }

    .form-tab-container {
        margin: 0 0 32px 0;
        padding: 10px 0;
    }

    .form-head {
        font-size: 1.25rem;
    }

    .form-head span {
        font-size: 0.875rem;
        margin: 4px 0 0 0;
    }

    .reviewForm {
        margin: 1rem 0;
    }

    .reviewForm .accordion-button {
        padding: 1rem 0;
    }

    .reviewForm .accordion-button:not(.collapsed) h3 {
        font-size: 1.25rem;
    }

    .reviewForm .accordion-button:not(.collapsed) h3 .reviewTag {
        font-size: 0.875rem;
    }

    .applied-course .acn h3 {
        font-size: 1rem;
        line-height: 22px;
    }

    .favourite-course-grid li {
        width: 100%;
    }

    .start-title {
        font-size: 1.25rem;
        margin: 1rem 0 0 0;
    }
}

@media (max-width: 574px) {
    .collapse:not(.show) {
        display: none !important;
    }

    .filter-top {
        display: none;
    }

    .filter-desktop {
        display: none;
    }

    .content-desktop {
        display: none;
    }

    .desktop {
        display: none;
    }

    .tablet {
        display: none;
    }

    .mobile {
        display: block;
    }

    .bottom-menu {
        display: flex;
    }

    .filter-box-sm {
        display: flex;
    }

    .dashboard-right {
        /* padding: 16px; */
        padding: 0;
    }

    .profile-display {
        padding: 16px;
        margin: 0 0 20px 0;
        align-items: start;
    }

    .application-box .content-area h4 {
        font-size: 0.875rem;
    }

    .application-box .content-area h4 span {
        font-size: 0.75rem;
        margin: 4px 0 0 0;
    }

    .content-area {
        margin: 0 0 0 10px;
    }

    .content-area h3 {
        font-size: 1rem;
        line-height: 1.875rem;

        margin-bottom: 0;
    }

    .content-area p.subtext {
        font-size: 0.75rem;
        line-height: 20px;

    }

    .tab-area {
        padding: 0;
    }

    h3.title {
        font-size: 1rem;
        line-height: 1.375rem;

        margin: 0 0 16px 0;
        display: flex;
        justify-content: space-between;
    }

    h3.title span a {
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 20px;

        text-decoration: none;
    }

    .box-fafafa {
        padding: 12px;
    }

    h4.title {
        font-size: 1rem;
        line-height: 1.875rem;

        display: flex;
        justify-content: space-between;
    }

    h4.title span a {
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 20px;

        text-decoration: none;
    }

    .box-fafafa h5 {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .box-fafafa p {
        font-size: 0.875rem;
        line-height: 22px;
    }

    .your-applications .nav-link {
        font-size: 0.875rem;
        line-height: 20px;
        padding: .5rem .75rem;
    }

    h5.course-title {
        display: block;
        font-size: 1.25rem;
        line-height: 1.875rem;

        margin-bottom: 0;
    }

    h5.course-title span {
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 21px;

        display: block;
        margin: 4px 0 0 0;
    }

    .iscourse-grid {

        margin: 16px 0 30px 0;
        padding: 0;
    }

    .iscourse-grid li {
        border-bottom: 0;
        padding: 0;
    }

    .iscourse-list {

        margin: 16px 0 30px 0;
        padding: 12px;
    }

    .course-box {
        padding: 1rem .75rem;
        margin: 0 0 .75rem;

        border-radius: 20px;
    }

    .course-imgholder {
        margin: 0 0 84px;
        text-align: center;
    }

    .course-imgholder img {
        width: auto;
        max-width: 100%;
        height: 200px;
        border-radius: 16px;
    }

    .course-imgholder .university-logo {

        bottom: -60px;
        width: 120px;
        height: 120px;
        padding: 12px;
    }

    .course-details {
        padding: 0;
    }

    .course-details h2 {
        font-size: 1.25rem;
        line-height: 1.75rem;
        text-align: left;
    }

    /* .action-tools {
        display: none;
    } */
    .info-area {
        margin: 0;
        flex-direction: column;
        align-items: start;
    }

    .info-area h3 {
        font-size: 0.875rem;
        line-height: 1.25rem;
        text-align: left;
        margin-bottom: 4px;
    }

    .info-area h3 span {
        font-size: 0.75rem;
        line-height: 18px;
        text-align: center;
    }

    .ielts-score p {
        font-size: 0.875rem;
        line-height: 21px;
    }

    .search-area {
        min-width: 100%;
    }

    p.course-text {
        font-size: 0.875rem;
        line-height: 400;
        line-height: 21px;
        margin: 15px;
    }

    p.course-text span {
        font-size: 0.875rem;
        line-height: 21px;
        font-weight: 500;
    }

    .uni-logo {
        bottom: 20px;
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .uni-img-container {
        margin: 0;
    }

    .uni-name {
        font-size: 1.25rem;
        line-height: 1.875rem;
        ;
    }

    .uni-country {
        font-size: .875rem;
        line-height: 1rem;
    }

    .uni-tab-content {
        padding: 0;
    }

    .uni-container {
        padding: 12px;
    }

    .uni-course {
        padding: 12px;
    }

    .country-nav li {
        width: 46%;
    }

    .top-filter {
        flex-flow: column wrap;
        align-items: start;
    }

    .top-filter li {
        padding: 4px 0;
    }

    .btn-theme {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }

    .profile-form {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }

    .form-control {
        padding: 0.75rem 0.75rem;
        margin: 0 0 1rem;
    }

    .form-select {
        padding: 0.75rem;
        margin: 0 0 1rem;
    }

    .field-phone .country-code {
        left: 8px;
        top: 6px;
        padding: 5px;
    }

    .form-heading {
        font-size: 1.25rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .your-application-box {
        border-radius: 20px;
        padding: 1rem 0.75rem;
    }

    .profile-box {
        border-radius: 20px;
        padding: 1rem 1.375rem;
    }

    .profile-header {
        flex-flow: row;
    }

    .profile-box img {
        width: 80px;
        height: 80px;
        margin-right: 16px;
        border-radius: 20px;
    }

    .profile-box a {
        width: 100%;
        margin-top: 8px;
    }

    .profile-title {
        font-size: 1.25rem;
        text-align: left;
    }

    .profile-text {
        font-size: .875rem;
        line-height: 1.125rem;
        text-align: left;
    }

    .profile-box .img-holder {
        margin: 0;
        background: none;
    }

    .profile-box .img-holder svg {
        position: relative;
        width: 64px;
        height: 64px;
        margin: 0 16px 0 0;
        bottom: 0;
        left: 0;
        transform: none;
        box-shadow: none;
    }

    .circular-chart {
        max-width: auto !important;
        max-height: auto !important;
    }

    .dummy-box {
        font-size: 0.875rem;
        line-height: 1.375rem;
    }

    .profile-box .card-img {
        width: 100%;
        height: auto;
    }

    header {
        margin: 0;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .subtext {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .box-white {
        padding: 1rem;
    }

    .flinks a {
        font-size: 0.875rem;
        line-height: 1.375rem;
    }

    /* .toolbar li:last-child {
        padding: 0;
    } */
    .course-grid {
        padding: 0;
        margin: 0;
    }

    .filter-results {
        font-size: 0.75rem;

        line-height: 1.125rem;
        margin: 0;
    }

    .toolbar {
        margin: 1.25rem 0;
    }

    .score-box {
        width: 100%;
        font-size: 1.25rem;
        line-height: 1.75rem;
        margin: 1.25rem 0;
    }

    .score-box li span {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    header {
        padding: 0;
    }

    .customize-mobile {
        width: 100%;
        position: fixed;

        top: 0;
        left: 0;
        padding: 30px;
        z-index: 9999;
        height: 100%;
        overflow: scroll;
        display: none;
    }

    /* h5.course-title {
        display: none;
    }
    .filter-results {
        display: none;
    } */
    #filter-close {
        display: inline-block;
        margin-right: 10px;
    }

    .checkboxes .form-check-label {
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1.5rem;
    }

    h6.filter-title {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    h5.course-title-filter {
        display: none;
    }

    .filter-results-filter {
        display: none;
    }

    .mobileNav .nav-link {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .f-title .reset-button {
        display: none;
    }

    .sort-filter-sm {
        position: absolute;
        width: 100%;
        height: 30%;
        bottom: 0;
        left: 0;
        overflow: hidden;

        transition: all 1s;
        border-radius: 20px 20px 0 0;
        padding: 24px 20px 16px 20px;
        z-index: 999999;
        display: block;
    }

    .sort-filter-sm.close {
        top: 100%;
        height: 0;

        display: none;
    }

    .sort-filter-sm h6 {
        font-family: 'Gilroy-SemiBold';
        font-size: 1.25rem;

        line-height: 1.75rem;
    }

    .sort-options {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .sort-options li {
        margin: 0;
        padding: 16px 0;
        font-family: 'Poppins', Arial, Helvetica, sans-serif;
        font-size: 0.875rem;
        font-weight: 500;

        line-height: 1.375rem;
    }

    .filterScroll {
        overflow-y: hidden;
    }

    .form-accordion .accordion-button {
        font-size: .875rem;
        line-height: 3rem;
        padding: 0;
    }

    .form-accordion .accordion-button::after {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .form-accordion .accordion-body {
        padding: .5rem 0;
    }

    #search-menu.toggled {
        top: 50%;
        transform: translateY(-50%);

        padding: 15px 0;
    }

    #search-menu .wrapper input {
        margin: 0;
    }

    .form-header {
        margin: 24px 0 16px 0;
    }

    .form-tab-container {
        margin: 0 0 32px 0;
        padding: 10px 0;
    }

    .form-head {
        font-size: 1.25rem;
    }

    .form-head span {
        font-size: 0.875rem;
        margin: 4px 0 0 0;
    }

    .reviewForm {
        margin: 1rem 0;
    }

    .reviewForm .accordion-button {
        padding: 1rem 0;
    }

    .reviewForm .accordion-button:not(.collapsed) h3 {
        font-size: 1.125rem;
    }

    .reviewForm .accordion-button:not(.collapsed) h3 .reviewTag {
        font-size: 0.875rem;
    }

    .applied-course .acn h3 {
        font-size: 1rem;
        line-height: 22px;
    }

    .reviewForm .accordion-body {
        padding: 0;
    }

    .form-area {
        margin: 20px 0;
    }

    .field-icon span {
        top: 0;
    }

    .form-control {
        font-size: 0.875rem;
    }

    .form-container {
        padding: 20px;
    }

    .document-type-container {
        width: 100%;
    }

    .form-separator:after {
        font-size: 1rem;
        width: 67%;
    }

    .favourite-course-grid li {
        width: 100%;
        padding: 12px;
    }

    .favourite-course-grid li h4 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .customize-mobile {
        padding-bottom: 100px;
    }

    .student-table tbody>tr {

        border-radius: 16px;
        /* margin: 8px 0; */

    }
}