﻿/* ===========================================================================
Imports (must come first)
============================================================================*/
/* ----- Reset (must come first) ----- */
@import url("reset.css");

/* ----- Components ----- */
@import url("components.css");

/* ----- Header / Footer ----- */
@import url("header.css");
@import url("footer.css");

/* ----- Andromeda ----- */
@import url("andromeda.css");

/* ----- Icons ----- */
/*@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.10.5/font/bootstrap-icons.min.css");*/
/*@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");*/
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined");

/* ----- Font ----- */
@import url("fonts.css");

/* ===========================================================================
Layout
============================================================================*/
/* ------ body ------- */
body{
	background: url("image/bg/bg-body.png") center center repeat #f6f6f6;
}
html[lang="ar"] body{
    text-align: right;
}

/*to set footer absolute to fix position issue in case of no content in page */
/*
body {
	position: relative;
	min-height: 100vh;
}
*/

input, textarea, select {
	border-radius: 6px !important;
}
/* ----- container ----- */

@media(min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
}

@media(min-width: 1250px) {
    .container {
        max-width: 1200px;
    }
}

@media(min-width: 1350px) {
    .container {
        max-width: 1210px;
    }
}

@media(min-width: 1400px) {
    .container {
        max-width: 1250px;
    }
}

@media(min-width: 1900px) {
    .container {
        max-width: 1440px;
    }
}


/* ===========================================================================
Homepage
============================================================================*/
/* ========== Slider ========== */
#CharityCarousel .carousel-item .carousel-caption {
	max-width: 430px;
	text-align: center !important;
	background-color: white;
	color: black;
	left: 50% !important;
	right: auto  !important;
	top: 50%  !important;
	bottom: auto  !important;
	transform: translate(-50%,-50%);
	padding: 20px  !important;
	border-radius: 20px;
}
#CharityCarousel .carousel-item .carousel-caption h1,
#CharityCarousel .carousel-item .carousel-caption h2,
#CharityCarousel .carousel-item .carousel-caption h3,
#CharityCarousel .carousel-item .carousel-caption h4,
#CharityCarousel .carousel-item .carousel-caption h5,
#CharityCarousel .carousel-item .carousel-caption h6{
	color: var(--colorBase1);
	text-align: center;
}
#CharityCarousel .carousel-item .carousel-caption p{
	color: gray;
	text-align: center;
}
#CharityCarousel .carousel-item .carousel-caption .btn{
	min-width: 200px;
	margin: 0 auto;
}

@media(min-width: 1200px){
	html[lang="en"] #CharityCarousel .carousel-item .carousel-caption{
		margin-left: -250px;
	}
	html[lang="ar"] #CharityCarousel .carousel-item .carousel-caption{
		margin-left: 250px;
	}
}

/* ========== Donation bar ========== */
#fast-donation-bar{
	position: relative;
	margin-top: 20px;
}
#fast-donation-bar-station{
	display: block;
	/*position: absolute;
	left: 0;
	right: 0;*/
	height: 1px;
	background-color: transparent;
	opacity: 0;
	pointer-events: none;
	/*top: calc(-88px + -15px);*/
}

@media(min-width: 992px){
	.donation-bar{
		z-index: 50;
	}
}
.donation-bar .bar {
	background-color: #155b59;
	background: url(image/bg/dome-top.png) center top repeat-x,
	url(image/bg/dome-bottom.png) center bottom repeat-x #155b59;
	padding: 50px;
	border-top: 3px solid #064645;
	border-bottom: 3px solid #064645;
	border-radius: 10px;
}
.donation-bar .bar-inner {
	/*max-width: 1150px;*/
	margin: 0 auto;
}
@media(min-width: 992px){
	.donation-bar .input{
		max-width: 240px;
	}
}
@media(max-width: 991.98px){
	.donation-bar .bar {
		padding:50px 25px;
	}
	.donation-bar .col-12{
		margin-bottom: 7px;
	}
	.donation-bar button{
		/*min-width: 200px;*/
	}
}


/* ========== Header Categories ========== */
.each-header-category {
	background-color: white;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	box-shadow: 1px 1px 15px #e1e1e1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	margin-top: 15px;
	transition: all 0.3s ease;
	position: relative;
}
.header-cat-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.header-cat-title-desktop {
	background-color: var(--colorBase1);
	color: #ffa000;
	font-weight: bold;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 10px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	pointer-events: none;
	opacity: 0;
	transform: scale(1.2);
	transition: all 0.3s ease;
}
.each-header-category:hover .header-cat-title-desktop{
	opacity: 1;
	transform: scale(1);
}

