.dashboard-container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 20px;
    display: flex;
    gap: 10px;
}


.body-container {
    width: 100%;
    height: 100%;
    /* background-color: orange; */
}

.top-bar {
    width: 100%;
    height: 50px;
    align-items: center;
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
}

.profile-notification-container {
    width: 200px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}



.profile {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid black;
    object-fit: cover;
    object-position: center;
}

.bi-bell {
    padding-top: 6px;
    font-size: 25px;
}


.notification-wrapper {
    display: flex;
    align-self: center;
    justify-content: center;
    position: relative;
}

.notificatiobn-number {
    position: absolute;
    top: -5px;
    right: -10px;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    font-size: 10px;
    display: flex;
    color: white;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    background-color: var(--orange);
}


.profile-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
}

.profile-status {
    font-size: 10px;
    color: var(--blue);
}

.sidebar {
    background: linear-gradient(0deg, var(--orange), #ffcc7e);
    height: 100%;
    min-width: 200px;
    border-radius: 20px;
    position: relative;
}

.close-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    background-color: red;
    height: 30px;
    width: 25px;
    display: none;
}

.close-sidebar-icon{
    font-size: 24px;
    color: black;
    cursor: pointer;
}

.side-logo {
    width: 100%;
    display: block;
    max-width: 100px;
    margin: 20px auto;
}

.sidebar ul {
    list-style: none;
    padding: 10px;
    height: calc(100vh - 200px);
    overflow: auto;
    color: white;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    font-size: 16px;
    /* gap: 10px; */
}


.sidebar-link {
    padding: 10px 15px;
    display: block;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
}

.sidebar-link:hover {
    color: var(--blue);
    background-color: white;
    /* font-weight: 700; */
}

.sidebar-link.active {
    color: white !important;
    background-color: var(--blue);
    margin-bottom: 2px;
    margin-top: 2px;

}

.admin-body {
    height: calc(100vh - 90px);
    overflow: auto;
    /* display: flex; */
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    gap: 10px;
}

.admin-body::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.admin-body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--orange);
}


.greeting-container {
    background-color: var(--orange);
    height: 150px;
    width: 100%;
    border-radius: 15px;
    display: flex;
    position: relative;
    padding: 30px;
    align-items: center;
    justify-content: center;
}

.greeting-date {
    color: white;
    position: absolute;
    top: 15px;
    right: 20px;
}

.vistors-container {
    min-height: 300px;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.table-heading {
    font-size: 18px;
    font-weight: 600;
}


.page-title-bar {
    padding: 10px 15px;
    min-height: 20px;
    font-size: 20px;
    box-shadow: var(--shadow);
    border-radius: 10px 10px 0 0;
    border: 1px solid var(--orange-light);
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.page-title-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
}

.admin-section-box {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.setting-card {
    /* width: 200px; */
    min-height: 150px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    box-shadow: 1px 1px 10px 1px #00000030;
}

.setting-card-title {
    text-align: center;
    font-size: 20px;
    color: var(--orange);
    font-weight: 600;
}

.social-media-icon-img {
    height: 30px;
    width: 100%;
    object-fit: contain;
    display: block;
    margin: 10px auto;
}


.settings-cards-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}



.quotes-container-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns:repeat(auto-fill, minmax(300px, 1fr)) ;
}

.quotes-container {
    min-height: 200px;
    margin-bottom: 50px;
    background-color: var(--orange-light);
    background-color: #f0f0f0;
    width: 100%;
    /* border-radius: 50px 0 50px 50px; */
    border-radius: 5px;
    padding: 10px 20px;
}

.quote-said-by {
    font-size: 18px;
    text-align: center;
    font-weight: 600;

}

.white-line {
    width: 80%;
    margin: 10px auto;
    height: 2px;
    background-color: white;
}


.quote-body {
    padding-bottom: 30px;
}

.tabs-wrapper {
    display: flex;
}

.tab {
    padding: 8px 13px;
    border: 1px solid var(--orange);
    width: 100px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.tab:first-child {
    border-radius: 10px 0 0 10px;
}

.tab:last-child {
    border-radius: 0 10px 10px 0;
}

.tab:hover {
    background-color: #ffcc7e60;
}

.tab.active {
    color: white;
    background-color: var(--orange);
}


.tab-table-wrapper {
    /* height: calc(100vh - 310px); */
    width: 100%;
    /* border: 1px solid var(--orange); */
    border-radius: 0;
    /* overflow: auto; */
    /* padding: 10px; */
    padding-top: 20px;
}

.tab-table-wrapper::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.tab-table-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--orange);
}


