* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none !important;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.loader-page {
    background: #f8f8f8;
    color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-page span {
    position: absolute;
    display: inline-block;
    background-color: #00A54F;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    -webkit-animation: loader3 1.5s linear infinite;
    animation: loader3 1.5s linear infinite;
}

.loader-page span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
    0% {
        transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
@-webkit-keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.6;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #2C2C2C;
}

p {
    margin: 0;
    color: #2C2C2C;
}

input,
textarea,
a,
button {
    outline: none !important;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

a {
    color: #CEB47A;
}

a:hover {
    color: #CEB47A;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

a {
    text-decoration: none;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

body {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
    color: #2C2C2C;
}

.font-size-12 {
    font-size: 12px !important;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    color: #2F2F2F;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 7px;
}

.form-control {
    height: 53px;
    background-color: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    box-shadow: none;
    padding: 8px 20px;
    font-size: 14px;
    color: #283946;
}

.form-control:focus {
    box-shadow: none;
    background-color: #fff;
    border-color: #CEB47A;
}

textarea.form-control {
    height: auto;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.bg-primary {
    background-color: #CEB47A !important;
}

.text-primary {
    color: #CEB47A !important;
}

.border-primary {
    border-color: #CEB47A !important;
}

button {
    cursor: pointer;
}

.pointer {
    cursor: pointer;
}

.main-content {
    padding: 60px 0px;
}

.btn:focus,
.btn.focus {
    outline: 0;
    box-shadow: none;
}

::-moz-placeholder {
    color: #7C7F9D !important;
    font-size: 14px !important;
}

:-ms-input-placeholder {
    color: #7C7F9D !important;
    font-size: 14px !important;
}

::placeholder {
    color: #7C7F9D !important;
    font-size: 14px !important;
}

::-moz-placeholder {
    color: #7C7F9D !important;
    font-size: 14px !important;
}

::-ms-placeholder {
    color: #7C7F9D !important;
    font-size: 14px !important;
}

::-o-placeholder {
    color: #7C7F9D !important;
    font-size: 14px !important;
}

::-webkit-placeholder {
    color: #7C7F9D !important;
    font-size: 14px !important;
}

.box-shadow {
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12) !important;
}

.bg-black {
    background-color: #4f3c25 !important;
}

.bg-gray {
    background-color: #f4f4f4 !important;
}

.btn {
    padding: 11px 40px;
    font-size: 14px;
    border-radius: 4px;
}
@media (max-width: 991px) {
    .btn {
        font-size: 12px;
        padding: 8px 25px;
    }
}

.btn-primary {
    color: #fff;
    background: #CEB47A;
    border: 0;
}
.btn-primary:hover, .btn-primary:focus {
    color: #fff;
    background-color: #007267;
    box-shadow: none;
}

.btn-outline-primary {
    color: #CEB47A;
    border: 1px solid #CEB47A !important;
    border: 0;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
    color: #fff;
    background-color: #007d71;
    box-shadow: none;
}

.btn-gray {
    color: #232323;
    background: #F3F3F3;
    border: 0;
}
.btn-gray:hover, .btn-gray:focus {
    color: #fff;
    background-color: #CEB47A;
    box-shadow: none;
}

.btn-white {
    color: #00295C;
    background-color: #FFF;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus {
    outline: 0px auto -webkit-focus-ring-color !important;
    outline-offset: 0px;
}

.bootstrap-select .dropdown-toggle .filter-option {
    font-weight: 500;
}

.bootstrap-select > .dropdown-toggle {
    background-color: #fff;
    border: 1px solid #D6DAE8;
    padding: 12px 16px;
    font-size: 14px;
    color: #0A0E1C !important;
    height: 46px;
    border-radius: 4px;
    text-align: left;
    box-shadow: none;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder {
    color: #0A0E1C !important;
}

.bootstrap-select.select-small > .dropdown-toggle {
    padding: 10px 16px;
    height: 44px;
}

.bootstrap-select.rounded-10 > .dropdown-toggle {
    border-radius: 10px;
}

.bootstrap-select.text-gray > .dropdown-toggle.bs-placeholder {
    color: #C2C8DD !important;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    background-color: #fff !important;
    border-color: #CEB47A !important;
    box-shadow: none;
}

.bootstrap-select .dropdown-menu li.selected.active a:hover {
    color: #fff;
}

.bootstrap-select .dropdown-toggle::after {
    content: unset;
}
.bootstrap-select .dropdown-toggle::before {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 6 pro";
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #212529;
    font-size: 14px;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    text-align: left;
    padding: 0.4rem 1.5rem;
    transition: all 0.2s ease-in-out;
    margin-bottom: 2px;
}

.dropdown-item.active, .dropdown-item:active {
    color: #35498E !important;
    background-color: #EAECF3;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    background-color: #fff !important;
    border-color: #CEB47A !important;
    box-shadow: 0px 2px 10.45px 0.55px rgba(66, 66, 66, 0.0784313725);
}

.dropdown-menu {
    border: 0;
    border-radius: 4px;
    box-shadow: 0px 3px 32px rgba(0, 0, 0, 0.1215686275);
    border: 0px solid rgba(221, 221, 221, 0.5019607843);
    text-align: right;
    min-width: 208px;
    -webkit-animation: animation-dropdown-menu-fade-in 0.4s ease 1, animation-dropdown-menu-move-up 0.4s ease-out 1;
    animation: animation-dropdown-menu-fade-in 0.4s ease 1, animation-dropdown-menu-move-up 0.4s ease-out 1;
}
.dropdown-menu.dropdown-lg {
    min-width: 350px;
    max-width: 100%;
}

@-webkit-keyframes animation-dropdown-menu-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes animation-dropdown-menu-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.bootstrap-select.bg-transparent .dropdown-toggle {
    box-shadow: none;
}

.bootstrap-select > .dropdown-toggle.btn-primary {
    background-color: #6d4bd7 !important;
    border: 1px solid #6d4bd7 !important;
    color: #ffffff !important;
}
.bootstrap-select > .dropdown-toggle.btn-primary:before {
    color: #FFF;
}

@media (max-width: 992px) {
    .main-header {
        position: relative;
        background: #fff;
    }
    .main-header .header-top {
        padding: 10px 0;
    }
    .main-header .menu-nav {
        margin-bottom: 10px;
    }
    .main-header .logo img {
        max-height: 30px;
    }
    .main-header .btn-outline-primary {
        padding: 10px;
        width: 100%;
    }
    .header-mobile__toolbar {
        color: #000;
    }
    .main-header .menu-container .main-menu .menu_item .menu_link.req {
        padding: 8px 20px !important;
    }
    .active-body {
        overflow: hidden;
    }
    .mobile-menu-overlay {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 100;
        visibility: hidden;
        background-color: rgba(51, 51, 51, 0.51);
    }
    .mobile-menu-overlay-active {
        visibility: visible;
    }
    .menu--mobile {
        min-width: 100px;
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 9999;
        background: #fff;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease-in-out;
    }
    .menu--mobile > .container {
        padding-left: 0;
        padding-right: 0;
        max-width: calc(100% - 0px);
    }
    .menu--mobile .list-main-menu {
        width: 100%;
    }
    .menu--mobile .main-menu .menu_item {
        flex: auto;
    }
    .menu--mobile .main-menu .menu_item .menu_link {
        color: #707070 !important;
        font-weight: 600;
        padding: 10px 30px;
        width: 100%;
        display: flex;
        align-items: center;
        font-size: 14px;
        position: relative;
    }
    .menu--mobile .main-menu .menu_item .menu_link.active {
        color: #07E1C6;
    }
    .menu--mobile .main-menu .menu_item .btn-white {
        border-radius: 0;
        width: 100%;
        padding: 10px 15px !important;
        color: #FFF;
        text-align: start;
        background-color: #CEB47A;
    }
    .btn-close-header-mobile {
        color: #000;
        cursor: pointer;
    }
    .menu-mobile-active {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}
.pagination {
    margin-top: 40px;
}
.pagination .page-item {
    margin: 0px;
}
.pagination .page-item .page-link {
    color: #CEB47A;
    border-radius: 4px;
    background-color: #FFF;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 19px;
    height: 42px;
    border: 0;
    width: 43px;
}
.pagination .page-item .page-link:hover {
    color: #fff;
    background-color: #CEB47A !important;
    box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.16);
}
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #CEB47A !important;
    box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.16);
}

.m-checkbox {
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000000;
}
@media (max-width: 991px) {
    .m-checkbox {
        font-size: 12px;
        margin-bottom: 7px;
    }
}

/* Hide the browser's default checkbox */
.m-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.m-checkbox .checkmark {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 2px solid #666666;
    background-color: #FFF;
    left: 0px;
    top: 50%;
    display: block;
    transform: translateY(-50%);
}
@media (max-width: 991px) {
    .m-checkbox .checkmark {
        width: 16px;
        height: 16px;
    }
}

/* Create the checkmark/indicator (hidden when not checked) */
.m-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.m-checkbox input:checked ~ .checkmark {
    border-color: #CEB47A;
}

.m-checkbox input:checked ~ .checkmark:after {
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-checkbox .checkmark:after {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    color: #CEB47A;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    font-weight: bold;
    content: "\f00c";
    font-family: "Font Awesome 6 pro";
    font-size: 12px;
}
@media (max-width: 991px) {
    .m-checkbox .checkmark:after {
        width: 8px;
        height: 8px;
    }
}

.m-radio {
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000000;
}
@media (max-width: 991px) {
    .m-radio {
        font-size: 12px;
        margin-bottom: 7px;
    }
}

.m-radio .checkmark {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #fff;
    left: 0px;
    top: 50%;
    display: block;
    transition: opacity 0.3s ease-in-out;
    transform: translateY(-50%);
    border: 2px solid #CEB47A;
}
@media (max-width: 991px) {
    .m-radio .checkmark {
        width: 16px;
        height: 16px;
        border-width: 1px;
    }
}

.m-radio .checkmark:after {
    content: "";
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Hide the browser's default radio */
.m-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Show the checkmark when checked */
.m-radio input:checked ~ .checkmark {
    border-color: #CEB47A;
}

.m-radio input:checked ~ .checkmark:after {
    opacity: 1;
}

.m-radio .checkmark:after {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    font-size: 12px;
    content: "";
    width: 8px;
    height: 8px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #CEB47A;
}

html[dir=rtl] .m-checkbox {
    padding-right: 25px;
}
html[dir=rtl] .m-checkbox .checkmark {
    right: 0px;
}
html[dir=rtl] .m-radio {
    padding-right: 25px;
}
html[dir=rtl] .m-radio .checkmark {
    right: 0px;
}

html[dir=ltr] .m-checkbox {
    padding-left: 25px;
}
html[dir=ltr] .m-checkbox .checkmark {
    left: 0px;
}
html[dir=ltr] .m-radio {
    padding-left: 25px;
}
html[dir=ltr] .m-radio .checkmark {
    left: 0px;
}

.breadcrumb {
    padding: 7px 10px;
    background: #f2f2f2;
    overflow: hidden;
    margin: 0px;
    border-radius: 4px;
}
.breadcrumb .breadcrumb-item {
    color: #000;
    font-size: 12px;
}
.breadcrumb .breadcrumb-item a {
    color: #000;
    transition: color 0.2s ease-in-out;
}
.breadcrumb .breadcrumb-item:hover, .breadcrumb .breadcrumb-item.active {
    color: #000;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-right: 12px;
    padding-left: 0px;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    content: "\f053";
    font-family: "Font Awesome 6 Pro";
    color: #000;
    font-size: 12px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 12px;
    margin-top: 1px;
    float: right;
}

.header-top {
    background-color: #4f3c25;
    padding: 20px 0;
}
.header-top .header-search {
    background-color: #FFF;
    border-radius: 4px;
    padding: 5px;
}
.header-top .header-search .btn-submit {
    flex: 0 0 auto;
    color: rgba(0, 0, 0, 0.54);
    border-radius: 50%;
    padding: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}
.header-top .header-search .form-control {
    height: 34px;
}
.header-top .header-search .line-vertical {
    width: 1px;
    height: 20px;
    margin: auto;
    background: #CEB47A;
    margin-inline-end: 15px;
}
.header-top .header-search .dropdown-category .dropdown-btn {
    color: #CEB47A;
    margin: auto;
    font-size: 10px;
    background: #f4f4f4;
    border-radius: 30px;
    font-size: 12px;
    padding: 5px 25px;
}
.header-top .header-search .dropdown-category .dropdown-menu {
    min-width: 100%;
}
.header-top .header-search .dropdown-category .dropdown-menu li {
    cursor: pointer;
    padding: 12px;
    border-radius: 0;
    transition: background-color 0.2s ease-in-out;
}
.header-top .header-search .dropdown-category .dropdown-menu li:hover {
    background-color: #CEB47A;
    color: #FFF;
}
@media (max-width: 991px) {
    .header-top .header-search {
        position: absolute;
        width: 100%;
        padding: 10px;
        z-index: 2;
        top: -60px;
        right: 0;
        transition: all 0.2s ease-in-out;
    }
    .header-top .header-search.active {
        top: 0;
    }
}
.header-top .dropdown-btn {
    background-color: transparent;
    padding: 8px 10px;
    border-radius: 4px;
}
.header-top .dropdown-prayer-timings .dropdown-menu {
    transform: translateX(-50%) !important;
    left: 50% !important;
    margin-top: 40px !important;
}
.header-top .dropdown-user .dropdown-btn {
    border: 1px solid #DFE0E1;
    font-size: 14px;
    background-color: #FFF;
}
.header-top .dropdown-user .dropdown-menu {
    width: 100%;
    min-width: 100%;
}
.header-top .dropdown-user .dropdown-menu li a {
    padding: 3px 5px;
    color: #000;
    display: block;
}
.header-top .dropdown-user .dropdown-menu li a:hover {
    color: #CEB47A;
}
@media (max-width: 991px) {
    .header-top .dropdown-user img {
        max-height: 15px;
    }
    .header-top .dropdown-user h6 {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .main-header .header-bottom {
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .main-header .menu--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-header .menu-container {
        position: relative;
    }
    .main-header .menu-container .main-menu .menu_item {
        display: inline-block;
        position: relative;
    }
    .main-header .menu-container .main-menu .menu_item .menu_link {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        position: relative;
        color: #4f3c25;
        margin: 0px 11px;
        padding: 8px 18px;
        border-radius: 3px;
        font-size: 14px;
        font-weight: bold;
        transition: all 0.2s ease-in-out;
    }
    .main-header .menu-container .main-menu .menu_item .menu_link:hover, .main-header .menu-container .main-menu .menu_item .menu_link.active {
        background-color: #ceb47a26;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
    .main-header .menu-container .main-menu .menu_item .menu_link {
        font-size: 12px;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1170px;
    }
}
.section {
    padding: 50px 0px;
}

.swiper-news {
    padding: 8px 0;
    background-color: #4f3c25;
}


.swiper-last-news {
    width: 100%;
    height: 25px;
}


@media(max-width:991px){
    .swiper-last-news{
        height: 30px;
    }
    .swiper-news p{
        font-size: 10px !important;
    }
    .swiper-news p a{
        display: block;
        height: 100%;
    }
}

.section-home {
    position: relative;
    z-index: 1;
    background: url(../images/bg-home.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
}
@media (min-width: 992px) {
    .section-home {
        padding: 70px 0;
    }
    .section-home .home-title {
        font-size: 30px;
    }
    .section-home .home-text {
        font-size: 18px;
    }
}

.widget-category {
    font-size: 10px;
    padding: 3px 12px;
    border-radius: 30px;
    background-color: #CEB47A;
}

.widget-date {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.6196078431);
}

.nav.tab-category .nav-link {
    background-color: #FFF;
    color: #000;
    padding: 12px 16px;
    margin-bottom: 2px;
}
.nav.tab-category .nav-link.active, .nav.tab-category .nav-link:hover {
    color: #CEB47A;
    background-color: #f8f8f8;
}

.btn-tolbar button {
    background-color: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}
.btn-tolbar button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.btn-tolbar.btn-tolbar-primary button {
    color: #CEB47A;
}
.btn-tolbar.btn-tolbar-primary button:hover {
    background-color: rgba(0, 136, 123, 0.08);
}

.swiper-action {
    position: absolute;
    top: 35px;
    inset-inline-end: 20px;
    z-index: 1;
}
.swiper-action .swiper-next, .swiper-action .swiper-prev {
    background-color: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}
.swiper-action .swiper-next:hover, .swiper-action .swiper-prev:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.swiper-action .swiper-next.swiper-button-disabled, .swiper-action .swiper-prev.swiper-button-disabled {
    opacity: 0.4;
}

.dropdown-sahre li a {
    color: #000;
    display: block;
    padding: 10px 14px;
    border-radius: 3px;
}
.dropdown-sahre li a i {
    min-width: 22px;
}
.dropdown-sahre li a:hover {
    color: #CEB47A;
    background-color: #f8f8f8;
}

.tab-fatwa {
    background: #4f3c25;
}
.tab-fatwa .nav-item {
    flex: 1 1 0;
    background: #ededee;
}
.tab-fatwa .nav-item .nav-link {
    color: #000;
    display: block;
    width: 100%;
    padding: 13px 6px;
    border-radius: 0;
    border-bottom: 1px solid #CEB47A;
    height: 100%;
}
@media (max-width: 991px) {
    .tab-fatwa .nav-item .nav-link {
        font-size: 10px;
        padding: 8px 2px;
    }
}
.tab-fatwa .nav-item .nav-link.active {
    background-color: #fff;
    color: #CEB47A;
    border-color: #CEB47A;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
}
.tab-fatwa .nav-item .nav-link.disabled {
    color: #fff;
    background: #CEB47A;
}

.widget_item-fat {
    padding: 13px 10px;
    transition: background-color 0.2s ease-in-out;
}
.widget_item-fat:not(:last-of-type) {
    border-bottom: 2px dotted rgba(99, 99, 99, 0.52);
}
.widget_item-fat .widget_item-title a {
    color: #000;
}
.widget_item-fat:hover {
    background-color: #f8f8f8;
}

.widget_item-book .widget_item-image {
    width: 110px;
    margin-inline-end: 14px;
}
.widget_item-book .widget_item-image img {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    height: 160px;
}

.border-top-dotted {
    border-top: 2px dotted rgba(99, 99, 99, 0.52);
}

.border-bottom-dotted {
    border-bottom: 2px dotted rgba(99, 99, 99, 0.52);
}

.item-book:not(:last-of-type) {
    border-bottom: 2px dotted rgba(99, 99, 99, 0.52);
}

.form-control.form-select {
    background-position: 2% 52%;
}

#accordionCategory {
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
}

.widget_item-category .widget_item-head {
    padding: 14px 15px;
    border-bottom: 2px dotted rgba(99, 99, 99, 0.52);
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}
.widget_item-category .widget_item-head .fa-folder {
    color: rgba(0, 0, 0, 0.54);
}
.widget_item-category .widget_item-head h6 {
    color: rgba(0, 0, 0, 0.87);
}
.widget_item-category .widget_item-head:hover {
    background-color: #f8f8f8;
}
.widget_item-category .widget_item-head:not(.collapsed) .fa-chevron-down::before {
    content: "\f077";
}
.widget_item-category .widget_item-body {
    padding: 7px 30px 7px 20px;
}
.widget_item-category .widget_item-body ul li a {
    padding: 10px 15px;
    border-radius: 3px;
    color: rgba(0, 0, 0, 0.87);
    display: block;
    transition: background-color 0.2s ease-in-out;
}
.widget_item-category .widget_item-body ul li a:hover {
    background-color: #f8f8f8;
}

.categories-list li a {
    padding: 14px;
    font-size: 16px;
    display: block;
    color: rgba(0, 0, 0, 0.87);
    transition: background-color 0.2s ease-in-out;
}
.categories-list li a:hover {
    background-color: #f8f8f8;
}
.categories-list li:not(:last-of-type) a {
    border-bottom: 2px dotted rgba(99, 99, 99, 0.52);
}

.original-text {
    background: #e5f3f1;
    border-right: 3px solid #CEB47A;
    border-right: 3px solid #CEB47A;
    display: block;
    margin-top: 5px;
    padding: 4px 10px;
}

.container-font-size {
    border-radius: 3px;
    padding: 3px 2px;
    border: 1px solid;
}
.container-font-size button {
    background-color: transparent;
    padding: 3px 6px;
    margin: 0px 5px;
}
.container-font-size button:hover {
    background-color: #f8f8f8;
}

.main-footer {
    background-color: #4f3c25;
    padding: 45px 0 60px;
}
.main-footer hr.hr {
    opacity: 1;
    color: #3D3D3D;
}
.main-footer .link-footer a {
    color: #868c8e;
    font-weight: bold;
    display: inline-block;
    padding: 5px 0px;
    position: relative;
    transition: color 200ms;
    font-size: 16px;
}
.main-footer .link-footer a:hover {
    color: #CEB47A !important;
}
.main-footer .social-media li a {
    color: #868c8e;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media li a {
    border-radius: 3px;
    width: 30px;
    height: 30px;
    margin: 0px 2px;
    color: #CEB47A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}
.social-media li a i {
    transition: color 0.3s ease-in-out;
}

.social-media li:not(:last-of-type) {
    margin-right: 10px;
}

.social-media li a:hover {
    color: #fff;
    background-color: #CEB47A;
}

html[dir=rtl] .social-media li:not(:last-of-type) {
    margin-left: 10px;
    margin-right: 0;
}

.qr-code {
    background-color: #FFF;
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.qr-code img {
    max-height: 90px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

html[dir="rtl"] body{
    direction: rtl;
    text-align: right;
    font-family: "Noto Kufi Arabic", sans-serif;
}
html[dir="ltr"] body{
    font-family: 'Poppins', sans-serif;
}
html[dir="ltr"] .fa-chevron-left:before {
    content: "\f054";
}
html[dir="ltr"] .ms-2 {
    margin-right: 0.5rem!important;
    margin-left: 0 !important;
}
html[dir="ltr"] .fa-chevron-right:before {
    content: "\f053";
}

html[dir="ltr"] .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 12px;
    padding-right: 0px;
}
html[dir="ltr"] .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    content: "\f054";
}
html[dir="ltr"] .ms-4 {
    margin-right: 1.5rem!important;
    margin-left: 0 !important;
}
html[dir="ltr"] .ms-1 {
    margin-right: 0.25rem!important;
    margin-left: 0 !important;
}
html[dir="ltr"] .ms-3 {
    margin-right: 1rem!important;
    margin-left: 0 !important;
}
html[dir="ltr"] .me-2 {
    margin-left: 0.5rem!important;
    margin-right: 0 !important;
}

html[dir="ltr"] .pe-3 {
    padding-left: 1rem!important;
    padding-right: 0 !important;
}
@media (min-width: 992px){
    html[dir="ltr"] .pe-lg-4 {
        padding-left: 1.5rem!important;
        padding-right: 0rem!important;
    }
}

html[dir="ltr"] .ms-auto {
    margin-right: auto!important;
    margin-left: 0 !important;
}
html[dir="ltr"] .audioplayer {
    direction: rtl;
}
/*# sourceMappingURL=main.css.map */

.action-size .mb-3{
    font-family: "Noto Kufi Arabic", sans-serif !important;

}


.tab-bg{
    background-color: #ceb47a !important;
}