.header-cat-title-mobile {
	color: var(--colorBase1);
	font-size: 13px;
	font-weight: bold;
	position: absolute;
	top: calc( 100% + 10px );
	text-align: center;
}


@media(min-width: 1200px){
	.header-cat-title-mobile{
		/*display: none;*/
		font-size: 16px;
	}
}

@media(max-width: 1199.98px){
	.header-categories {
		margin: 35px 0;
	}
	.header-cat-title-desktop{
		display: none;
	}
	.header-cat-title-mobile {
        font-size: 14px;
		line-height: 14px;
		font-weight: normal;
    }
	.each-header-category {
		width: 100%;
		height: 60px;
	}
}

@media(max-width: 767.98px){
	.header-categories {
		margin: 25px 0;
	}
    .each-header-category {
        background-color: transparent !important;
        box-shadow: none !important;
    }
	.header-cat-title-mobile {
        font-size: 10px;
		line-height: 10px;
    }
}


/* ========== video feature ========== */
.video-feature .video-wrapper,
.video-feature .txt-wrapper{
	height: 520px;
}
@media(max-width: 1199.98px){
	.video-feature .video-wrapper,
	.video-feature .txt-wrapper{
		height: auto;
	}
}

.video-feature .video-wrapper{
	background-color: transparent;
	color: white;
	position: relative;
}
.video-feature .the-video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-feature .txt-wrapper{
	background-color: var(--colorBase1);
	color: white;
	padding: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.video-feature .txt {
	max-width: 670px;
	text-align: center;
}
.video-feature .txt p{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 10;
	-webkit-box-orient: vertical;
}


/* ========== Footer Categories ========== */
.each-footer-category {
	background-color: white;
	min-width: 165px;
	max-width: 190px;
	border-radius: 20px;
	box-shadow: 1px 1px 15px #e1e1e1;
	padding: 25px 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	margin-top: 15px;
	transition: all 0.3s ease;
}
.footer-cat-title {
	color: var(--colorHighlight1);
	font-weight: bold;
	margin: 10px 0;
}
.footer-cat-link-all {
	color: gray;
	text-decoration: underline;
	font-size: 14px;
}

/* desktop hover effect */
@media(min-width: 1200px){

	.slick-footer-categories .slick-track {
		height: 285px;
	}
	
	.each-footer-category{
		width: 190px;
		height: 190px;
		/*min-height: 190px;*/
		border-radius: 50%;
		transition: height 0.1s;
	}
	.footer-cat-title,
	.footer-cat-link-all{
		display: none;
	}

	.each-footer-category:hover{
		height: 260px;
		border-radius: 20px;
	}
	
	.each-footer-category:hover .footer-cat-title,
	.each-footer-category:hover .footer-cat-link-all{
		display: block;
	}
	
}




/* Brands Slider*/
/*
.row-homepage-brands .brand-image {
	box-shadow: 1px 1px 8px #e8e7e7;
	border-radius: 10px;
	height: 150px;
	width: 100%;
	margin: 15px auto;
	position: relative;
}
.row-homepage-brands .brand-image > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
*/

/* ===========================================================================
Product Listing Page
============================================================================*/
.listing-page-banner {
	width: 100%;
	height: 375px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}
@media(max-width: 767.98px){
	.listing-page-banner {
		height: 270px;
	}
}
.listing-page-banner .overlay {
	z-index: 15;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	pointer-events: none;
}
.listing-banner-img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	z-index: 10;
}