.new-muslim-book-wrapper {
    display: flex;
    gap: 10px;
    padding: 5px;
    border-radius: 12px;
    color: white;
    border: 1px solid var(--orange);
    border: 1px solid white;
}

.new-muslim-book-wrapper:hover {
    cursor: default;
    color: black;
    background-color: #f2f2f2;
}

.new-muslim-book-thumbnail {
    width: 200px;
    min-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}


.new-muslim-book-title {
    font-family: var(--section-font) !important;
    font-weight: 600;
    font-size: 18px;
}

.new-muslim-book-description {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    height: 80px;
    overflow: hidden;
}

.new-muslim-book-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
    font-size: 16px;
}

.new-muslim-book-info i {
    color: var(--orange);
}

.new-muslim-book-info span {
    font-size: 13px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.new-muslim-article-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    grid-template-rows:  repeat(auto-fill, minmax(360px, 1fr));
    grid-gap: 10px;
}

.new-muslim-quote-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    grid-gap: 10px;
}


.new-muslim-artilce-card {
    width: 100%;
    /* background-color: #fff; */
    min-height: 320px;
    padding: 10px;
    color: black !important;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: .1s;

}

.new-muslim-artilce-card:hover {
    background-color: white;
    /* background-color: #3e3e3e; */
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.new-muslim-article-img {
    height: 170px;
    width: 100%;
    /* border-radius: 20px; */
    /* background-color: #f2f2f2; */
    object-fit: cover;
}

.new-muslim-article-title{
    font-size: 16px;
    line-height: 36px;
    height: 40px;
    overflow: hidden;
    font-weight: 600;
    text-align: left;

}

.new-muslim-article-description {
    /* color: var(--grey); */
    font-size: 20px;
    text-align: left;
    line-height: 22px;
    /* max-width: 220px; */
    /* height: 80px; */
    overflow: hidden;
    display: -webkit-box;
    /* Required for limiting lines in webkit browsers */
    -webkit-line-clamp: 3;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    /* Specifies the box is vertical */
    overflow: hidden;
    /* Hides overflowing content */
    text-overflow: ellipsis;
    /* Adds ellipsis to indicate overflow */
}


.link-button {
    color: var(--orange) !important;
    font-size: 16px;
    cursor: pointer;
}

.link-button:hover {
    color: var(--blue) !important;
}


#preview-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}


#editor img {
    width: 100%;
    /* max-height: 400px; */
}

#editor iframe {
    width: 100%;
    height: 400px;
}

.ql-snow .ql-tooltip {
    left: 50% !important;
    top: 20% !important;
    transform: translate(-50%, 50%) !important;
    scale: 1.2;
}

.ql-editor {
    min-height: 400px;
    /* background-color: #535353; */
    max-height: 400px;
}


.ql-container.ql-snow,
.ql-toolbar.ql-snow {
    border: 1px solid var(--orange) !important;
}


.filters-container {
    height: calc(100% - 10px);
    margin-right: 10px;
    margin-top: 10px;
    min-width: 300px;
    border-radius: 4px;
    color: white !important;
    border: 1px solid #ddd;
        position: sticky;
        top: 180px;
    /* background-color: red; */

    max-height: 60vh;
    overflow: auto;
    /* border: 1px solid white; */
}

#selected_category_label {
    color: white !important;
    margin-top: 10px;
    margin-bottom: 15px;
}

.filter-box-title {
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    text-align: center;
    padding: 10px;

}

.profile-img-card {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    color: white;
    border-radius: 50%;
    background-color: var(--orange-light);
}

.remarkable-pro-article-description {

    /* max-width: 344px; */
    overflow: hidden;
    word-break: break-word;
    line-height: 25px;
    line-height: 20px;
    font-size: 16px;
    height: 80px;

}


.course-container-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.course-container {
    min-height: 310px;
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    position: relative;
    box-shadow: var(--shadow);
}


.course-img {
    height: 120px;
    width: 100%;
    object-fit: fill;
    border-radius: 10px;
    border: 1px solid #eee;
}

.course-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    height: 40px;
    font-family: var(--section-font) !important;
    overflow: hidden;
}


.course-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 15px;
    height: 45px;
    overflow: hidden;
}

.discount {
    font-size: 12px;
    text-decoration: line-through;
}

.PriceNow {
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
}