.listing-page-banner .content {
	z-index: 20;
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.listing-page-banner a {
	color: white !important;
}

@media(max-width: 767.98px){
	.listing-page-banner .bcrumb {
		font-size: 13px;
	}
}

/* ===========================================================================
Product Details Page
============================================================================*/
.product-details-page .whitebox {
	background-color: white;
	padding: 50px;
	border-radius: 15px;
}
@media(max-width: 767.98px){
	.product-details-page .whitebox {
		padding: 15px;
		border-radius: 10px;
	}
}

/* ---------- slider ---------- */
.pr-details-slider{
	margin-bottom: 20px;
}
.pr-details-slider .main-image{
	width: 100%;
	/*height: 650px;*/
    height: auto;
	border-radius: 15px;
}
/*
@media(max-width: 767.98px){
	.pr-details-slider .main-image{
		height: 300px;
	}
}
*/

.slick-common-styles.pr-details-slider .each-item {
	/*height: 650px;*/
	position: relative;
}
.slick-common-styles.pr-details-slider .main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.slick-common-styles.pr-details-slider .slick-next,
.slick-common-styles.pr-details-slider .slick-prev{
	z-index: 10;
	border-radius: 0;
	box-shadow: none;
}
html[lang="en"] .slick-common-styles.pr-details-slider .slick-next {
	transform: translate(0px,-50%);
}
html[lang="en"] .slick-common-styles.pr-details-slider .slick-prev {
	transform: translate(0px, -50%);
}

/* ---------- stats ---------- */
.row-detailspage-stats {
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
	padding-top: 5px;
	padding-bottom: 5px;
	/*color: #919191;*/
	color: #333333;
	font-weight: 600;
}
@media(max-width: 767.98px){
    .row-detailspage-stats {
        font-size: 14px;
    }
}

html[lang="en"] .row-detailspage-stats .col-social {
	margin-left: auto;
}
html[lang="ar"] .row-detailspage-stats .col-social {
	margin-right: auto;
}
.row-detailspage-stats .social-icons li {
	margin: 0 4px;
}
html[lang="ar"] .row-detailspage-stats .social-icons li {
	float: right;
}
.row-detailspage-stats .social-icons li a {
	background: #333;
	color: white;
	height: 25px;
	width: 25px;
	line-height: 25px;
	font-size: 14px;
}

/* ---------- progressbar ---------- */
.row-progressbar-detailspage {
	max-width: 600px;
}
.row-progressbar-detailspage .progressbar {
	margin: 0;
}
.row-progressbar-detailspage .percentCount {
	display: none;
}
.row-progressbar-detailspage .percent-txt {
	font-size: 16px;
	line-height: 15px;
    font-weight: bold;
    color: var(--colorBase1);
}
/* ---------- progressbar lg ---------- */
/* old circular progressbar
.progressbar-holder.progressbar-holder-lg {
	background-color: #165e5d;
	padding: 25px;
	pointer-events: none;
	border-radius: 50%;
	width: 190px;
	height: 190px;
	margin: 10px auto;
}

.progressbar-holder.progressbar-holder-lg .progress-bar {
	color: white;
	font-weight: bold;
	background-color: transparent;
}
.progressbar-holder.progressbar-holder-lg .progress-bar,
.progressbar-holder.progressbar-holder-lg .progress-bar div {
	width: 140px;
	height: 140px;
}
.progressbar-holder.progressbar-holder-lg .progress-bar .rotate,
.progressbar-holder.progressbar-holder-lg .left,
.progressbar-holder.progressbar-holder-lg .right {
	clip: rect(0 70px 140px 0);
}
.progressbar-holder.progressbar-holder-lg .progress-bar div span {
	width: 120px;
	height: 120px;
	left: 10px;
	top: 10px;
	font-size: 30px;
	line-height: 45px;
	background-color: #165e5d;
	display: flex;
	align-items: center;
	justify-content: center;
}
*/

/* ---------- money stats ---------- */
.product-details-page .whitebox .project-money {
	padding: 10px 0px;
	line-height: 1;
	border-radius: 10px;
	text-align: center;
	border: 1px solid transparent;
	margin: 30px 0;
	max-width: 580px;
}
@media(max-width: 767.98px){
	.product-details-page .whitebox .project-money {
		padding: 10px 0px;
		line-height: 1;
		border-radius: 10px;
		text-align: center;
		border: 0;
		margin: 15px 0;
	}
}
.product-details-page .whitebox .project-money .pm-stat-single {
	padding-left: 8px;
	padding-right: 8px;
}

@media(min-width: 768px){
	html[lang="en"] .product-details-page .whitebox .project-money .pm-stat-single:not(:last-of-type) {
		border-right: 1px solid #7c7c7c;
	}
	html[lang="ar"] .product-details-page .whitebox .project-money .pm-stat-single:not(:last-of-type) {
		border-left: 1px solid #7c7c7c;
	}
}
.product-details-page .whitebox .project-money p {
	text-align: center;
	color: #686868;
	margin: 0;
	font-size: 12px;
	white-space: nowrap;
}
.product-details-page .whitebox .project-money p:first-of-type {
	color: #959595;
	font-size: 20px;
	font-weight: bold;
}
.product-details-page .whitebox .project-money p:first-of-type + p {
	font-size: 12px;
	line-height: 1.7;
}


/* forms */
.product-details-page #DonationAmount {
	border-radius: 0 !important;
    max-height: 46px;
    text-align: center;
}
.product-details-page .btn-pre-amount {
	background-color: transparent;
	border: 1px solid #ced4da;
	color: #777777;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 10px 0;
}
@media(max-width: 767.98px){
	.product-details-page .btn-pre-amount {
		padding: 0.3rem 0.7rem;
		font-size: 1.15rem;
	}
}
.row-final-actions-detailspage input {
	border: 1px solid white;
	background-color: white;
	color: #cfcfcf;
	font-weight: bold;
	box-shadow: 1px 1px 15px #dbdbdb !important;
	width: 100%;
	text-align: center;
}

/* ===========================================================================
Login / Registration
============================================================================*/
/* ---------- Registration ---------- */
.page-lightbox-register .input-style-icon-placeholder {
	margin-top: 20px;
}

/* ===========================================================================
My Account Pages
============================================================================*/
/* ---------- sidebar ---------- */
.block-account-navigation {
	background-color: #fbfbfb;
	padding: 0 15px 15px 15px;
}
.block-account-navigation > .h5 {
	padding: 15px;
	border-bottom: 1px solid rgb(236, 236, 236);
}

.block-account-navigation > ul > li > a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	font-size: 17px;
	color: #5d5d5d;
}
.block-account-navigation > ul > li > a:hover {
	background-color: #efefef;
}

html[lang="en"] .block-account-navigation > ul > li > a.active {
	border-right: 5px solid var(--colorHighlight1);
    background-color: #efefef;
}
html[lang="ar"] .block-account-navigation > ul > li > a.active {
	border-left: 5px solid var(--colorHighlight1);
    background-color: #efefef;
}

.block-account-navigation > ul > li > a > svg,
.block-account-navigation > ul > li > a > i,
.block-account-navigation > ul > li > a > .icon {
    margin-left: 15px;
    margin-right: 15px;
}
.block-account-navigation > ul > li > a.active > svg,
.block-account-navigation > ul > li > a.active > i{
    color: var(--colorHighlight1);
}

/* --------- orders table -------- */
.icon-payment-method img{
	max-height: 40px;
	max-width: 80px;
	margin: 0 auto;
}

/* --------- Certificates -------- */
.page-account-certificates .cert-wrapper {
	background-color: rgba(0,0,0,0.2);
	background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
	padding: 20px;
	display: inline-flex;
	border-radius: 10px;
}
.page-account-certificates .cert-img {
	height: 200px;
	width: 100%;
	object-fit: contain;
}

/* ===========================================================================
Cart
============================================================================*/
/* cart table */
.shopping-cart.table{
	border-bottom: 0 !important;
}
@media(min-width: 992px){
	.shopping-cart.table{
		border-radius: 20px;
		overflow: hidden;
	}
}
.shopping-cart.table thead th {
	background-color: #165e5d;
	color: white;
	font-size: 18px;
	font-weight: bold !important;
	border-bottom: 2px solid #165e5d !important;
}

.shopping-cart.table td {
	text-align: center;
	vertical-align: middle;
	background-color: white;
	color: #165e5d !important;
}
.shopping-cart.table .product-name {
	color: #165e5d;
}
.shopping-cart.table .prod-total {
	color: #165e5d;
	font-weight: bold;
}

.shopping-cart.table tfoot td {
	font-size: 25px;
	font-weight: bold;
	background-color: #e5e5e5;
	color: #a1711d !important;
}

/* bottom section (login tabs + payments) */
.shopping-cart-page .card-green > .card-header {
	background-color: #165e5d;
	color: white;
	border-radius: 20px 20px 0 0;
	padding: 15px 30px 25px 30px;
}
.shopping-cart-page .nav-tabs .nav-link {
	border: 2px solid white;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	border-radius: 15px;
	color: white;
	margin: 5px;
}
.shopping-cart-page .nav-tabs .nav-link.active{
	color: black;
}
.shopping-cart-page .card-body {
	background-color: white;
}
.shopping-cart-page .payment_methods {
	background-color: white;
	padding: 20px;
}