.image-quote {
    height: 150px;
    width: 300px;


}

.contactus-img {
    min-height: 700px;
    width: 100%;
    object-fit: contain;
    /* background-color: var(--orange-light); */
    border-radius: 10px 0 0 10px;
}

.contact-field {
    height: 40px;
    padding: 3px 10px;
    border: none;
    background-color: transparent;
    resize: vertical;
    border-bottom: 1px solid var(--blue);
}

ul li {
    list-style: none;
    ;
}

.pagination {
    align-items: center;
}

.pagination button {
    height: 30px;
    border: 1px solid var(--orange);
    margin: 0 !important;
}

.pagination input,
.pagination span {
    height: 30px;
    align-items: center;
    display: flex;
    border: 1px solid var(--orange);
    border-right: none;
    border-left: none;
    padding: 10px;

}

.pagination input {
    background-color: #ff00001e;
}


.pagination button:first-child {
    border-radius: 6px 0 0 6px;
}

.pagination button:last-child {
    border-radius: 0 6px 6px 0;
}

.hero-section-clider-image {
    height: 100%;
    width: 100%;
}

.hero-section-clider-image img {
    height: 100%;
    width: 100%;
}

li:hover {
    background-color: transparent !important;
}

.remarkable-pro-artilce-card:hover {
    background-color: red;
}

.remarkable-pro-artilce-card:hover .remarkable-pro-body {
    background-color: white;

    box-shadow: 1px 1px 10px 1px #282a2e11;
}

.glide {
    width: 100%;
    height: auto;
}

.glide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #ccc; */
    font-size: 1.5rem;


    height: 200px;
}





.white-card-new-muslim {
    color: Black !important;
}

.white-card-new-muslim:hover {
    color: white !important;
}


.remarkable-project-card {
    color: white !important;
    border-radius: 20px;
    border: 1px solid white;
    width: 100%;
}


.remarkable-project-card img {
    border-radius: 20px 20px 0 0;
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.remarkable-project-card:hover {
    background-color: white !important;
    color: black !important;
}

.remarkable-project-description {
    font-size: 16px;
    line-height: 18px;
    height: calc(18px * 4);
    text-align: left;
    overflow: hidden;
}

.remarkable-project-title {
    font-size: 20px;
    line-height: 24px;
    height: 24px;
    text-align: left;
    font-family: var(--section-font) !important;
    overflow: hidden;
    font-weight: 600;

}

.home {
    background-color: block !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    /* background-attachment: fixed !important; */
    min-height: 70vh;
}

.custom-class-length {
    width: calc(100% - 45px);
}

a:not(.link-color),
a:visited:not(.link-color) {
    /* color: white !important ; */
}

/* a:hover {
    color: var(--orange) !important;
} */

.custom-label {
    color: black;
}

.flickity-prev-next-button {
    display: none;
}


.category-container-list:hover {
    background-color: var(--purple) !important;
    cursor: pointer;
}


.cate-name {
    white-space: nowrap;
    /* overflow: hidden; */
    text-overflow: ellipsis;
    /* width: 250px; */
}


.cate-name button {

    display: -webkit-box;
    /* Required for limiting lines in webkit browsers */
    -webkit-line-clamp: 1;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    /* Specifies the box is vertical */
    overflow: hidden;
    font-size: 16px;
    /* Hides overflowing content */
    text-overflow: ellipsis;
    /* Adds ellipsis to indicate overflow */
    max-width: 210px;

}


.cat-name-max-width {
    display: -webkit-box;
    /* Required for limiting lines in webkit browsers */
    -webkit-line-clamp: 1;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    /* Specifies the box is vertical */
    overflow: hidden;
    /* Hides overflowing content */
    text-overflow: ellipsis;
    /* Adds ellipsis to indicate overflow */
    max-width: 210px;
}

.search-bar{
    /* height: ; */
    /* max-width: 600px; */
    width: 100%;
    font-size: 16px;
    border-radius: 20px 0 0 20px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.2); */
    border: none;
    padding: 10px 20px;
    /* outline: none; */
}


.search-bar:focus {
    box-shadow: inset 0 0 0 2px var(--orange);
}



.admin-hamburger{
    display: none;
}

.ham{
    background-color: transparent;
    border: none;
    padding: 5px 0px;
    margin-left: -2px;
    font-size: 24px;
}

.ham:hover{
    cursor: pointer;
    color: white;
    border-radius: 2px;
    background: var(--purple);
}