/* ===========================================================================
Lightbox Pages ( DiplomaRegister, Login, Signup )
============================================================================*/
/*common*/
.page-lightbox-viewport-wrapper {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.page-lightbox-bg-img {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 50;
}
.page-lightbox-content {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100;
	color: white;
}

/*forms*/
.form-box {
	background-color: white;
	color: #b4b4b4;
	font-size: 16px;
	padding: 40px;
	border-radius: 50px;
}
@media(max-width: 767.98px){
	.form-box {
		padding: 30px 10px;
	}
}
.page-lightbox-register-diploma .form-control-lg{
	font-size: 1rem;
	padding-top: 12px;
	padding-bottom: 12px;
}

.page-lightbox-register-diploma .input-style-icon-placeholder-file-upload > input {
	padding-top: 17px;
	padding-bottom: 17px;
	border-radius: 30px;
}

/* Registration */
@media(min-width: 1200px){
	.page-lightbox-register .page-lightbox-content {
		top: 50%;
		transform: translateY(-50%);
	}
}
.divider-heading {
	border-top: 2px solid #b4b4b4;
	text-align: center;
}
.divider-heading .h {
	background-color: white;
	color: #b4b4b4;
	display: inline-flex;
	padding: 3px 10px;
	transform: translateY(-65%);
}

.social-circle-item {
	background-color: white;
	box-shadow: 1px 1px 18px #c8c8c8;
	font-size: 30px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-circle-item-facebook {
	background-color: #2680eb;
	color: white;
}

/* login */
/* Registration */
@media(min-width: 1200px){
	.page-lightbox-login .page-lightbox-content {
		top: 50%;
		transform: translateY(-50%);
	}
}


/* ===========================================================================
News Listing
============================================================================*/
.news-tabs-wrapper .nav-wrapper .nav-pills .nav-link.active{
	background-color: var(--colorHighlight1);
}

@media(min-width: 1200px){
	.news-tabs-wrapper .nav-wrapper {
		width: 300px;
	}
	.news-tabs-wrapper .nav-wrapper .card-header {
		border-radius: 15px !important;
		padding: 25px 20px;
	}
}

@media(max-width: 1199.98px){
	.news-tabs-wrapper .nav-wrapper {
		flex: 0 0 100%;
	}
	.news-tabs-wrapper .nav-wrapper .card-header {
		background-color: white;
		padding: 15px;
		border-radius: 15px !important;
	}
	.news-tabs-wrapper .nav-wrapper > ul {
		display: flex;
		flex-direction: row !important;
	}
	.news-tabs-wrapper .nav-wrapper > ul > li > a{
		background-color: #ececec;
		border-radius: 30px;
		margin: 5px;
		font-size: 13px;
	}
}

/* news box */
.news-tabs-wrapper a{
	color: var(--colorHighlight1);
}
.news-tabs-wrapper .blog-entry {
	background-color: white;
	border-radius: 15px;
	overflow: hidden;
}
.news-tabs-wrapper .entry-title a {
	display: block;
	margin: 15px 20px 5px;
	font-size: 22px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical
}
.news-tabs-wrapper .entry-meta a {
	display: block;
	margin: 0 20px 10px;
	font-size: 13px;
	color: gray;
}
.news-tabs-wrapper .entry-content {
	margin: 0 20px 10px;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical
}

/* ===========================================================================
News Details
============================================================================*/
.blog-single .blog-entry {
	background-color: white;
	padding: 40px;
	border-radius: 20px;
}
@media(max-width: 767.98px){
	.blog-single .blog-entry{
		padding: 20px;
	}
}

.blog-single .entry-image .the-image{
	width: 100%;
	border-radius: 20px;
}

.blog-single .entry-meta {
	display: block;
	margin: 0 20px 10px;
	font-size: 13px;
	color: gray;
}
.blog-single .blog-title {
	display: block;
	font-size: 36px;
	font-weight: bold;
	color: black;
}


/* recent post */
.recent-post {
    margin: 15px 0;
}
.recent-post-image img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
}
.recent-post-title {
    overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    font-size: 16px;
}
.recent-post-date {
    font-size: 14px;
}

/* ===========================================================================
Finance Report / Regulations and policy
============================================================================*/
.page-finance-reports .regulations-policy-box {
	background: white;
	padding: 35px;
	border-radius: 15px;
	box-shadow: 0 10px 10px rgba(0,0,0,0.1);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.page-finance-reports .regulations-policy-link {
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 5px;
	font-weight: bold;
	color: gray;
	font-size: 18px;
}
.page-finance-reports .regulations-policy-link:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
	color: black;
}


@media(max-width: 767.98px) {
    .page-finance-reports .regulations-policy-box {
        padding: 25px 20px;
        border-radius: 10px;
        max-width: 100%;
    }
    .page-finance-reports .regulations-policy-link {
        font-weight: normal;
        font-size: 16px;
    }
}



/* ===========================================================================
Album Page
============================================================================*/
.albums-wrapper .album-title {
	background-color: white;
	padding: 10px 20px;
	display: inline-block;
	margin: 0;
	border-radius: 15px 15px 0 0;
	box-shadow: 1px 1px 10px #cecece;
	font-size: 20px;
	font-weight: bold;
	color: var(--colorBase1);
}
@media(max-width: 767.98px){
	.albums-wrapper .album-title{
		font-size: 16px;
		padding: 7px 10px;
	}
}

.album-pics-wrapper {
	background-color: white;
	padding: 30px;
	box-shadow: 10px 10px 10px #cecece;
	border-radius: 0 15px 15px 15px;
	display: inline-flex;
}
@media(max-width: 767.98px){
	.album-pics-wrapper {
		padding: 15px;
	}
}
html[lang="ar"] .album-pics-wrapper {
	border-radius: 15px 0 15px 15px;
}
.album-pics-wrapper .form-row {
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow: hidden;
	width: auto;
	max-width: 100%;
}
.albums-wrapper .light-gallery-trigger{
	position: relative;
	display: flex;
}
.albums-wrapper .light-gallery-trigger:after{
	content: "";
	position: absolute;
	left: 0; right: 0;
	top: 0; bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 10;
	pointer-events: none;
	display: none;
}
.albums-wrapper .light-gallery-trigger:hover:after{
	display: flex;
}
.albums-wrapper .img-album-thumb {
	width: 200px;
	height: 120px;
	object-fit: cover;
	cursor: zoom-in;
}
@media(max-width: 767.98px){
	.albums-wrapper .img-album-thumb {
		width: 120px;
		height: 80px;
	}
}


/* lightgallery rtl fix*/
.lg-outer, .lg-outer * {
	direction: ltr;
}


/* ===========================================================================
Order Details Page
============================================================================*/
.order-details-page .whitebox {
    background-color: white;
    border-radius: 12px;
    padding: 25px 0;
}

.page.order-details-page.final-invoice .invoice-header {
	height: auto;
	min-height: 85px;
	align-items: center;
}
.page.order-details-page.final-invoice .invoice-header .invoice-logo {
	height: 65px;
}
.page.order-details-page.final-invoice .invoice-header .generalTitle {
	color: #155E5D;
	font-size: 33px;
}
.page.order-details-page.final-invoice .info-box {
	height: auto;
	min-height: 60px;
	border-radius: 12px;
	border: 1px solid #E5E5E5;
	display: flex;
	align-items: center;
	padding: 15px;
	margin-bottom: 15px;
}
@media(max-width: 767.98px){
	.page.order-details-page.final-invoice .info-box {
		padding: 10px;
		font-size: 14px;
	}
}

/*order total defferent design for desktops*/
@media(min-width: 1200px){
	.page.order-details-page.final-invoice .info-box.info-box-order-total{
		min-height: 135px;
	}
	.info-box.info-box-order-total > ul > li {
		width: 100%;
		text-align: center;
	}
	.info-box.info-box-order-total > ul > li:last-child {
		color: #878787;
		font-weight: bold;
		font-size: 40px;
	}
}

.page.order-details-page.final-invoice .info-box ul li {
	padding: 0 5px;
}
.page.order-details-page.final-invoice .info-box ul li:first-child {
	color: #155e5d;
	font-weight: bold;
}
.page.order-details-page.final-invoice .table-condensed td {
    border-top: 0;
}

/* */
.order-details-page .payresult-colored-header {
	background-color: #155e5d;
	color: white;
	text-align: center;
	padding: 15px 0;
	margin-bottom: 15px;
}
.order-details-page .payresult-colored-header h5 {
	margin-bottom: 0;
}
@media(max-width: 767.98px){
	.order-details-page .payresult-colored-header {
		padding: 10px 0;
	}
	.order-details-page .payresult-colored-header h5 {
		font-size: 16px;
	}
}
.order-details-page .table-invoice td{
	vertical-align: middle;
}


.re-order-button {
	background-color: #ffcb01;
	color: black;
	border: 1px solid #d7ab02;
    transition: all 0.3s ease;
}
.re-order-button:hover {
	background-color: #165e5d;
	color: white;
	border: 1px solid #165e5d;
}


/* ===========================================================================
Donation Failed Page
============================================================================*/
.whitebox.page-failed-donation {
	background-color: white;
	padding-bottom: 20px;
}
.page-failed-donation .donation-failed-header {
	background-color: red;
	color: white;
	border-radius: 10px 10px 0 0;
	font-size: 20px;
	padding: 10px 20px;
}

.page-failed-donation .row-info {
	padding: 15px 20px;
	font-weight: bold;
	border-bottom: 1px solid #eaeaea;
}
.page-failed-donation .row-info ul li:first-child {
	color: var(--colorBase1);
}
.page-failed-donation .row-info ul li:last-child {
	color: #878787;
}

/* ===========================================================================
Minor Pages
============================================================================*/
/* ---------- Delegate Request Page ---------- */
.delegaterequest-page {
	background-color: white;
	padding: 30px 40px;
	border-radius: 20px;
}
@media(max-width: 767.98px){
	.delegaterequest-page {
		padding: 20px;
		border-radius: 15px;
	}
}

/* ---------- Deduction Request Page ---------- */
.deductionrequest-page {
	background-color: white;
	padding: 30px 40px;
	border-radius: 20px;
}
@media(max-width: 767.98px){
	.deductionrequest-page {
		padding: 20px;
		border-radius: 15px;
	}
}

/* ---------- Project Request Page ---------- */
.projectrequest-page {
	background-color: white;
	padding: 30px 40px;
	border-radius: 20px;
}
@media(max-width: 767.98px){
	.projectrequest-page {
		padding: 20px;
		border-radius: 15px;
	}
}

#sig-canvas{
	width: 100%;
	height: 200px;
	border: 2px dotted #CCCCCC;
	border-radius: 15px;
	cursor: crosshair;
}

/* ---------- Subscription to Mosques Page ---------- */
.subscriptionstomosques-page {
	background-color: white;
	padding: 30px 40px;
	border-radius: 20px;
}
@media(max-width: 767.98px){
	.subscriptionstomosques-page {
		padding: 20px;
		border-radius: 15px;
	}
}

/* ---------- Vendor Details Page ---------- */
.page-vendor-details .vendor-pic > img {
	max-width: 350px;
	height: 200px;
	object-fit: contain;
	border-radius: 10px;
}

/* ---------- Terms and Conditions Page ---------- */
.terms-whitebox {
	box-shadow: 1px 1px 50px #e6e6e6;
	border-radius: 20px;
	padding: 30px 50px;
	width: 100%;
	max-width: 900px;
	margin: 50px auto;
}
@media(max-width: 767.98px){
	.terms-whitebox {
		padding: 20px 15px;
		margin: 30px auto;
	}
}
.terms-txt {
	width: 100%;
	max-height: 600px;
	overflow-y: auto;
	margin: 15px 0;
	font-size: 14px;
}
.page-terms .row-action-buttons .btn{
	min-width: 150px;
}
@media(max-width: 767.98px){
	.page-terms .row-action-buttons .btn{
		min-width: 100px;
	}
}
#whatsapp {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	position: fixed;
	bottom: 15px;
	left: 10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	transition: opacity .3s ease-out;
	-webkit-transition: opacity .3s ease-out;
	opacity: 0.9;
	z-index: 997;
	background-color: transparent;
	color: #fff;
}
@media (max-width: 991px) {
	#whatsapp {
		bottom: 75px;
	}
}
#b-toaster-top-right.b-toaster.b-toaster-top-right {
	right: 40% !important;
	top: 40% !important;
}
.product-details-page .product-label {
	z-index: 50 !important;
}